
:root{
  --navy-900:#06202D;
  --navy-800:#051238;
  --navy-700:#002A67;
  --green-700:#066234;
  --green-600:#077D3F;
  --green-500:#0A9A4E;
  --green-100:#E7F4EC;
  --surface:#FFFFFF;
  --surface-alt:#F4F6F5;
  --surface-sand:#FBF9F3;
  --line:#E4E9E8;
  --ink:#06202D;
  --ink-70:#33474F;
  --ink-50:#6A787E;
  --ink-45:#5C686D; /* DIGA-7095: ink-50 is 4.2:1 on --surface-alt, fails WCAG AA 4.5:1 at small/bold sizes */
  --epc-aplus:#009A44;
  --epc-a:#3FA535;
  --epc-b:#8CC63F;
  --epc-c:#D7DF23;
  --epc-d:#FFF200;
  --epc-e:#FBB040;
  --epc-f:#ED1C24;
  --shadow-sm:0 1px 2px rgba(6,32,45,.06),0 2px 8px rgba(6,32,45,.06);
  --shadow-md:0 8px 24px rgba(6,32,45,.12);
  --shadow-lg:0 18px 48px rgba(6,32,45,.16);
  --r-sm:8px;
  --r-md:14px;
  --r-lg:22px;
  --r-pill:999px;
  --container:1200px;
  --gutter:clamp(20px,4vw,40px);
  --spectrum-h:5px;
  --header-h:72px;
}
*{box-sizing:border-box}
html{
  scroll-behavior:auto;
  scrollbar-gutter:stable;
  /* DIGA-5295 CI fix: scrollbar-gutter:stable alone let the header CTA's x
     shift per-route in CI's Chromium (15.34px on 15 NL routes, 13.41px on 3
     EN routes, 8.97px on /vacatures/ vs their own reference route) because
     whether the gutter reservation actually kicks in depended on each page's
     real content height crossing a scroll threshold -- not reproducible with
     every Chromium build. overflow-y:scroll forces a permanent, version-proof
     scrollbar so the reserved width never depends on per-page content height. */
  overflow-y:scroll;
}
html.smooth-scroll{
  scroll-behavior:smooth;
}
body{
  margin:0;
  font-family:'Open Sans',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(10,154,78,.10), transparent 26%),
    radial-gradient(circle at top right, rgba(0,42,103,.10), transparent 22%),
    var(--surface);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,picture{display:block;max-width:100%}
a{color:var(--green-600);text-decoration:none}
a:hover{text-decoration:none}
button,input,select,textarea{font:inherit}
h1,h2,h3,h4,.font-display{font-family:'General Sans','Inter','Open Sans',sans-serif;line-height:1.1;letter-spacing:-.02em;color:var(--navy-800)}
.container{max-width:var(--container);margin:0 auto;padding-inline:var(--gutter)}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--green-600);
}
.eyebrow::before{content:'◆';font-size:.75rem}
.eyebrow.light{color:#7FE3B0}
.lead{font-size:1.18rem;color:var(--ink-70)}

.skip-link{
  position:absolute;
  left:-999px;
  top:0;
  z-index:1000;
  background:#fff;
  color:var(--navy-800);
  padding:.75rem 1rem;
  border-radius:var(--r-pill);
  box-shadow:var(--shadow-md);
}
.skip-link:focus{left:16px;top:16px}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(6,32,45,.9);
  backdrop-filter:blur(14px) saturate(1.1);
  border-bottom:1px solid rgba(255,255,255,.09);
  box-shadow:0 8px 28px rgba(6,32,45,.24);
}
.nav{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:nowrap;
}
.brand{
  display:flex;
  align-items:center;
  gap:.7rem;
  color:#fff;
  font-family:'Red Hat Display',sans-serif;
  font-weight:800;
  font-size:1.12rem;
  white-space:nowrap;
}
.brand img{
  width:auto;
  height:32px;
  max-width:190px;
  object-fit:contain;
  border-radius:0;
  background:none;
  box-shadow:none;
  padding:0;
}
body.drawer-open .mobile-drawer .brand{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:1.15rem;
  list-style:none;
  margin:0;
  padding:0;
  flex-wrap:nowrap;
  white-space:nowrap;
}
.nav-links > li > a,
.nav-links > li > button{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  border:0;
  background:transparent;
  color:rgba(226,236,240,.82);
  font-weight:700;
  font-size:.95rem;
  cursor:pointer;
  padding:.45rem 0 .58rem;
  transition:color .18s ease, opacity .18s ease, text-decoration-color .18s ease, text-underline-offset .18s ease;
}
.nav-links > li > a:hover{
  color:#fff;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:.34rem;
  text-decoration-color:rgba(255,255,255,.82);
}
.nav-links > li > button:hover{
  color:#fff;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:.34rem;
  text-decoration-color:rgba(255,255,255,.82);
}
.nav-links > li > a:focus-visible,
.nav-links > li > button:focus-visible{
  color:#fff;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:.34rem;
  text-decoration-color:rgba(255,255,255,.82);
  outline:none;
  border-radius:999px;
  box-shadow:0 0 0 2px rgba(255 255 255 / .18);
}
.nav-links > li > a[aria-current="page"]{
  color:#fff;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:.34rem;
  text-decoration-color:rgba(255,255,255,.82);
}
.nav-actions{
  display:flex;
  align-items:center;
  gap:.85rem;
}
.nav-phone{
  font-weight:800;
  color:var(--navy-800);
  white-space:nowrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  border:2px solid transparent;
  /* DIGA-6980 punt 3: DIGA-6967 punt 1 split the pill to .btn-primary only, leaving
     .btn-secondary at var(--r-sm) -- a round primary next to a square secondary in the
     same group (e.g. homepage hero). Mathieu: shape must be shared across levels;
     hierarchy comes from fill/border/color, not radius. Restored to the pre-round shared
     radius on the base .btn so every level (primary/secondary) matches again. */
  border-radius:var(--r-pill);
  padding:.88rem 1.45rem;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  transition:transform .15s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover{transform:translateY(-2px)}
/* Dual ring: on every surface at least one of the two rings has real contrast, and the
   signal is a shape (a ring that wasn't there) rather than a color swap. See DIGA-5753 §4.5. */
.btn:focus-visible,
.btn-link:focus-visible{
  outline:3px solid #fff;
  outline-offset:0;
  box-shadow:0 0 0 6px var(--navy-800);
}
.btn-link:focus-visible{border-radius:4px}
.btn-primary{
  background:var(--green-600);
  color:#fff;
  box-shadow:0 8px 20px rgba(7,125,63,.28);
}
.btn-primary:hover{background:var(--green-700);box-shadow:0 12px 24px rgba(7,125,63,.34)}
.btn-ghost{
  border-radius:var(--r-pill);
  color:#fff;
  border-color:rgba(255,255,255,.36);
  background:transparent;
}
.btn-ghost:hover{background:rgba(255,255,255,.08);border-color:#fff}
.btn-ghost-dark{
  border-radius:var(--r-pill);
  color:var(--navy-800);
  border-color:var(--line);
  background:#fff;
}
.btn-ghost-dark:hover{border-color:var(--green-600);color:var(--green-700)}
/* Niveau 2 -- secundair (DIGA-5753 §4.3). Vervangt btn-ghost/btn-ghost-dark op alle
   nieuw gebouwde plekken; geen lift op hover (dat signaal is voor niveau 1 alleen). */
.btn-secondary{
  background:transparent;
  color:var(--ink);
  border-color:var(--ink-50);
  font-weight:600;
}
.btn-secondary:hover{background:var(--green-100);border-color:var(--green-600);color:var(--green-700)}
.btn.btn-secondary:hover{transform:none}
/* Niveau 3 -- tertiair (DIGA-5753 §4.4). Bewust geen .btn: geen rand, geen radius,
   geen width:100% op mobiel, geen lift -- de knop kan hem structureel niet meer besmetten. */
.btn-link{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.35rem 0;
  width:auto;
  color:var(--green-700);
  font-weight:600;
  font-size:1rem;
  background:none;
  border:0;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:5px;
  text-decoration-color:rgba(6,98,52,.45);
  transition:text-decoration-color .18s ease, color .18s ease;
}
.btn-link::after{
  content:'\2192';
  display:inline-block;
  transition:transform .18s var(--ease-soft);
}
.btn-link:hover{text-decoration-color:currentColor}
.btn-link:hover::after{transform:translateX(3px)}
.btn-lg{padding:1rem 1.75rem;font-size:1.05rem}
.btn-compact{padding:.72rem 1.1rem;font-size:.92rem;white-space:nowrap}
/* Donkere ondergrond (.hero, .page-hero) -- niveau 2/3 op wit-op-transparant. */
.hero .btn-secondary,.page-hero .btn-secondary{
  color:#fff;
  border-color:rgba(255,255,255,.48);
}
.hero .btn-secondary:hover,.page-hero .btn-secondary:hover{
  background:rgba(255,255,255,.10);
  border-color:#fff;
  color:#fff;
}
.hero .btn-link,.page-hero .btn-link{
  color:#fff;
  text-decoration-color:rgba(255,255,255,.55);
}
/* Groene ondergrond (.band-cta, .nova-banner) -- wit-op-transparant haalt AA niet (3.66:1);
   de donkere scrim tilt dat naar 4.8:1. Geen btn-link hier (R4.2, DIGA-5753 §4.4/§7). */
.band-cta .btn-secondary,.nova-banner .btn-secondary{
  color:#fff;
  border-color:rgba(255,255,255,.70);
  background:rgba(6,32,45,.20);
}
.band-cta .btn-secondary:hover,.nova-banner .btn-secondary:hover{
  background:rgba(6,32,45,.30);
  border-color:#fff;
}

/* DIGA-5294/DIGA-5332: shrink nav gap/font/CTA at intermediate widths so the
   header CTA never clips out of view before the drawer kicks in at ≤900px.
   Placed AFTER the base .nav-links>li>a/button, .nav-actions and
   .btn-compact rules on purpose: those have the same selector specificity,
   so the original DIGA-5294 media query (placed BEFORE them, right after
   the base .nav-links rule) lost the cascade on font-size and .nav-actions
   gap -- only its .nav-links gap took effect. The CTA button itself stayed
   full-size and clipped 27px out of view between 901-929px (measured).
   Sourcing this block after .btn-compact, and adding a
   .nav-actions .btn-compact override (higher specificity, belt-and-braces),
   makes every declaration here actually win. */
@media(min-width:901px) and (max-width:1150px){
  .nav-links{gap:.5rem}
  .nav-links > li > a,.nav-links > li > button{font-size:.8rem}
  .nav-actions{gap:.5rem}
  .nav-actions .btn-compact{padding:.62rem .85rem;font-size:.8rem}
}

.nav-toggle{
  display:none;
  width:46px;height:46px;
  border-radius:var(--r-pill);
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);
  box-shadow:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav-toggle span{
  width:18px;height:2px;background:#fff;position:relative;border-radius:2px;
  transition:background-color .18s ease;
}
.nav-toggle span::before,.nav-toggle span::after{
  content:'';
  position:absolute;
  left:0;
  width:18px;height:2px;
  background:#fff;
  border-radius:2px;
  transition:transform .18s ease,top .18s ease;
}
.nav-toggle span::before{top:-6px}
.nav-toggle span::after{top:6px}

/* Hamburger -> close (X) morph: same button, same position, no second control. */
body.drawer-open .nav-toggle span{background:transparent}
body.drawer-open .nav-toggle span::before{top:0;transform:rotate(45deg)}
body.drawer-open .nav-toggle span::after{top:0;transform:rotate(-45deg)}

.mobile-drawer-backdrop{
  position:fixed;
  inset:var(--header-h) 0 0 0;
  background:rgba(6,32,45,.42);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:60;
}
.mobile-drawer{
  position:fixed;
  top:var(--header-h);
  left:0;
  right:0;
  width:100%;
  height:calc(100vh - var(--header-h));
  height:calc(100dvh - var(--header-h));
  max-height:calc(100vh - var(--header-h));
  background:#fff;
  box-shadow:0 24px 40px rgba(6,32,45,.16);
  border-top:1px solid rgba(6,32,45,.06);
  border-radius:0;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(-100%);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:61;
  display:flex;
  flex-direction:column;
  padding:0 18px calc(18px + env(safe-area-inset-bottom));
  overflow-y:auto;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
}
body.drawer-open{
  overflow:hidden;
  touch-action:none;
}
body.drawer-open .mobile-drawer-backdrop{opacity:1;pointer-events:auto}
body.drawer-open .mobile-drawer{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}
.drawer-links{
  display:grid;
  gap:0;
  list-style:none;
  padding:22px 16px 0;
  margin:0;
}
.drawer-links a{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:.95rem 0;
  border:0;
  border-bottom:1px solid rgba(6,32,45,.08);
  background:transparent;
  color:var(--navy-800);
  font-weight:800;
}
.drawer-links li:last-child a{
  border-bottom:0;
}
.drawer-links a:hover,
.drawer-links a:focus-visible{
  color:var(--navy-800);
  background:rgba(6,32,45,.04);
  border-radius:14px;
  padding-left:10px;
  padding-right:10px;
}
.drawer-links a[aria-current="page"]{
  color:var(--navy-800);
  background:rgba(6,32,45,.06);
  border-radius:14px;
  padding-left:10px;
  padding-right:10px;
}
.drawer-cta{
  margin-top:auto;
  display:grid;
  gap:.75rem;
  padding-top:16px;
}
/* DIGA-6980 punt 1: taalwissel terug naar de footer -- de eerdere beslissing (Mathieu),
   dezelfde lijn als de Vacatures-verhuizing naar de footer (DIGA-5298): de hoofdnav blijft
   slank. Eén implementatie, in .footer-legal, laatste kind (margin-left:auto duwt hem naar
   rechts op brede viewports); aanwezig op elke breakpoint, ook desktop, zonder aparte
   header/drawer-varianten. Vervangt .nav-lang (header) en .drawer-lang (mobiel-drawer). */
.footer-lang{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:auto;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.footer-lang-current{
  color:#fff;
}
.footer-lang-sep{
  color:#5B6E74;
}
.footer-legal a.footer-lang-option{
  color:#B7C6CC;
  font-weight:700;
  text-decoration:none;
}
.footer-legal a.footer-lang-option:hover,
.footer-legal a.footer-lang-option:focus-visible{
  color:#7FE3B0;
  text-decoration:underline;
  text-decoration-color:currentColor;
  text-underline-offset:3px;
}

.top-spectrum{
  position:sticky;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:51;
  height:var(--spectrum-h);
  background:linear-gradient(90deg,
    #DD1F26 0%,  #DD1F26 14%,
    #E77B24 14%, #E77B24 28%,
    #EDC31A 28%, #EDC31A 42%,
    #F3EA25 42%, #F3EA25 56%,
    #A1CC3A 56%, #A1CC3A 70%,
    #309F47 70%, #309F47 84%,
    #077D3F 84%, #077D3F 100%);
  box-shadow:0 1px 0 rgba(255,255,255,.2),0 6px 18px rgba(6,32,45,.12);
}

.page-service .section.alt .btn-ghost,
.page-service .section.alt .btn-secondary,
.page-service .panel .btn-ghost,
.page-service .panel .btn-secondary,
.page-service .copy-grid .btn-ghost,
.page-service .copy-grid .btn-secondary{
  color:var(--navy-800);
  border-color:var(--line);
  background:#fff;
}

.page-service .section.alt .btn-ghost:hover,
.page-service .section.alt .btn-secondary:hover,
.page-service .panel .btn-ghost:hover,
.page-service .panel .btn-secondary:hover,
.page-service .copy-grid .btn-ghost:hover,
.page-service .copy-grid .btn-secondary:hover{
  color:var(--green-700);
  border-color:var(--green-600);
  background:#fff;
}

/* DIGA-6967 punt 1: .btn-secondary meegenomen zodat de bestaande navy page-service-look
   (i.p.v. de generieke groene .btn-secondary-hover) behouden blijft na de knopstijl-migratie. */
.page-service .page-hero .btn-ghost,
.page-service .page-hero .btn-secondary,
.page-service .band-cta .btn-ghost,
.page-service .band-cta .btn-secondary{
  color:#fff;
  border-color:rgba(255,255,255,.72);
  background:rgba(255,255,255,.1);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.1);
}

.page-service .page-hero .btn-ghost:hover,
.page-service .page-hero .btn-secondary:hover,
.page-service .band-cta .btn-ghost:hover,
.page-service .band-cta .btn-secondary:hover{
  color:#fff;
  border-color:#fff;
  background:rgba(255,255,255,.18);
}

.page-service .section.alt .btn-primary,
.page-service .panel .btn-primary,
.page-service .copy-grid .btn-primary,
.page-service .service-hub-grid .btn-primary,
.page-service .request-form button[type="submit"],
.page-service .mobile-sticky-cta .btn-primary{
  background:var(--navy-800);
  color:#fff;
  box-shadow:0 10px 22px rgba(6,32,45,.22);
}

.page-service .section.alt .btn-primary:hover,
.page-service .panel .btn-primary:hover,
.page-service .copy-grid .btn-primary:hover,
.page-service .service-hub-grid .btn-primary:hover,
.page-service .request-form button[type="submit"]:hover,
.page-service .mobile-sticky-cta .btn-primary:hover{
  background:#0A1E2E;
  box-shadow:0 14px 26px rgba(6,32,45,.28);
}

.hero{
  position:relative;
  color:#fff;
  background-color:#002A67;
  background-image:url("/assets/bg.ff44b15a98.png");
  background-position:bottom center;
  background-repeat:no-repeat;
  background-size:contain;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
  gap:44px;
  align-items:start;
  padding-block:76px 88px;
  position:relative;
  z-index:1;
}
.hero-media{
  display:grid;
  gap:20px;
  align-self:start;
}
@media (min-width: 901px){
  .hero-media{
    /* DIGA-5040: unified with .page-hero .hero-art's 38px kicker-to-H1 offset (was 24px
       under DIGA-4803's "iets lager" nudge) so the homepage video top-aligns with the H1
       exactly like every other hero, one shared constant sitewide. */
    margin-top:38px;
  }
}
.hero h1{
  color:#fff;
  font-size:clamp(2.3rem,4.6vw,3.65rem);
  font-weight:700;
  margin:.75rem 0 1rem;
}
.hero h1 .accent{
  color:#7FE3B0;
  font-weight:600;
}
.hero .sub{
  font-size:1.18rem;
  color:#C6D3D9;
  max-width:36ch;
}
.hero-cta{display:flex;flex-wrap:wrap;gap:.85rem;margin:1.8rem 0 2.1rem}
.hero-price-row{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin:0 0 1.5rem;
}
.price-badge{
  display:grid;
  gap:.18rem;
  min-width:clamp(150px, 18vw, 210px);
  padding:.88rem 1rem;
  border-radius:var(--r-pill);
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  color:#fff;
}
.price-badge strong{
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#F4FAFC;
}
.price-badge small{
  font-size:.98rem;
  font-weight:800;
  line-height:1.15;
  color:#fff;
}
.usp-row{display:flex;flex-wrap:wrap;gap:.65rem}
.usp{
  display:inline-flex;align-items:center;gap:.55rem;
  padding:.56rem .9rem;
  border-radius:var(--r-pill);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#E6EEF1;
  font-weight:700;
  font-size:.86rem;
}
.usp .dot{
  width:16px;height:16px;border-radius:50%;
  display:grid;place-items:center;
  color:#fff;background:var(--green-500);
  flex:none;
  font-size:.62rem;
}
.hero-end{height:1px}

.lc-head{
  display:flex;justify-content:space-between;align-items:center;
  gap:12px;margin-bottom:14px
}
.lc-title{font-size:1.02rem;font-weight:800;color:var(--navy-800)}
.lc-tag{
  font-size:.72rem;font-weight:800;color:var(--green-700);
  background:var(--green-100);
  padding:.28rem .62rem;border-radius:var(--r-pill)
}
.scale{display:grid;gap:6px}
.scale-row{
  position:relative;
  height:31px;
  border-radius:7px;
  font-family:'Inter',sans-serif;
  font-weight:800;
  font-size:.86rem;
  padding-left:14px;
  display:flex;align-items:center;
  color:#06202D;
}
.scale-row .kwh{
  position:absolute;right:12px;font-family:'Open Sans',sans-serif;font-size:.72rem;font-weight:600;opacity:.72
}
.scale-row.active{outline:3px solid var(--navy-800);outline-offset:2px}
.scale-row.active::before{content:'▶';position:absolute;left:-22px;color:var(--navy-800);font-size:.78rem}
.r-aplus{background:var(--epc-aplus);color:#fff;width:56%}
.r-a{background:var(--epc-a);color:#fff;width:64%}
.r-b{background:var(--epc-b);width:72%}
.r-c{background:var(--epc-c);width:80%}
.r-d{background:var(--epc-d);width:88%}
.r-e{background:var(--epc-e);width:94%}
.r-f{background:var(--epc-f);color:#fff;width:100%}
.lc-foot{
  display:flex;align-items:center;gap:.7rem;
  margin-top:18px;padding-top:16px;border-top:1px solid var(--line);
  color:var(--ink-70);font-size:.84rem
}
.lc-foot img{
  width:36px;height:36px;border-radius:50%;object-fit:cover;
  border:2px solid var(--green-100)
}

.trust-strip{background:var(--surface-alt);border-bottom:1px solid var(--line)}
.trust-inner{
  display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:2.3rem;
  padding:18px 0;
  font-weight:700;
  color:var(--ink-70);
}
.stars{color:#F5A623;letter-spacing:1px}
.section{padding:82px 0}
.section:not(.hero):not(.page-hero){
  opacity:1;
  transform:none;
}
.section.alt{background:var(--surface-alt)}
.section.sand{background:var(--surface-sand)}
.section.dark{
  background:var(--navy-900);
  color:#fff;
}
.section-head{
  max-width:680px;
  margin:0 auto 44px;
  text-align:center;
}
.section-head h2{font-size:clamp(1.8rem,3vw,2.5rem);margin:.8rem 0 .6rem}
.section-head p{color:var(--ink-70);font-size:1.08rem}
.section.dark .section-head h2,
.section.dark .section-head p{color:#fff}
.section.dark .section-head p{color:#C6D3D9}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.cards-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.service-hub-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.service-hub-grid .card{min-height:100%}
.service-hub-grid .card-body{display:grid;gap:.7rem}
.service-hub-grid .meta{display:flex;flex-wrap:wrap;gap:.45rem}
.service-hub-grid .meta .chip{background:rgba(7,125,63,.08);border-color:rgba(7,125,63,.16);color:var(--green-700)}
@media (min-width:901px){.service-hub-grid > .span-center{grid-column:2}}
@media (min-width:901px){
  /* fewer than 3 cards would otherwise hug the grid's left edge under a centered section-head */
  .service-hub-grid:has(> :nth-child(2):last-child){
    grid-template-columns:repeat(2,minmax(0,360px));
    justify-content:center;
  }
}
.overview-summary{
  display:grid;
  gap:1rem;
  max-width:760px;
}
.overview-summary .button-row{
  display:flex;
  flex-wrap:wrap;
  gap:.85rem;
}
.overview-columns{
  display:grid;
  gap:18px;
}
.overview-card{
  padding:1.1rem 1.3rem 1.3rem;
  border-radius:22px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-sm);
}
/* DIGA-5754: the intro card was removed; the service notes now carry this
   section on their own and stretch across the available width. */
.overview-stack{
  display:grid;
  gap:14px;
  align-items:start;
}
@media(min-width:901px){
  .overview-stack{
    grid-template-columns:1fr 1fr;
    gap:14px 32px;
  }
}
.overview-card .eyebrow{margin-bottom:.6rem}
.overview-card h3{margin-bottom:.45rem}
.overview-card p{margin-bottom:0;color:var(--ink-50)}
.service-pill-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.service-pill{
  display:grid;
  gap:.45rem;
  padding:1rem;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.86);
}
.service-pill strong{color:var(--navy-800)}
.service-pill small{color:var(--ink-50);line-height:1.45}
.service-note{
  position:relative;
  padding:0 0 0 1.3rem;
}
.service-note::before{
  content:'';
  position:absolute;
  left:0;
  top:.4rem;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green-600);
}
.service-note p{margin:0;color:var(--ink-50)}
.service-note strong{color:var(--navy-800)}
/* DIGA-5040: hero media top-aligns with the H1, not the kicker. align-items:flex-start
   pins .hero-art to the top of the grid row (= top of .hero-copy = kicker top); margin-top
   then pushes it down by the measured kicker-to-H1 gap. Two constants because .overview-summary
   is itself display:grid;gap:1rem, which widens that gap vs the plain .hero-copy flow gap.
   Desktop/tablet only (min-width:901px, matches the .hero-media breakpoint) — mobile stacks
   hero-copy above hero-art and must stay untouched. */
.page-hero .hero-split{
  align-items:flex-start;
}
.page-hero .hero-art{
  min-height:340px;
}
.page-hero .hero-art .media-picture{
  height:100%;
}
@media (min-width: 901px){
  .page-hero .hero-art{
    margin-top:38px;
  }
  .page-hero .hero-copy.overview-summary ~ .hero-art{
    margin-top:48px;
  }
  /* DIGA-5296: pages whose hero kicker was pruned (dubbelop with the H1) no longer have
     the eyebrow's height to offset — hero-art now top-aligns directly with the H1
     (measured gap without the kicker, same method as the DIGA-5040 constant above). */
  .page-hero.no-eyebrow .hero-art{
    margin-top:11px;
  }
  /* Needs its own override: .overview-summary ~ .hero-art above is 4 classes (higher
     specificity than the no-eyebrow rule's 3), so it would otherwise keep winning at 48px
     even after the kicker is gone. Measured: once the kicker row is gone, this variant's
     H1 lands at the same offset as the plain no-eyebrow case. */
  .page-hero.no-eyebrow .hero-copy.overview-summary ~ .hero-art{
    margin-top:11px;
  }
}
.route-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.route-card{
  padding:1.15rem;
  border-radius:22px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-sm);
  /* DIGA-5294: flex-column so all cards stretch to equal height (grid handles
     that), and margin-top:auto on .link pins the CTA to the bottom regardless
     of title length or paragraph count. */
  display:flex;
  flex-direction:column;
  gap:.75rem;
}
.route-card h3{margin:0}
.route-card p{margin:0;color:var(--ink-50)}
.route-card .link{justify-self:start;margin-top:auto}
.route-card .badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-sm);
}
.card.lift{transition:transform .18s ease,box-shadow .18s ease}
.card.lift:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.thumb{aspect-ratio:16/10;overflow:hidden;background:var(--surface-alt)}
.thumb .media-picture{
  display:block;
  width:100%;
  height:100%;
}
.thumb img{width:100%;height:100%;object-fit:cover}
.card-body{padding:22px}
.card h2,.card h3{font-size:1.22rem;margin:0 0 .45rem}
.card p{color:var(--ink-70);margin:0}
.card .link{
  display:inline-flex;align-items:center;gap:.35rem;
  margin-top:1rem;font-weight:800;color:var(--green-700)
}

.process-step{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-md);
  padding:24px 20px;
}
.process-step .num{
  width:46px;height:46px;border-radius:12px;
  display:grid;place-items:center;
  font-family:'Inter',sans-serif;
  font-weight:800;font-size:1.2rem;
  color:#06202D;
  margin-bottom:14px;
}
.process-step h3{color:#fff;font-size:1.05rem;margin:0 0 .45rem}
.process-step p{color:#B7C6CC;margin:0;font-size:.92rem}
.s1 .num{background:var(--epc-e)}
.s2 .num{background:var(--epc-d)}
.s3 .num{background:var(--epc-b)}
.s4 .num{background:var(--epc-aplus);color:#fff}

.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:960px;margin:0 auto}
.price-card{
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:30px 24px;
  text-align:center;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.price-card.featured{
  border:2px solid var(--green-600);
  box-shadow:var(--shadow-md);
  position:relative;
}
.price-card.featured::before{
  content:'Meest gekozen';
  position:absolute;
  top:-13px;left:50%;
  transform:translateX(-50%);
  background:var(--green-600);
  color:#fff;
  font-size:.72rem;
  font-weight:800;
  padding:.32rem .88rem;
  border-radius:var(--r-pill);
}
html[lang="en"] .price-card.featured::before{content:'Most chosen'}
html[lang="pl"] .price-card.featured::before{content:'Najczęściej wybierane'}
.price-card .type{font-size:.96rem;color:var(--ink-70);font-weight:800;margin-bottom:.4rem}
.price-card .amount{font-family:'Inter',sans-serif;font-size:2.45rem;font-weight:800;color:var(--navy-800)}
.price-card .amount small{font-size:.88rem;color:var(--ink-50);font-weight:700}
.price-card .note{color:var(--ink-50);font-size:.83rem;margin-top:.55rem}
.price-card .price-types{
  list-style:none;
  margin:.85rem 0 0;
  padding:.85rem 0 0;
  border-top:1px solid var(--line);
  display:grid;
  gap:.3rem;
}
.price-card .price-types li{font-size:.94rem;font-weight:700;color:var(--navy-800)}
.price-foot{text-align:center;color:var(--ink-70);margin-top:26px}
.price-grid-wide{
  max-width:1120px;
  grid-template-columns:repeat(3,1fr);
}
/* DIGA-6079 QC (Iris, D1/D2): sections with 2 or 4 cards left dead space / left-hung
   orphans in the fixed 3-column .price-grid-wide. Re-flow those to a centered 2-column
   grid on desktop only — guarded by min-width so it can never fight the max-width:900
   mobile 1-column collapse rule below (that's the inline grid-column bug class from
   [[epc-lochristi-price-hydration-and-mobile-grid-gotchas]]). */
@media (min-width:901px){
  .price-grid-2{grid-template-columns:repeat(2,1fr);max-width:660px}
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.service-grid .card{
  position:relative;
  cursor:pointer;
}
.service-grid .card .card-body{
  padding-bottom:58px;
}
.service-grid .card .link{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding:22px;
  margin-top:0;
}
.service-grid .card:focus-within{
  outline:3px solid rgba(7,125,63,.36);
  outline-offset:4px;
}
.service-grid .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.checklist-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.check-item{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-md);
  box-shadow:var(--shadow-sm);
  padding:22px 20px 20px;
}
.check-item.provided{
  border-color:rgba(7,125,63,.28);
  box-shadow:0 10px 24px rgba(7,125,63,.08);
}
.check-item .badge{
  display:inline-flex;
  align-items:center;
  border-radius:var(--r-pill);
  padding:.28rem .7rem;
  background:var(--surface-alt);
  color:var(--ink-45); /* DIGA-7095: was --ink-50, 4.2:1 on this background at 11.5px bold */
  font-size:.72rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.check-item.provided .badge{
  background:var(--green-100);
  color:var(--green-700);
}
.check-item h3{
  margin:.85rem 0 .45rem;
  font-size:1.12rem;
}
.check-item p{
  margin:0;
  color:var(--ink-70);
  font-size:.95rem;
}
.check-item p a{
  text-decoration:underline; /* DIGA-7095: 1.86:1 vs surrounding text, color alone wasn't enough */
  text-underline-offset:2px;
}
.source-panel{
  max-width:900px;
  margin:0 auto;
}
/* DIGA-5295: .source-panel's auto-centering above is for the single-column
   full-bleed usage (direct child of .container). As a direct grid item of
   .asbest-image-stack or .copy-grid, an auto margin disables grid stretch
   and shrinks the card to its own content width, so it stops matching the
   photo/sibling-column width next to it. Reset to full-width there. */
.asbest-image-stack .source-panel,
.copy-grid .source-panel{
  max-width:none;
  margin:0;
}

.reviews{background:var(--surface-sand)}
.review-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-md);
  box-shadow:var(--shadow-sm);
  padding:24px;
}
.review-card p{margin:.2rem 0 0;color:var(--ink)}
.review-card .who{font-weight:800;color:var(--navy-800);line-height:1.2}
.review-card .src{font-size:.78rem;color:var(--ink-50);display:inline-flex;align-items:center;gap:.35rem}
.review-card .src::before{
  content:'G';
  display:inline-grid;place-items:center;
  width:15px;height:15px;border-radius:50%;
  background:conic-gradient(from -45deg,#EA4335,#FBBC05,#34A853,#4285F4,#EA4335);
  color:#fff;font-family:'Inter',sans-serif;font-weight:800;font-size:.6rem;
}
.rev-head{display:flex;align-items:center;gap:.7rem;margin-bottom:.95rem}
.rev-avatar{
  flex:none;
  width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--green-100);
  color:var(--green-700);
  font-family:'Inter',sans-serif;
  font-weight:800;font-size:.95rem;
}
.rev-head .rev-stars{margin-left:auto;color:#F5A623;letter-spacing:1px;font-size:.9rem}

.about{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:54px;
  align-items:center;
}
.video-feature{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:34px;
  align-items:center;
}
.video-copy{
  display:grid;
  gap:14px;
}
.video-copy h2{
  font-size:clamp(1.8rem,3vw,2.35rem);
  margin:0;
}
.video-copy p{
  margin:0;
  color:var(--ink-70);
  font-size:1.06rem;
}
.video-panel{
  position:relative;
  border-radius:var(--r-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  background:
    linear-gradient(180deg, rgba(6,32,45,.08), rgba(6,32,45,.28)),
    var(--surface);
  border:1px solid var(--line);
  /* DIGA-5294: aspect-ratio alone preserves 16:9 at all widths; the former
     min-height:320px overrode it at narrow desktop columns and caused a
     distorted crop (wider box than the aspect-ratio allowed). */
  aspect-ratio:16/9;
}
.video-panel iframe,
.video-panel .video-poster{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.video-panel .video-poster{
  border:0;
  padding:24px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  position:relative;
  text-align:left;
  color:#fff;
  cursor:pointer;
  background:linear-gradient(135deg, #0b2531 0%, #002A67 100%);
}
.video-poster-image,
.video-poster-overlay{
  position:absolute;
  inset:0;
}
.video-poster-image{
  width:100%;
  height:100%;
  object-fit:cover;
}
.video-poster-overlay{
  background:linear-gradient(180deg, rgba(6,32,45,.12) 0%, rgba(6,32,45,.68) 100%);
}
.video-panel .video-poster::before{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:82px;
  height:82px;
  z-index:2;
  transform:translate(-50%, -50%);
  border-radius:50%;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.32);
  box-shadow:0 10px 24px rgba(6,32,45,.24);
}
.video-panel .video-poster::after{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  z-index:3;
  transform:translate(-38%, -50%);
  border-top:13px solid transparent;
  border-bottom:13px solid transparent;
  border-left:20px solid #fff;
}
.video-poster-badge{
  position:absolute;
  top:20px;
  left:20px;
  display:inline-flex;
  align-items:center;
  border-radius:var(--r-pill);
  padding:.35rem .8rem;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.08em;
  z-index:3;
  text-transform:uppercase;
}
.video-poster-copy{
  max-width:28ch;
  display:grid;
  gap:.45rem;
  position:relative;
  z-index:3;
}
.video-poster-copy strong{
  font-family:'Inter',sans-serif;
  font-size:1.35rem;
  line-height:1.12;
}
.video-panel .video-poster:hover{filter:saturate(1.04)}
.nova-showcase{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#fff 0%,#F6F8F7 100%);
}
.nova-showcase::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(740px 340px at 100% 0%, rgba(10,154,78,.12), transparent 58%),
    radial-gradient(420px 260px at 0% 100%, rgba(255,242,0,.08), transparent 56%);
  opacity:.14;
  pointer-events:none;
}
.nova-layout{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
  gap:34px;
  align-items:center;
}
.nova-copy{
  display:grid;
  gap:14px;
}
.nova-copy h2{
  font-size:clamp(1.8rem,3vw,2.35rem);
  margin:0;
}
.nova-copy p{
  margin:0;
  color:var(--ink-70);
  font-size:1.06rem;
}
.nova-mosaic{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  grid-template-rows:auto;
  gap:16px;
  align-items:stretch;
  min-height:0;
}
.nova-card{
  position:relative;
  overflow:hidden;
  margin:0;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  background:#fff;
  box-shadow:var(--shadow-lg);
}
.nova-card picture,
.nova-card img,
.nova-inline picture,
.nova-inline img{
  display:block;
  width:100%;
  height:100%;
}
.nova-card img{
  object-fit:cover;
}
.nova-inline img{
  object-fit:cover;
  object-position:center top;
}
.nova-card figcaption{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(6,32,45,.78);
  color:#fff;
  box-shadow:var(--shadow-sm);
  font-size:.88rem;
  line-height:1.45;
}
.nova-card figcaption strong{
  display:block;
  margin-bottom:.12rem;
  font-family:'Inter',sans-serif;
  font-size:1rem;
  line-height:1.15;
}
.nova-copy-card{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:22px;
  color:#fff;
  background:
    radial-gradient(circle at top right, rgba(127,227,176,.18), transparent 40%),
    linear-gradient(160deg,var(--navy-900),var(--navy-700));
}
.nova-copy-card .eyebrow.light{
  color:#9EE7B9;
}
.nova-copy-card h3{
  color:#fff;
  margin:.55rem 0 .45rem;
  font-size:1.45rem;
}
.nova-copy-card p{
  margin:0;
  color:#D8E6EB;
}
.nova-copy-card .chips{
  margin:1rem 0 0;
}
.nova-copy-card .chip{
  background:rgba(255,255,255,.12);
  color:#fff;
}
.nova-banner{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:linear-gradient(120deg, rgba(6,98,52,.96), rgba(10,154,78,.88));
}
.nova-banner::after{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(620px 240px at 85% 10%, rgba(255,255,255,.14), transparent 60%);
  pointer-events:none;
}
.nova-band-inner{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.nova-band-inner h2{
  color:#fff;
  font-size:clamp(1.8rem,3vw,2.4rem);
  margin:.45rem 0 .55rem;
}
.nova-band-inner p{
  margin:0;
  color:#E6F4EC;
  max-width:54ch;
}
.nova-inline{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.nova-inline .media-picture{
  aspect-ratio:16/10;
}
.nova-inline-copy{
  padding:18px 20px 20px;
}
.nova-inline-copy h2,.nova-inline-copy h3{
  margin:0 0 .35rem;
  font-size:1.08rem;
}
.nova-inline-copy p{
  margin:0;
  color:var(--ink-70);
  font-size:.95rem;
}
.about .photo-block{
  position:relative;
}
.about .photo-wrap{
  position:relative;
  min-height:420px;
  border-radius:var(--r-lg);
  overflow:hidden;
  background:url('assets/team/thomas-dhaemer-portret.7c6e846a40.jpg') center 15%/cover no-repeat;
  background-image:image-set(url('assets/team/thomas-dhaemer-portret.3098fac73b.avif') type('image/avif'), url('assets/team/thomas-dhaemer-portret.30ac5ef3d1.webp') type('image/webp'), url('assets/team/thomas-dhaemer-portret.7c6e846a40.jpg') type('image/jpeg'));
  box-shadow:var(--shadow-md);
}
body.page-home .about .photo-wrap{
  background:#fff url('assets/nova/team-duo-laptop.c5d266e593.jpg') center/contain no-repeat;
  background-image:image-set(url('assets/nova/team-duo-laptop-1672.efcc35bd7f.avif') type('image/avif'), url('assets/nova/team-duo-laptop-1672.79e8609d17.webp') type('image/webp'), url('assets/nova/team-duo-laptop.c5d266e593.jpg') type('image/jpeg'));
}
/* DIGA-6957: Thomas & Britt now share one overlay pattern — job-title + VEKA
   badges stacked bottom-right on the portrait, both wrapped in .photo-badges
   inside a position:relative photo container (.about .photo-block or
   .team-card-media). */
.photo-badges{
  position:absolute;
  right:12px;
  bottom:12px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:.5rem;
}
.photo-badges .cred{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-md);
  padding:.68rem 1rem;
  box-shadow:var(--shadow-md);
  font-size:.8rem;
  font-weight:800;
  color:var(--navy-800);
}
.team-section{
  padding-top:0;
}
.team-grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:28px;
  align-items:stretch;
}
.team-copy{
  display:grid;
  align-content:center;
  gap:14px;
}
.team-copy h2{
  font-size:clamp(1.8rem,3vw,2.35rem);
  margin:0;
}
.team-copy p{
  margin:0;
  color:var(--ink-70);
  font-size:1.06rem;
}
.team-card{
  overflow:hidden;
  border-radius:var(--r-lg);
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-md);
  display:grid;
}
.team-card-media{
  position:relative;
}
.team-card-photo{
  width:100%;
  height:auto;
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:center top;
  display:block;
  background:linear-gradient(135deg, #e8eef0, #dbe6e9);
}
.team-card-copy{
  padding:22px 22px 24px;
}
.team-card-copy h3{
  margin:0 0 .45rem;
  font-size:1.28rem;
}
.team-card-copy p{
  margin:0;
  color:var(--ink-70);
}
.chips{display:flex;flex-wrap:wrap;gap:.55rem;margin:1.2rem 0}
.chip{
  background:var(--green-100);
  color:var(--green-700);
  font-weight:800;
  font-size:.82rem;
  border-radius:var(--r-pill);
  padding:.42rem .85rem;
}

.band-cta{
  position:relative;
  overflow:hidden;
  background:linear-gradient(120deg,var(--green-700),var(--green-500));
  color:#fff;
  text-align:center;
}
.band-cta h2{color:#fff;font-size:clamp(1.8rem,3vw,2.4rem);margin:0 0 .7rem}
.band-cta p{color:#E4F5EB;font-size:1.08rem;margin:0 0 1.5rem}
.band-cta .btn-primary{background:#fff;color:var(--green-700)}
.band-cta .btn-primary:hover{background:#F4F4F4}

.nova-banner .btn-primary{
  background:#fff;
  color:var(--green-700);
  box-shadow:none;
}

.nova-banner .btn-primary:hover{
  background:#F4F4F4;
}

.site-footer{
  background:var(--navy-900);
  color:#B7C6CC;
  padding:56px 0 28px;
  border-top:3px solid var(--green-600);
}
.site-footer .brand img{height:30px;max-width:184px}
.footer-grid{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr;
  gap:38px;
  padding-bottom:30px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.site-footer h3{
  color:#fff;
  font-family:'Inter',sans-serif;
  margin:0 0 .9rem;
  font-size:.95rem;
}
.site-footer p{margin:.6rem 0 0;font-size:.92rem}
.site-footer ul{list-style:none;margin:0;padding:0;display:grid;gap:.55rem;font-size:.9rem}
.site-footer a{color:#B7C6CC}
.site-footer a:hover{color:#7FE3B0}
.footer-breadcrumbs{
  margin:0 0 28px;
  padding:0 0 20px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-breadcrumbs ol{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.45rem;
  color:#E2EBEE;
  font-size:.88rem;
  font-weight:700;
}
.footer-breadcrumbs li{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
}
.footer-breadcrumbs li + li::before{
  content:'›';
  color:#7C8D93;
  font-weight:800;
}
.footer-breadcrumbs a{
  display:inline-flex;
  align-items:center;
  gap:.42rem;
  color:#E2EBEE;
}
.footer-breadcrumbs a:hover{color:#7FE3B0}
.footer-breadcrumb-home{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:1.35rem;
  height:1.35rem;
}
.footer-breadcrumb-home svg{
  width:1.1rem;
  height:1.1rem;
  fill:currentColor;
}
.footer-bottom{
  display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;
  padding-top:20px;font-size:.8rem;color:#7C8D93
}

.footer-bottom{
  align-items:flex-start;
  gap:12px 18px;
}
.footer-legal{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  align-items:center;
  margin-top:14px;
}
.footer-legal a{
  color:#fff;
  font-weight:800;
  text-decoration:underline;
  text-decoration-color:rgba(127,227,176,.35);
  text-underline-offset:3px;
}
.footer-legal a:hover{
  color:#7FE3B0;
  text-decoration-color:currentColor;
}
.footer-legal-button{
  appearance:none;
  background:none;
  border:0;
  color:#fff;
  cursor:pointer;
  font:inherit;
  font-weight:800;
  padding:0;
  text-decoration:underline;
  text-decoration-color:rgba(127,227,176,.35);
  text-underline-offset:3px;
}
.footer-legal-button:hover{
  color:#7FE3B0;
  text-decoration-color:currentColor;
}

.page-shell{
  padding-bottom:0;
  background:
    radial-gradient(circle at top left, rgba(10,154,78,.10), transparent 26%),
    radial-gradient(circle at top right, rgba(0,42,103,.10), transparent 22%),
    url("/assets/bg.ff44b15a98.png") bottom center/contain no-repeat,
    var(--surface);
}
.policy-hero .hero-copy{
  max-width:820px;
}
.policy-content{
  padding-top:36px;
}
.policy-layout{
  max-width:960px;
}
.policy-card{
  display:grid;
  gap:24px;
  padding:28px;
  border-radius:28px;
  background:linear-gradient(180deg,#fff 0%,#F7FAF8 100%);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}
.legal-section{
  display:grid;
  gap:12px;
}
.legal-section h2{
  margin:0;
  font-size:1.4rem;
}
.legal-copy{
  display:grid;
  gap:12px;
  color:var(--ink-70);
}
.legal-copy p{
  margin:0;
}
.legal-copy ul{
  margin:0;
  padding-left:1.1rem;
}
.legal-copy li + li{
  margin-top:.35rem;
}
.cookie-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:120;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  border-radius:24px;
  background:rgba(6,32,45,.95);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(16px) saturate(1.05);
}
.cookie-banner[hidden]{display:none}
.cookie-banner-copy{
  max-width:64ch;
}
.cookie-banner-copy strong{
  display:block;
  margin-bottom:4px;
  font-family:'Inter',sans-serif;
  font-size:1.06rem;
}
.cookie-banner-copy p{
  margin:0;
  color:#D9E5EA;
  font-size:.94rem;
}
.cookie-banner-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.cookie-banner .btn-secondary{
  color:#fff;
  border-color:rgba(255,255,255,.28);
}
.cookie-banner .btn-secondary:hover{
  background:rgba(255,255,255,.06);
}
.cookie-banner .btn-link{
  color:#fff;
  text-decoration-color:rgba(255,255,255,.45);
}
.cookie-banner .btn-primary{
  box-shadow:none;
}
.cookie-banner .btn-primary:hover{
  box-shadow:none;
}
.breadcrumbs{
  padding:18px 0 0;
}
.breadcrumbs ol{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.35rem .55rem;
  color:var(--ink-50);
  font-size:.82rem;
}
.breadcrumbs li{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
}
.breadcrumbs li + li::before{
  content:'/';
  color:#AAB7BB;
}
.breadcrumbs a{
  color:var(--ink-70);
  font-weight:700;
}
.breadcrumbs a:hover{
  color:var(--green-600);
}
.breadcrumbs [aria-current="page"]{
  color:var(--navy-800);
  font-weight:700;
}
.page-hero{
  padding:58px 0 44px;
  background:
    linear-gradient(160deg, rgba(6,32,45,.96) 0%, rgba(10,44,61,.94) 52%, rgba(0,42,103,.98) 132%),
    url("/assets/bg.ff44b15a98.png") bottom center/contain no-repeat,
    #002A67;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:'';
  position:absolute;inset:0;
  background:radial-gradient(560px 260px at 85% 15%, rgba(10,154,78,.16), transparent 58%);
  pointer-events:none;
}
.page-hero h1{color:#fff;font-size:clamp(2.05rem,4vw,3.2rem);font-weight:700;margin:.7rem 0 1rem}
.page-hero .hero-copy{max-width:760px;position:relative;z-index:1}
.page-hero > .container.hero-copy{
  max-width:var(--container);
}
.page-hero .lead{color:#D5E2E6;max-width:60ch}
.hero-split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:center;
  position:relative;
  z-index:1;
}
.asbest-hero .hero-split{
  align-items:start;
}
.asbest-hero-rail{
  display:grid;
  gap:16px;
}
.asbest-stat-panel{
  display:grid;
  gap:14px;
}
.asbest-stat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.asbest-stat{
  display:grid;
  gap:.2rem;
  padding:14px 14px 15px;
  border-radius:16px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff 0%,#F7F9F8 100%);
  box-shadow:var(--shadow-sm);
}
.asbest-stat strong{
  font-family:'Inter',sans-serif;
  font-size:1.1rem;
  color:var(--navy-800);
  line-height:1.05;
}
.asbest-stat span{
  color:var(--ink-50);
  font-size:.84rem;
  line-height:1.35;
}
.asbest-image-stack{
  display:grid;
  gap:16px;
}
.asbest-source-panel{
  display:grid;
  gap:14px;
}
.asbest-source-links{
  display:grid;
  gap:0;
  border-top:1px solid var(--line);
}
.asbest-source-links a{
  position:relative;
  display:block;
  padding:.7rem 0 .7rem 1.5rem;
  border-bottom:1px solid var(--line);
  color:var(--navy-800);
  font-weight:800;
}
.asbest-source-links a::before{
  content:'\2197';
  position:absolute;
  left:0;
  top:.68rem;
  color:var(--green-600);
  font-weight:700;
}
.asbest-source-links a small{
  display:block;
  margin-top:.2rem;
  color:var(--ink-45); /* DIGA-7095: was --ink-50, 4.2:1 on this background */
  font-weight:600;
}
.asbest-source-links a:hover{
  color:var(--green-700);
}
.asbest-source-links a:hover::before{
  color:var(--green-700);
}
@media(min-width:901px){
  .asbest-source-links{
    column-count:2;
    column-gap:32px;
  }
  .asbest-source-links a{
    break-inside:avoid;
  }
}
.asbest-summary-list{
  display:grid;
  gap:10px;
}
.asbest-summary-item{
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink-70);
}
.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-md);
}
.panel.pad{padding:24px}
.panel.soft{background:var(--surface-alt)}
.panel.source-panel{
  padding:20px;
  box-shadow:none;
}
.hero-art{
  position:relative;
  overflow:hidden;
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-lg);
  background:#fff;
}
.media-picture{
  display:block;
  width:100%;
  line-height:0;
}
.hero-art .media-picture{
  position:absolute;
  inset:0;
}
/* DIGA-5294: center top keeps heads in frame at all crop ratios (DIGA-5071
   focal-point rule applied site-wide to all person hero photos). */
.hero-art img{width:100%;height:100%;object-fit:cover;object-position:center top}
.copy-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:40px;
  align-items:start;
}
.content-block{display:grid;gap:16px}
.content-block p{margin:0;color:var(--ink-70)}
.bullet-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.bullet-list li{
  position:relative;
  padding-left:28px;
  color:var(--ink-70);
}
.bullet-list li::before{
  content:'';
  position:absolute;
  left:0;top:.65em;
  width:12px;height:12px;border-radius:50%;
  background:linear-gradient(120deg,var(--green-700),var(--green-500));
  box-shadow:0 0 0 4px rgba(7,125,63,.12);
}
.price-table{
  display:grid;
  gap:12px;
}
.price-row{
  display:flex;justify-content:space-between;gap:16px;align-items:center;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.price-row strong{color:var(--navy-800)}
.price-row span{font-weight:800;color:var(--green-700)}
.note-strip{
  background:var(--surface-alt);
  border:1px solid var(--line);
  padding:16px 18px;
  border-radius:16px;
  color:var(--ink-70);
}
.credential-strip{
  display:flex;
  gap:.65rem;
  flex-wrap:wrap;
}
.credential-strip .chip{background:#fff;border:1px solid var(--line);color:var(--navy-800)}

.faq-list{display:grid;gap:14px}
details.faq{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}
details.faq summary{
  list-style:none;
  cursor:pointer;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  font-weight:800;
  color:var(--navy-800);
}
details.faq summary::-webkit-details-marker{display:none}
details.faq summary::after{
  content:'›';
  font-size:1.5rem;
  line-height:1;
  color:var(--green-700);
  transition:transform .18s ease;
}
details.faq[open] summary::after{transform:rotate(90deg)}
details.faq .faq-body{
  display:grid;
  grid-template-rows:0fr;
  opacity:0;
  color:var(--ink-70);
}
details.faq .faq-body>p{margin:0;padding:16px 20px 36px;overflow:hidden;min-height:0}
details.faq[open] .faq-body{grid-template-rows:1fr;opacity:1}
@media(prefers-reduced-motion:no-preference){
  details.faq .faq-body{transition:grid-template-rows .22s ease,opacity .18s ease}
}

.info-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:start;
}
.brochure-list{display:grid;gap:10px}
.brochure-list a{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  background:#fff;
  color:var(--navy-800);
  font-weight:800;
}
.brochure-list a:hover{border-color:var(--green-600)}

.form-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px;
  align-items:start;
}
.contact-card{padding:24px}
.contact-card .mini-photo{
  width:fit-content;height:auto;
  border-radius:14px;
  background:var(--navy-900);
  padding:13px 18px;
  box-shadow:var(--shadow-md);
  margin-bottom:16px;
}
.contact-card .mini-photo img{width:auto;height:30px;object-fit:contain}
.contact-stack{display:grid;gap:10px;margin-top:18px;color:var(--ink-70)}
.request-form{padding:24px}
.field-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.field{display:grid;gap:7px}
.field.full{grid-column:1/-1}
.field label{font-size:.88rem;font-weight:800;color:var(--navy-800)}
.field input:not([type="radio"]):not([type="checkbox"]),.field select,.field textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:.9rem 1rem;
  background:#fff;
  color:var(--ink);
  box-shadow:inset 0 0 0 1px transparent;
}
.field select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding-right:2.6rem;
  background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3e%3cpath d='M4 6l4 4 4-4' stroke='%2306202D' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat:no-repeat;
  background-position:right 1rem center;
}
.field input[type="file"]{
  padding:.72rem 1rem;
}
.field input[type="file"]::file-selector-button{
  margin-right:14px;
  border:0;
  border-radius:999px;
  padding:.58rem .95rem;
  background:var(--green-100);
  color:var(--green-700);
  font-weight:800;
  cursor:pointer;
}
.field input[type="file"]::-webkit-file-upload-button{
  margin-right:14px;
  border:0;
  border-radius:999px;
  padding:.58rem .95rem;
  background:var(--green-100);
  color:var(--green-700);
  font-weight:800;
  cursor:pointer;
}
.field input:focus,.field input:focus-visible,.field select:focus,.field select:focus-visible,.field textarea:focus,.field textarea:focus-visible{
  outline:2px solid rgba(10,154,78,.65);
  outline-offset:2px;
  border-color:var(--green-500);
  box-shadow:0 0 0 3px rgba(10,154,78,.16);
}
.request-form button[type="submit"]{scroll-margin-top:calc(var(--header-h) + 24px)}
.request-form button[type="submit"]{margin-top:18px}
.field-error{
  min-height:1rem;
  color:var(--epc-f);
  font-size:.84rem;
}
.toggle-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.toggle-group{
  border:0;
  margin:0;
  padding:0;
}
.toggle-group > legend{
  font-size:.88rem;
  font-weight:800;
  color:var(--navy-800);
  margin:0 0 .7rem;
  padding:0;
}
.toggle-row label{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  border:1px solid var(--line);
  border-radius:999px;
  padding:.75rem 1.1rem;
  min-height:44px;
  cursor:pointer;
  font-weight:800;
  color:var(--navy-800);
  background:#fff;
  white-space:nowrap;
}
.toggle-row input{
  width:auto;
  flex:none;
  margin:0;
  border:0;
  border-radius:0;
  padding:0;
  background:none;
  box-shadow:none;
  accent-color:var(--green-600);
}
.success-panel{
  display:none;
  border:1px solid rgba(7,125,63,.2);
  background:var(--green-100);
  color:var(--navy-800);
  border-radius:18px;
  padding:16px 18px;
  margin-top:16px;
}
.success-panel.show{display:block}
.success-panel.is-error{
  border-color:rgba(182,32,57,.2);
  background:#FFF2F4;
  color:var(--epc-f);
}
.lead-form-honeypot{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
  opacity:0;
  pointer-events:none;
}
.helper-row{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;margin-top:8px;color:var(--ink-50);font-size:.86rem}

.mobile-sticky-cta{
  display:none;
  position:fixed;
  left:12px;right:12px;bottom:12px;
  z-index:45;
  background:rgba(6,32,45,.96);
  border:0;
  border-radius:20px;
  box-shadow:0 16px 34px rgba(6,32,45,.26);
  padding:10px;
  gap:10px;
}
.mobile-sticky-cta a{
  flex:1;
  text-align:center;
}
.mobile-sticky-cta .btn-primary{padding:.9rem 1rem}

.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
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .section:not(.hero):not(.page-hero){
    opacity:1;
    transform:none;
    animation:none;
    transition:none;
  }
  .btn,.btn-link,.btn-link::after,.card.lift,.video-panel .video-poster,
  .nav-toggle span,.nav-toggle span::before,.nav-toggle span::after{
    transition:none;
  }
  .btn:hover{transform:none}
  .mobile-drawer,.mobile-drawer-backdrop{transition:none}
}

@media (max-width: 900px){
  .nav-links,.nav-actions .nav-phone,.nav-actions .btn{display:none}
  .nav-toggle{display:inline-flex}
  .service-pill-grid,
  .service-hub-grid,
  .route-grid{grid-template-columns:1fr}
  .hero-grid,.hero-split,.copy-grid,.info-grid,.form-layout,.about,.video-feature{grid-template-columns:1fr}
  .asbest-stat-grid{grid-template-columns:1fr}
  .nova-layout,.nova-mosaic{grid-template-columns:1fr}
  .nova-mosaic{grid-template-rows:auto;min-height:0}
  .nova-card-large{grid-row:auto;min-height:280px}
  .hero-grid{gap:38px;padding-block:54px 64px}
  .page-hero{padding:48px 0 34px}
  .section{padding:56px 0}
  .hero-grid{
    display:flex;
    flex-direction:column;
    align-items:stretch;
  }
  .hero-media{
    display:flex;
    flex-direction:column;
    gap:18px;
    /* DIGA-3941 2026-08-06: .hero-media heeft basis-regel align-self:start; in een kolom-flex
       container is dat de CROSS-as, dus de videopaneel kromp op mobiel tot 2px breed (een
       wit streepje in de linkermarge). align-items:stretch op .hero-grid wordt overruled
       door align-self op het kind, dus hier expliciet terugzetten. */
    align-self:stretch;
    width:100%;
    min-width:0;
  }
  /* DIGA-7094 (28-08, Cyrus Tier-2 audit): op mobiel (390x844/375x667) stond de video-hero
     volledig boven de vouw (via de vroegere order:-1 hieronder, meermaals heen-en-weer
     gewijzigd sinds 05-08 -- 3b197299/693ed368/3ff8a9dc/57685a5f) en de eerste "Boek een
     afspraak"-knop rende pas op y~872px, ruim voorbij de viewport. Dat is een HARD-defect
     tegen de QC-baseline dim.4 (primaire CTA boven de vouw op elke landingspagina), en
     géén sitebreed patroon -- /asbestattest/ (ander hero-template) toont zijn CTA al wel
     meteen onder de H1. Fix: DOM-volgorde (tekst+CTA eerst, video erna) geldt nu ook
     mobiel -- geen order-override meer nodig. De video-CTA zelf (poster/play-affordance,
     badge/copy) is niet aangeraakt, staat onveranderd -- alleen lager, na de knoppenrij.
     Extra: de langere sub-paragraaf volgt ná de knoppenrij i.p.v. ervoor, zodat de CTA
     meteen na de H1 zichtbaar is (gemeten fully-visible-no-scroll op alle 6 combinaties:
     NL/EN/PL x 390x844/375x667). Alleen mobiel (<=900px) -- desktop-grid (twee kolommen,
     video naast tekst) is volledig ongemoeid. */
  .hero-grid > div:first-child{
    display:flex;
    flex-direction:column;
  }
  .hero-grid > div:first-child .sub{
    order:1;
  }
  .grid-3,.grid-4,.cards-3,.price-grid,.footer-grid,.field-grid,.service-grid,.checklist-grid{grid-template-columns:1fr}
  .mobile-drawer{
    padding:0 16px 16px;
  }
  .drawer-links{
    padding:20px 14px 0;
  }
  .mobile-sticky-cta:not([hidden]){display:flex}
  .hero .sub,.page-hero .lead{font-size:1.06rem}
  .about .photo-wrap{min-height:320px;background-position:center 18%}
  .team-grid{grid-template-columns:1fr}
  .team-card-photo{aspect-ratio:16/10}
  /* DIGA-5071: the fixed 340px min-height (tuned for desktop) forces a near-square crop
     window on narrow mobile widths, over-zooming hero photos and cropping people out of
     frame (the /over-ons/ duo photo lost Britt off the right edge). aspect-ratio:3/2
     matches the team-card-photo mobile-widening pattern above and keeps far more of the
     source frame visible (image is 1672x941, ~1.78:1) without any per-page magic number. */
  .page-hero .hero-art{min-height:0;aspect-ratio:3/2}
  /* DIGA-5071: two stacked photos back-to-back is a standing no-no on mobile — reorder so
     the bio text sits between the hero photo above and this section's photo-wrap image. */
  .about .photo-block{order:2}
  .about > div:not(.photo-block){order:1}
  /* DIGA-5071 (round 2): the VEKA credential was overlaid on top of the photo (text
     through the image) — Mathieu: caption belongs under the image, not through it.
     Mobile-only: drop the absolute overlay and flow it as normal caption lines below
     the photo, inside the same .photo-block/.team-card-media. Desktop overlay is unchanged.
     DIGA-6957: generalised from .about .cred to .photo-badges so Thomas's and Britt's
     job-title + VEKA badges collapse the same way and never cover a face on mobile. */
  .photo-badges{position:static;flex-direction:row;flex-wrap:wrap;align-items:flex-start;margin-top:10px}
}
@media (max-width: 560px){
  :root{--gutter:clamp(34px,7vw,44px)}
  .hero h1,.page-hero h1{font-size:clamp(2rem,11vw,2.7rem)}
  .hero-cta,.trust-inner,.chips,.credential-strip{gap:.5rem}
  .overview-summary .button-row{flex-direction:column}
  .nova-mosaic{gap:12px}
  .nova-card figcaption{left:12px;right:12px;bottom:12px;padding:10px 12px;font-size:.82rem}
  .btn{width:100%}
  .btn.btn-inline{width:auto}
  /* Niveau 2 blijft volle breedte (§5, DIGA-5753) maar wordt visueel gedegradeerd:
     lager, kleinere tekst, dunnere rand -- zodat het geen even zware balk is als niveau 1. */
  .btn.btn-secondary{
    padding:.72rem 1.25rem;
    font-size:.95rem;
    border-width:1.5px;
  }
  /* Niveau 3 blijft nooit volle breedte -- "een tertiaire knop op volle breedte is geen
     tertiaire knop". min-height via padding houdt het tapdoel >=44px. */
  .btn-link{width:auto;padding:.6rem 0;min-height:44px}
  .mobile-sticky-cta{left:10px;right:10px;padding:8px}
  .video-panel{
    width:100%;
    max-width:100%;
    aspect-ratio:auto;
    height:250px;
    min-height:0;
  }
  .video-panel .video-poster{padding:18px}
  .video-poster-copy strong{font-size:1.15rem}
  .hero-grid{gap:34px;padding-block:50px 60px}
  .about .photo-wrap{min-height:280px}
  .team-card-photo{aspect-ratio:1/1}
  .cookie-banner{
    left:var(--gutter);
    right:var(--gutter);
    padding:14px 16px;
    flex-direction:column;
    align-items:stretch;
    gap:12px;
  }
  .cookie-banner-copy{
    max-width:none;
    min-width:0;
  }
  .cookie-banner-copy strong{
    font-size:.98rem;
  }
  .cookie-banner-copy p{
    font-size:.88rem;
    line-height:1.35;
    overflow-wrap:anywhere;
  }
  .cookie-banner-actions{
    width:100%;
    min-width:0;
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
    justify-content:stretch;
  }
  .cookie-banner .btn-secondary,
  .cookie-banner .btn-primary{
    width:100%;
    min-width:0;
    justify-content:center;
    white-space:normal;
    text-align:center;
    min-height:44px;
    line-height:1.15;
  }
  .cookie-banner .btn-primary{
    grid-column:auto;
  }
  .cookie-banner .btn-link{
    justify-content:center;
    min-height:44px;
  }
  .mobile-sticky-cta{
    left:var(--gutter);
    right:var(--gutter);
  }
}
@media (max-width: 375px){
  .video-panel{height:220px}
}
