/* =========================================================================
   Spes Autobanden, redesign (hoofdvariant)
   Sfeer: stoer & industrieel · Kleuren: Spes-geel + antraciet + papierwit
   Design tokens staan bovenaan; alles is met één regel te tweaken.
   ========================================================================= */

:root{
  /* Kleuren */
  --yellow:#FFC400;
  --yellow-600:#E9AE00;
  --yellow-tint:#FFF3CC;
  --ink:#0B0C0F;
  --anthracite:#17191F;
  --anthracite-2:#20232B;
  --anthracite-3:#2A2E38;
  --paper:#F8F7F4;
  --paper-2:#F1EFEA;
  --white:#FFFFFF;
  --grey:#5A606B;
  --grey-2:#8A909B;
  --line:#E4E2DC;
  --line-2:#D8D5CD;
  --line-dark:#2E323C;

  /* Typografie */
  --font-head:'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --font-body:'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Maatvoering */
  --maxw:1200px;
  --gap:clamp(1.25rem, 3vw, 2.5rem);
  --radius:3px;
  --radius-lg:6px;
  --shadow-sm:0 1px 2px rgba(11,12,15,.06);
  --shadow:0 10px 30px -12px rgba(11,12,15,.22);
  --ease:cubic-bezier(.2,.6,.2,1);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  font-size:17px;
  line-height:1.62;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit}

/* --------------------------------------------------------- Typografie */
h1,h2,h3,h4{
  font-family:var(--font-head);
  font-weight:600;
  line-height:1.04;
  margin:0 0 .5em;
  letter-spacing:.01em;
}
h1{font-size:clamp(2.4rem, 6vw, 4.4rem);text-transform:uppercase;letter-spacing:.005em}
h2{font-size:clamp(1.8rem, 3.6vw, 2.9rem);text-transform:uppercase}
h3{font-size:clamp(1.25rem, 2vw, 1.6rem)}
h4{font-size:1.05rem;font-weight:500}
p{margin:0 0 1.1em}
p:last-child{margin-bottom:0}
strong{font-weight:600}

.eyebrow{
  font-family:var(--font-head);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.82rem;
  color:var(--grey);
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  margin:0 0 1rem;
}
.eyebrow::before{
  content:"";
  width:26px;height:3px;
  background:var(--yellow);
  display:inline-block;
}
.eyebrow.on-dark{color:var(--yellow)}
.eyebrow.on-dark::before{background:var(--yellow)}

.lead{font-size:1.16rem;line-height:1.6;color:#33383F}
.muted{color:var(--grey)}

/* --------------------------------------------------------- Layout */
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 clamp(1.1rem, 4vw, 2.5rem)}
.section{padding:clamp(3.5rem, 8vw, 6.5rem) 0}
.section.tight{padding:clamp(2.5rem,5vw,4rem) 0}
.band-dark{background:var(--anthracite);color:#EDEEF0}
.band-dark h1,.band-dark h2,.band-dark h3{color:#fff}
.band-paper{background:var(--paper)}
.band-paper-2{background:var(--paper-2)}
.band-white{background:var(--white)}
.section-head{max-width:62ch;margin-bottom:clamp(2rem,4vw,3rem)}
.section-head.center{margin-inline:auto;text-align:center}
.center .eyebrow{justify-content:center}

/* --------------------------------------------------------- Buttons */
.btn{
  display:inline-flex;align-items:center;gap:.55rem;
  font-family:var(--font-head);font-weight:600;
  text-transform:uppercase;letter-spacing:.04em;
  font-size:.98rem;
  padding:.85rem 1.5rem;
  border:2px solid transparent;border-radius:var(--radius);
  cursor:pointer;transition:transform .12s var(--ease), background .18s, color .18s, border-color .18s;
  line-height:1;white-space:nowrap;
}
.btn svg{width:1.05em;height:1.05em;flex:none}
.btn-primary{background:var(--yellow);color:var(--ink);border-color:var(--yellow)}
.btn-primary:hover{background:var(--yellow-600);border-color:var(--yellow-600)}
.btn-dark{background:var(--ink);color:#fff;border-color:var(--ink)}
.btn-dark:hover{background:#000}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--line-2)}
.btn-ghost:hover{border-color:var(--ink)}
.btn-ghost.on-dark{color:#fff;border-color:#3A3E48}
.btn-ghost.on-dark:hover{border-color:var(--yellow);color:var(--yellow)}
.btn:active{transform:translateY(1px)}
.btn-lg{padding:1rem 1.8rem;font-size:1.05rem}

/* --------------------------------------------------------- Preview banner */
.preview-banner{
  background:repeating-linear-gradient(-45deg,#111 0 14px,#1c1c1c 14px 28px);
  color:#fff;font-size:.78rem;letter-spacing:.03em;
  text-align:center;padding:.5rem 1rem;
  border-bottom:2px solid var(--yellow);
}
.preview-banner strong{color:var(--yellow);font-weight:600}

/* --------------------------------------------------------- Header */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(248,247,244,.94);
  backdrop-filter:saturate(140%) blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex;align-items:center;gap:1.5rem;min-height:76px}
.brand{display:flex;align-items:center;flex:none}
.brand img{height:44px;width:auto}
.main-nav{margin-left:auto;display:flex;align-items:center;gap:.15rem}
.main-nav a{
  font-family:var(--font-head);font-weight:500;
  text-transform:uppercase;letter-spacing:.05em;font-size:.96rem;
  color:#2A2E36;padding:.6rem .8rem;border-radius:var(--radius);
  position:relative;transition:color .15s;white-space:nowrap;
}
.main-nav a:hover{color:var(--ink)}
.main-nav a::after{
  content:"";position:absolute;left:.8rem;right:.8rem;bottom:.35rem;height:2px;
  background:var(--yellow);transform:scaleX(0);transform-origin:left;transition:transform .18s var(--ease);
}
.main-nav a:hover::after,.main-nav a.is-active::after{transform:scaleX(1)}
.main-nav a.is-active{color:var(--ink)}
.header-cta{display:flex;align-items:center;gap:.75rem;flex:none}
.header-tel{
  font-family:var(--font-head);font-weight:600;font-size:1.05rem;
  display:inline-flex;align-items:center;gap:.5rem;color:var(--ink);letter-spacing:.02em;
}
.header-tel svg{width:1.05em;height:1.05em;color:var(--yellow-600)}
.nav-toggle{display:none;background:none;border:0;padding:.4rem;cursor:pointer}
.nav-toggle span{display:block;width:26px;height:2.5px;background:var(--ink);margin:5px 0;transition:.2s}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}

/* --------------------------------------------------------- Hero */
.hero{position:relative;background:var(--anthracite);color:#EAEBED;overflow:hidden}
.hero::after{ /* subtiele gele hoeklijn */
  content:"";position:absolute;right:-120px;top:-120px;width:420px;height:420px;
  background:radial-gradient(closest-side, rgba(255,196,0,.14), transparent 70%);
  pointer-events:none;
}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(1.5rem,4vw,3.5rem);align-items:center;
  padding:clamp(3rem,7vw,6rem) 0 clamp(3rem,6vw,5rem)}
.hero h1{color:#fff;margin-bottom:1rem}
.hero h1 .hl{color:var(--yellow)}
.hero-lead{font-size:1.18rem;color:#C7CAD0;max-width:46ch;margin-bottom:1.6rem}
.hero-cta{display:flex;flex-wrap:wrap;gap:.8rem;margin-bottom:1.6rem}
.hero-note{display:flex;align-items:center;gap:.6rem;color:#AEB2BA;font-size:.98rem}
.hero-note svg{width:1.2em;height:1.2em;color:var(--yellow)}
.hero-media{position:relative}
.hero-media img{width:100%;height:100%;object-fit:cover;border-radius:var(--radius-lg);
  box-shadow:0 30px 60px -25px rgba(0,0,0,.7)}
.hero-tag{position:absolute;left:0;bottom:18px;background:var(--yellow);color:var(--ink);
  font-family:var(--font-head);font-weight:600;text-transform:uppercase;letter-spacing:.05em;
  font-size:.9rem;padding:.5rem 1rem;border-radius:0 var(--radius) var(--radius) 0}

/* strip onder hero met openingsflits */
.hero-strip{border-top:1px solid var(--line-dark);background:var(--anthracite-2)}
.hero-strip .wrap{display:flex;flex-wrap:wrap;gap:1.2rem 2.5rem;padding-block:1rem;align-items:center}
.hero-strip .item{display:flex;align-items:center;gap:.6rem;color:#C7CAD0;font-size:.96rem}
.hero-strip .item svg{width:1.15em;height:1.15em;color:var(--yellow);flex:none}
.hero-strip .item strong{color:#fff;font-weight:600}

/* --------------------------------------------------------- Pillars (3) */
.pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.pillar{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);
  overflow:hidden;display:flex;flex-direction:column;transition:transform .16s var(--ease), box-shadow .16s;
}
.pillar:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.pillar-media{aspect-ratio:16/10;overflow:hidden;background:#111}
.pillar-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.pillar:hover .pillar-media img{transform:scale(1.05)}
.pillar-body{padding:1.4rem 1.5rem 1.6rem;display:flex;flex-direction:column;flex:1}
.pillar-body h3{margin-bottom:.5rem}
.pillar-body p{color:var(--grey);font-size:.98rem;margin-bottom:1.1rem}
.pillar-link{margin-top:auto;font-family:var(--font-head);font-weight:600;text-transform:uppercase;
  letter-spacing:.04em;font-size:.92rem;color:var(--ink);display:inline-flex;align-items:center;gap:.45rem}
.pillar-link svg{width:1.1em;height:1.1em;color:var(--yellow-600);transition:transform .18s var(--ease)}
.pillar:hover .pillar-link svg{transform:translateX(4px)}

/* --------------------------------------------------------- Split (tekst + beeld) */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.75rem,4vw,4rem);align-items:center}
.split.rev .split-media{order:-1}
.split-media img{width:100%;border-radius:var(--radius-lg);border:1px solid var(--line)}
.split-media.framed{position:relative}
.split-media.framed::before{content:"";position:absolute;inset:14px -14px -14px 14px;border:2px solid var(--yellow);border-radius:var(--radius-lg);z-index:-1}
.check-list{list-style:none;margin:1.4rem 0 0;padding:0;display:grid;gap:.85rem}
.check-list li{display:flex;gap:.75rem;align-items:flex-start;line-height:1.45}
.check-list svg{width:1.35em;height:1.35em;color:var(--yellow-600);flex:none;margin-top:.1em}

/* --------------------------------------------------------- USP editorial list */
.usp-list{display:grid;grid-template-columns:1fr 1fr;gap:0 clamp(2rem,5vw,4rem)}
.usp{padding:1.5rem 0;border-top:1px solid var(--line-2);display:flex;gap:1rem}
.usp .num{color:var(--yellow-600);flex:none;display:inline-flex;align-items:center;justify-content:center;
  width:2rem;height:2rem;border:2px solid var(--yellow);border-radius:50%;margin-top:.1rem}
.usp .num svg{width:1.15rem;height:1.15rem}
.band-dark .usp{border-top-color:var(--line-dark)}
.band-dark .usp p{color:#AEB2BA}

/* Juridische accordions */
.legal{border-top:1px solid var(--line-2)}
.legal:last-of-type{border-bottom:1px solid var(--line-2)}
.legal summary{
  cursor:pointer;list-style:none;padding:1.15rem 0;display:flex;align-items:center;justify-content:space-between;
  font-family:var(--font-head);font-weight:600;text-transform:uppercase;letter-spacing:.05em;font-size:1.1rem;color:var(--ink);
}
.legal summary::-webkit-details-marker{display:none}
.legal summary::after{content:"+";font-size:1.6rem;font-weight:400;color:var(--yellow-600);line-height:1}
.legal[open] summary::after{content:"\2013"}
.legal-body{padding:0 0 1.5rem;max-width:76ch}
.legal-body h4{margin:1.4rem 0 .4rem;text-transform:uppercase;letter-spacing:.06em;color:var(--grey)}
.legal-body p{font-size:.95rem;color:#3A3E46}
.usp h3{font-size:1.2rem;margin-bottom:.35rem}
.usp p{color:var(--grey);font-size:.98rem;margin:0}

/* --------------------------------------------------------- Content sections (detailpagina's) */
.topic{padding:clamp(2.2rem,4vw,3.2rem) 0;border-top:1px solid var(--line)}
.topic:first-of-type{border-top:0}
.topic-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,4vw,3.5rem);align-items:center}
.topic-grid.rev .topic-media{order:-1}
.topic-media img{width:100%;border-radius:var(--radius-lg);border:1px solid var(--line);background:#fff}
.topic-body h2{font-size:clamp(1.5rem,2.6vw,2.1rem)}
.topic-body h3{color:var(--ink)}
.anchor{scroll-margin-top:110px}
.mini-nav{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.5rem}
.chip{
  font-family:var(--font-head);font-weight:500;text-transform:uppercase;letter-spacing:.04em;
  font-size:.85rem;padding:.45rem .85rem;border:1px solid var(--yellow);border-radius:100px;
  color:var(--ink);background:var(--yellow);transition:.15s;
}
.chip:hover{border-color:var(--yellow-600);background:var(--yellow-600);color:var(--ink)}

/* --------------------------------------------------------- Brands */
.brands{display:flex;flex-wrap:wrap;gap:.6rem 2.4rem;justify-content:center;align-items:center}
.brands span{font-family:var(--font-head);font-weight:600;text-transform:uppercase;letter-spacing:.05em;
  font-size:1.15rem;color:#3A3E46}
.brands.on-dark span{color:#AEB2BA}

/* --------------------------------------------------------- News */
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.news-card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);
  overflow:hidden;display:flex;flex-direction:column;transition:transform .16s var(--ease),box-shadow .16s}
.news-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.news-media{aspect-ratio:16/9;overflow:hidden;background:#111}
.news-media img{width:100%;height:100%;object-fit:cover}
.news-body{padding:1.3rem 1.4rem 1.5rem;display:flex;flex-direction:column;flex:1}
.news-date{font-family:var(--font-head);text-transform:uppercase;letter-spacing:.08em;font-size:.78rem;
  color:var(--yellow-600);font-weight:600;margin-bottom:.5rem}
.news-body h3{font-size:1.18rem;margin-bottom:.5rem;line-height:1.12}
.news-body p{color:var(--grey);font-size:.95rem;margin-bottom:1rem}
.news-body .pillar-link{margin-top:auto}

/* --------------------------------------------------------- Contact / CTA band */
.contact-band{background:var(--anthracite);color:#DDDFE3}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.75rem,4vw,3.5rem)}
.contact-info h2{color:#fff}
.info-rows{display:grid;gap:1rem;margin:1.5rem 0}
.info-row{display:flex;gap:.9rem;align-items:flex-start}
.info-row svg{width:1.3em;height:1.3em;color:var(--yellow);flex:none;margin-top:.15em}
.info-row a{color:#fff}
.info-row a:hover{color:var(--yellow)}
.hours{width:100%;border-collapse:collapse;font-size:.98rem}
.hours th,.hours td{text-align:left;padding:.55rem 0;border-bottom:1px solid var(--line-dark)}
.hours th{font-weight:500;color:#C7CAD0}
.hours td{text-align:right;color:#fff;font-variant-numeric:tabular-nums}
.hours .closed td{color:var(--grey-2)}
.map-embed{border:0;width:100%;height:100%;min-height:340px;border-radius:var(--radius-lg);filter:grayscale(.2)}
.map-wrap{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line-dark);min-height:340px}

/* --------------------------------------------------------- Forms */
.form{display:grid;gap:1.1rem}
.field{display:grid;gap:.4rem}
.field label{font-family:var(--font-head);font-weight:500;text-transform:uppercase;letter-spacing:.04em;font-size:.85rem;color:#2A2E36}
.field input,.field textarea{
  font-family:inherit;font-size:1rem;padding:.8rem .9rem;border:1px solid var(--line-2);
  border-radius:var(--radius);background:#fff;color:var(--ink);transition:border-color .15s, box-shadow .15s;
}
.field input:focus,.field textarea:focus{outline:0;border-color:var(--yellow-600);box-shadow:0 0 0 3px var(--yellow-tint)}
.field textarea{resize:vertical;min-height:130px}
.form-note{font-size:.85rem;color:var(--grey)}
.form-demo-flag{background:var(--yellow-tint);border:1px solid #F0D877;color:#6b5300;
  font-size:.85rem;padding:.65rem .9rem;border-radius:var(--radius)}
/* Honeypot: volledig verborgen anti-spamveld (mag geen display:none zijn i.v.m. sommige bots) */
.hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
/* Melding na verzenden van het contactformulier */
.form-msg{font-size:.9rem;padding:.75rem 1rem;border-radius:var(--radius);border:1px solid}
.form-msg.ok{background:#E7F6E9;border-color:#B8E0BE;color:#245C30}
.form-msg.err{background:#FCEBEA;border-color:#F3C2BE;color:#8A1F1F}

/* --------------------------------------------------------- Page hero (subpagina's) */
.page-hero{background:var(--anthracite);color:#fff;padding:clamp(2.5rem,6vw,4.5rem) 0 clamp(2rem,4vw,3rem);position:relative;overflow:hidden}
.page-hero::after{content:"";position:absolute;right:-100px;bottom:-140px;width:360px;height:360px;
  background:radial-gradient(closest-side,rgba(255,196,0,.12),transparent 70%)}
.page-hero .crumbs{font-size:.9rem;color:var(--grey-2);margin-bottom:1rem}
.page-hero .crumbs a:hover{color:var(--yellow)}
.page-hero h1{color:var(--yellow);margin-bottom:.6rem}
.page-hero p{color:#C7CAD0;max-width:60ch;margin:0}

/* --------------------------------------------------------- Footer */
.site-footer{background:var(--ink);color:#A9AEB8;padding-top:clamp(3rem,6vw,4.5rem)}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.1fr;gap:2rem}
/* Het logo heeft een gedetailleerde, donkere band en zwarte tekst: die vallen weg op de
   donkere footer. Daarom hetzelfde logo als in de header, op een wit vlak. */
.footer-brand img{height:52px;margin-bottom:1.1rem;background:#fff;
  padding:.6rem .8rem;border-radius:var(--radius);box-sizing:content-box}
.footer-brand p{font-size:.95rem;color:#8A909B;max-width:34ch}
.site-footer h4{font-family:var(--font-head);text-transform:uppercase;letter-spacing:.08em;font-size:.9rem;color:#fff;margin-bottom:1rem}
.footer-links{list-style:none;margin:0;padding:0;display:grid;gap:.55rem}
.footer-links a{color:#A9AEB8;font-size:.96rem}
.footer-links a:hover{color:var(--yellow)}
.footer-contact{display:grid;gap:.7rem;font-size:.96rem}
.footer-contact a:hover{color:var(--yellow)}
.footer-bottom{border-top:1px solid #1D1F25;margin-top:clamp(2.5rem,5vw,3.5rem);padding:1.5rem 0;
  display:flex;flex-wrap:wrap;gap:.5rem 1.5rem;justify-content:space-between;font-size:.85rem;color:#6C7280}
.footer-bottom a:hover{color:var(--yellow)}

/* --------------------------------------------------------- Artikel */
.article-wrap{max-width:760px;margin:0 auto}
.article-img{width:100%;border-radius:var(--radius-lg);border:1px solid var(--line);margin-bottom:2rem}
.article-wrap p{font-size:1.08rem;color:#2B2F36}
.article-lead{font-size:1.22rem;line-height:1.55;color:var(--ink);font-weight:500;margin-bottom:1.3rem}
.article-tags{font-size:.9rem;color:var(--grey);margin:1.6rem 0 2rem;border-top:1px solid var(--line);padding-top:1.2rem}
.article-actions{display:flex;flex-wrap:wrap;gap:.8rem;align-items:center}
.page-hero .news-date{color:var(--yellow);margin-bottom:.6rem;display:block}

/* --------------------------------------------------------- Reveal-on-scroll */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s var(--ease),transform .6s var(--ease)}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
}

/* --------------------------------------------------------- Responsive */
@media (max-width:1080px){
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:960px){
  .main-nav,.header-tel{display:none}
  .nav-toggle{display:block}
  .site-header.open .main-nav{
    display:flex;position:absolute;top:100%;left:0;right:0;flex-direction:column;align-items:stretch;
    background:var(--paper);border-bottom:1px solid var(--line);padding:.5rem 1rem 1.2rem;gap:.1rem;
    box-shadow:var(--shadow)
  }
  .site-header.open .main-nav a{padding:.85rem .6rem;border-bottom:1px solid var(--line)}
  .site-header.open .main-nav a::after{display:none}
  .hero-grid{grid-template-columns:1fr;gap:2rem}
  .hero-media{order:-1;max-height:340px}
  .split,.topic-grid,.contact-grid,.hero-grid{grid-template-columns:1fr}
  .split.rev .split-media,.topic-grid.rev .topic-media{order:0}
  .pillars,.news-grid{grid-template-columns:1fr 1fr}
  .usp-list{grid-template-columns:1fr}
}
@media (max-width:640px){
  body{font-size:16px}
  .pillars,.news-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .header-cta .btn span.hide-sm{display:none}
  .split-media.framed::before{inset:8px -8px -8px 8px}
  .hero-cta{flex-direction:column;align-items:stretch}
  .hero-cta .btn{width:100%;justify-content:center}
  .header-cta .btn-primary{padding:.7rem 1rem;font-size:.9rem}
  h1{font-size:clamp(2.1rem,9vw,2.8rem)}
  .footer-bottom{flex-direction:column;gap:.35rem}
}
@media (max-width:400px){
  .header-tel{display:none}
  .brand img{height:38px}
}

/* Spes als technische werkplaatseditie: geel signaal, papier, staal en raster. */
:root{
  --yellow:#f5c400;
  --yellow-600:#d7a900;
  --yellow-tint:#e8db9f;
  --ink:#111718;
  --anthracite:#172022;
  --anthracite-2:#0f181a;
  --paper:#e9e8e0;
  --paper-2:#dadbd4;
  --white:#f4f4ed;
  --grey:#3d4b4e;
  --grey-2:#677477;
  --line:#929d9b;
  --line-2:#58696a;
  --line-dark:#526164;
  --font-head:'Oswald','Arial Narrow',sans-serif;
  --font-body:'IBM Plex Sans',Arial,sans-serif;
  --maxw:1520px;
  --radius:0;
  --radius-lg:0;
  --shadow:none;
  --shadow-sm:none;
}
*,*::before,*::after{border-radius:0!important;box-shadow:none!important;animation:none!important}
html{scroll-behavior:auto}
body{line-height:1.52}
a,button,input,textarea{transition-duration:.08s!important;transition-timing-function:steps(1,end)!important}
h1,h2,h3,h4{line-height:.97;letter-spacing:-.015em;font-weight:700}
h1{font-size:clamp(4rem,7.5vw,8rem)}
h2{font-size:clamp(3rem,5.5vw,6rem)}
h3{font-size:clamp(1.8rem,2.5vw,2.7rem)}
.wrap{padding-inline:clamp(20px,4vw,64px)}
.section{padding-block:clamp(75px,8vw,130px);border-bottom:1px solid var(--line-2)}
.section-head{max-width:1050px}
.section-head.center{margin-inline:0;text-align:left}
.center .eyebrow{justify-content:flex-start}
.eyebrow,.news-date,.article-tags,.site-footer h4,.form-note,.crumbs{font-family:'IBM Plex Mono',monospace;font-size:.73rem;font-weight:700;letter-spacing:.11em;text-transform:uppercase}
.eyebrow::before{height:1px;width:32px}
.lead{max-width:64ch;font-size:clamp(1.05rem,1.7vw,1.3rem);line-height:1.5}
.btn{min-height:54px;border-width:1px;padding:.9rem 1.5rem;font-size:1.05rem;letter-spacing:.04em}
.btn:hover,.btn:active{transform:none}
.btn-primary:hover,.btn-dark:hover{background:var(--white);border-color:var(--ink);color:var(--ink)}
.btn-ghost:hover{background:var(--ink);border-color:var(--ink);color:#fff}
.btn-ghost.on-dark:hover{background:var(--yellow);border-color:var(--yellow);color:var(--ink)}
.site-header{background:var(--yellow);border-bottom:1px solid var(--ink);backdrop-filter:none}
.header-inner{min-height:82px}
.brand img{height:52px}
.main-nav{gap:0;align-self:stretch}
.main-nav a{display:flex;align-items:center;padding:0 .95rem;border-left:1px solid var(--line);font-size:1.05rem;font-weight:700;letter-spacing:.02em}
.main-nav a:hover,.main-nav a.is-active{background:var(--ink);color:var(--yellow)}
.main-nav a::after{display:none}
.header-tel{font-family:'IBM Plex Mono',monospace;font-size:.78rem}
.header-tel svg{display:none}
.nav-toggle{border:1px solid var(--ink);background:var(--yellow);padding:8px 12px}
.hero{position:relative;min-height:760px;background:var(--anthracite-2);border-bottom:1px solid var(--ink)}
.hero::before{content:'';position:absolute;inset:0;z-index:1;background:rgba(8,16,17,.58)}
.hero::after{display:none}
.hero .wrap{max-width:none;padding:0}
.hero-grid{display:block;position:relative;min-height:760px;padding:0}
.hero-copy{position:relative;z-index:2;max-width:1050px;min-height:760px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;padding:clamp(90px,9vw,150px) clamp(24px,6vw,100px)}
.hero h1{max-width:12ch;font-size:clamp(4.5rem,8.2vw,9rem);line-height:.88;margin:0 0 1.4rem}
.hero h1 .hl{color:var(--yellow)}
.hero-lead{max-width:48ch;color:#d4dad8;font-size:clamp(1.05rem,1.5vw,1.2rem)}
.hero-note{font-family:'IBM Plex Mono',monospace;font-size:.78rem;text-transform:uppercase;letter-spacing:.04em}
.hero-note svg,.hero-strip .item svg,.check-list svg,.usp .num svg,.info-row svg{display:none}
.hero-media{position:absolute;inset:0;display:flex;justify-content:flex-end;border:0;background:var(--anthracite-2)}
.hero-media img{width:min(100%,1104px);height:100%;min-height:0;max-height:none;object-fit:cover;object-position:center 55%;filter:grayscale(.25) contrast(1.18)}
.hero-tag{z-index:3;left:auto;right:0;bottom:0;padding:1rem 2rem;border-top:1px solid var(--ink);border-left:1px solid var(--ink);font-family:'IBM Plex Mono',monospace;font-size:.78rem}
.hero-strip{border-top:1px solid var(--yellow);background:var(--anthracite)}
.hero-strip .wrap{max-width:none;display:grid;grid-template-columns:repeat(3,1fr);gap:0;padding:0}
.hero-strip .item{min-height:66px;padding:1rem clamp(20px,4vw,64px);border-right:1px solid #58686a;color:var(--yellow);font-family:'IBM Plex Mono',monospace;font-size:.76rem;line-height:1.35;text-transform:uppercase}
.hero-strip .item strong{color:#fff}
.pillars,.news-grid{gap:0;border-top:1px solid var(--ink);border-left:1px solid var(--ink)}
.pillar,.news-card{border:0;border-right:1px solid var(--ink);border-bottom:1px solid var(--ink);background:transparent}
.pillar:hover,.news-card:hover{transform:none;background:var(--ink);color:#fff}
.pillar:hover h3,.pillar:hover p,.news-card:hover h3,.news-card:hover p{color:#fff}
.pillar-media{aspect-ratio:5/3;border-bottom:1px solid var(--ink)}
.pillar:hover .pillar-media img,.pillar:hover .pillar-link svg{transform:none}
.pillar-body{padding:1.8rem;gap:.8rem}
.pillar-body h3{font-size:clamp(2.3rem,3.2vw,3.6rem);line-height:.93}
.pillar-link{margin-top:auto;padding-top:1rem;border-top:1px solid currentColor;font-size:1.05rem}
.split{grid-template-columns:50% 50%;gap:0;align-items:stretch;border:1px solid var(--ink)}
.split-copy{padding:clamp(35px,5vw,85px);align-self:center}
.split-copy h2{font-size:clamp(2.8rem,4.7vw,5.3rem)}
.split-media{display:flex;align-items:stretch;border-right:1px solid var(--ink)}
.split-media img{height:100%;min-height:370px;object-fit:cover;filter:contrast(1.08) saturate(.8)}
.split-media.framed::before{display:none}
.split.rev .split-media{border-right:0;border-left:1px solid var(--ink)}
.check-list li{border-top:1px solid var(--line);padding-top:.6rem}
.check-list li::before{content:'';width:8px;height:8px;flex:none;margin-top:.55rem;background:var(--yellow-600)}
.usp-list{gap:0;border-top:1px solid var(--ink);border-left:1px solid var(--ink)}
.usp{border:0;border-right:1px solid var(--ink);border-bottom:1px solid var(--ink);padding:1.7rem;gap:1.2rem}
.usp .num{display:none}
.usp h3{font-size:clamp(1.9rem,2.6vw,2.8rem)}
.topic{padding-block:clamp(60px,7vw,105px)}
.topic-grid{gap:0;grid-template-columns:50% 50%;border:1px solid var(--ink)}
.topic-body{padding:clamp(30px,5vw,75px);align-self:center}
.topic-media{height:100%;border-right:1px solid var(--ink)}
.topic-media img{width:100%;height:100%;min-height:350px;object-fit:cover}
.topic-grid.rev .topic-media{border-right:0;border-left:1px solid var(--ink)}
.chip{border-color:var(--ink);background:transparent;font-size:.9rem}
.chip:hover{background:var(--ink);border-color:var(--ink);color:var(--yellow)}
.brands{justify-content:flex-start;gap:0}
.brands span{padding:1rem;border:1px solid var(--line);margin:-1px 0 0 -1px}
.news-body{padding:1.7rem}
.news-body h3{font-size:clamp(2rem,2.8vw,3rem)}
.page-hero{background:var(--anthracite);border-bottom:1px solid var(--ink);padding-block:clamp(60px,7vw,110px)}
.page-hero::after{display:none}
.page-hero h1{font-size:clamp(4rem,8vw,8.5rem);line-height:.9}
.contact-grid{gap:0;grid-template-columns:50% 50%;border:1px solid var(--line-dark)}
.contact-info,.contact-grid>.form{padding:clamp(25px,4vw,65px)}
.contact-grid>div:not(.map-wrap):not(.contact-info){padding:clamp(25px,4vw,65px)}
.contact-info{border-right:1px solid var(--line-dark)}
.map-wrap,.map-embed,.article-img,.topic-media img{border-color:var(--ink)}
.field input,.field textarea{background:transparent;border-color:var(--line-2)}
.field input:focus,.field textarea:focus{outline:2px solid var(--yellow-600);outline-offset:0}
.form-demo-flag,.form-msg{border:1px solid var(--ink)}
.site-footer{background:var(--anthracite-2);border-top:1px solid var(--yellow)}
.footer-grid{gap:0}
.footer-grid>div{padding-inline:2vw;border-right:1px solid #58686a}
.footer-grid>div:first-child{padding-left:0}
.footer-grid>div:last-child{border-right:0}
.footer-brand img{border:1px solid var(--line);padding:.6rem .8rem}
.reveal,.reveal.in{opacity:1;transform:none;transition:none}
@media(max-width:960px){
  .site-header.open .main-nav{background:var(--yellow);padding:0;border-color:var(--ink)}
  .site-header.open .main-nav a{padding:.9rem 20px}
  .hero,.hero-grid,.hero-copy{min-height:680px}
  .hero-copy{padding:80px 24px}
  .hero h1{font-size:clamp(4.2rem,12vw,7.5rem)}
  .hero-media{inset:0;border:0}
  .hero-media img{min-height:0;max-height:none}
  .split,.topic-grid,.contact-grid{grid-template-columns:1fr}
  .split-media,.split.rev .split-media,.topic-media,.topic-grid.rev .topic-media{order:0;border-left:0;border-right:0;border-bottom:1px solid var(--ink)}
  .hero-strip .wrap{grid-template-columns:1fr}
  .hero-strip .item{border-right:0;border-bottom:1px solid #58686a}
  .contact-info{border-right:0;border-bottom:1px solid var(--line-dark)}
}
@media(max-width:640px){
  h1{font-size:clamp(3.4rem,13vw,5rem)}
  h2{font-size:clamp(2.8rem,11vw,4.5rem)}
  .hero h1{font-size:clamp(3.9rem,14vw,6rem)}
  .section{padding-block:62px}
  .pillars,.news-grid,.usp-list{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-grid>div{border-right:0;border-bottom:1px solid #58686a;padding:24px 0}
}

/* Compactere leesmaat en minder lege hoogte op alle pagina's. */
.eyebrow::before{display:none;content:none}
.section{padding-block:clamp(42px,4.8vw,76px)}
.section-head{margin-bottom:clamp(22px,3vw,42px)}
h2{font-size:clamp(2.35rem,4.1vw,4.4rem)}
h3{font-size:clamp(1.5rem,2vw,2.3rem)}
.hero,.hero-grid,.hero-copy{min-height:clamp(520px,66svh,650px)}
.hero-copy{padding:clamp(48px,5vw,78px) clamp(24px,5vw,80px)}
.hero h1{max-width:16ch;font-size:clamp(3.3rem,5.1vw,5.7rem);line-height:.95;margin-bottom:1rem}
.hero-lead{font-size:clamp(1rem,1.25vw,1.12rem);margin-bottom:1rem}
.hero-cta{margin-bottom:1rem}
.hero-strip .item{min-height:52px;padding:.75rem clamp(20px,3vw,48px)}
.pillar-media{aspect-ratio:16/9}
.pillar-body{padding:1.15rem;gap:.55rem}
.pillar-body h3{font-size:clamp(1.65rem,2.2vw,2.5rem)}
.pillar-body p{margin-bottom:.7rem}
.split-copy,.topic-body{padding:clamp(28px,3.5vw,58px)}
.split-copy h2{font-size:clamp(2.4rem,3.5vw,4rem)}
.split-media img,.topic-media img{min-height:270px}
.usp{padding:1.1rem;gap:.7rem}
.usp h3{font-size:clamp(1.45rem,1.9vw,2rem)}
.topic{padding-block:clamp(42px,5vw,78px)}
.news-body{padding:1.15rem}
.news-body h3{font-size:clamp(1.65rem,2.2vw,2.5rem)}
.page-hero{padding-block:clamp(40px,4.5vw,72px)}
.page-hero h1{font-size:clamp(2.8rem,5.3vw,5.6rem)}
.contact-info,.contact-grid>.form,.contact-grid>div:not(.map-wrap):not(.contact-info){padding:clamp(24px,3vw,48px)}
@media(max-width:960px){
  .hero,.hero-grid,.hero-copy{min-height:560px}
  .hero-copy{padding:55px 24px}
  .hero h1{font-size:clamp(3.2rem,8vw,5rem)}
}
@media(max-width:640px){
  .section{padding-block:42px}
  h2{font-size:clamp(2.2rem,9vw,3.6rem)}
  .hero,.hero-grid,.hero-copy{min-height:500px}
  .hero h1{font-size:clamp(3rem,10vw,4.3rem)}
  .hero-strip .item{min-height:0}
  .page-hero h1{font-size:clamp(2.7rem,10vw,4.2rem)}
}

/* Kleine originele werkplaatsfoto's blijven op hun eigen formaat. */
.topic-media--small{display:flex;align-items:center;justify-content:center;min-height:230px;background:#d7d8d4}
.topic-media--small img{flex:none;width:285px;max-width:calc(100% - 30px);height:auto;min-height:0;max-height:190px;object-fit:contain}
.topic-media--medium{display:flex;align-items:center;justify-content:center;min-height:400px;background:#d7d8d4}
.topic-media--medium img{flex:none;width:auto;max-width:calc(100% - 30px);height:auto;min-height:0;max-height:480px;object-fit:contain}
.split-media--small{display:flex;align-items:center;justify-content:center;min-height:210px;background:#d7d8d4}
.split-media--small img{flex:none;width:300px;max-width:calc(100% - 30px);height:auto;min-height:0;object-fit:contain}
