/* ============================================================
   VAN WIJK VERHUUR
   Container verhuur en opruim / ontruimservice
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;1,600&family=Public+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root{
  /* Palette gebaseerd op het logo (navy + goud embleem). Variabelenamen
     (bouwgeel/roest/asfalt) zijn historisch en verwijzen niet meer naar hun
     letterlijke betekenis, maar naar hun ROL: bouwgeel = primair accent
     (was geel, nu goud), roest = secundair accent (was roestoranje, nu
     navyblauw), asfalt = donkere achtergrondkleur (was zwart, nu navy). */
  --asfalt: #12253b;
  --asfalt-2: #0c1c2e;
  --inkt: #16283b;
  --beton: #eeece4;
  --beton-wit: #faf8f2;
  --papier: #f3efe4;
  --bouwgeel: #d3a541;
  --bouwgeel-donker: #ad8330;
  --roest: #2c5c8a;
  --roest-donker: #1d4166;
  --lijn: rgba(18,37,59,.14);
  --lijn-donker: rgba(255,255,255,.16);
  --schaduw: 0 18px 40px rgba(12,20,32,.16);

  --f-stencil: 'Playfair Display', serif;
  --f-kop: 'Barlow Condensed', sans-serif;
  --f-body: 'Public Sans', sans-serif;
  --f-data: 'Space Mono', monospace;

  --radius: 4px;
  --wrap: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; width:100%; }
body{
  margin:0;
  width:100%;
  max-width:100vw;
  background: var(--beton);
  color: var(--inkt);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--f-kop); font-weight:700; margin:0 0 .4em; letter-spacing:.01em; }
p{ margin:0 0 1em; }
.wrap{ width:100%; max-width: var(--wrap); margin:0 auto; padding:0 clamp(36px, 6vw, 72px); }

:focus-visible{
  outline: 3px solid var(--roest);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- eyebrow / tag (container-stencil sticker) ---------- */
.tag{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  font-family: var(--f-data);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45em .9em;
  border: 1.5px dashed currentColor;
  border-radius: 2px;
}
.tag--geel{ color: var(--bouwgeel); background:none; border:none; padding:0; }
.tag--licht{ color: var(--beton-wit); border-color: rgba(250,248,242,.55); }
.tag--donker{ color: var(--inkt); border-color: rgba(22,40,59,.4); }

.stencil{
  font-family: var(--f-stencil);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.6em;
  font-family: var(--f-kop);
  font-weight:700;
  font-size: 1.05rem;
  letter-spacing:.02em;
  padding: .8em 1.5em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--bouwgeel);
  color: var(--asfalt);
  border-color: var(--asfalt);
  box-shadow: 4px 4px 0 var(--asfalt);
}
.btn-primary:hover{ box-shadow: 6px 6px 0 var(--asfalt); }
.btn-primary:active{ transform: translateY(0); box-shadow: 2px 2px 0 var(--asfalt); }
.btn-ghost-licht{
  background: transparent;
  color: var(--beton-wit);
  border-color: rgba(250,248,242,.55);
}
.btn-ghost-licht:hover{ background: rgba(250,248,242,.1); border-color: var(--beton-wit); }
.btn-ghost-donker{
  background: transparent;
  color: var(--inkt);
  border-color: var(--inkt);
}
.btn-ghost-donker:hover{ background: var(--inkt); color: var(--beton-wit); }
.btn-block{ width:100%; justify-content:center; }

/* ---------- header ---------- */
/* The frosted background lives on ::before, not on .site-header itself:
   backdrop-filter (like transform) turns its element into the containing
   block for any position:fixed descendant, which would hijack .main-nav's
   fixed positioning on mobile and place it relative to the header instead
   of the viewport. Keeping the filter on a pseudo-element avoids that. */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  border-bottom: 1px solid var(--lijn);
  transition: box-shadow .25s ease;
}
.site-header::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background: rgba(238,236,228,.86);
  backdrop-filter: blur(10px);
}
.site-header.is-scrolled{
  box-shadow: 0 10px 24px rgba(12,20,32,.1);
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 84px;
  gap: 24px;
  padding-left: 24px;
  padding-right: 24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:.6em;
  font-family: var(--f-kop);
  font-weight:800;
  font-size: 1.3rem;
  letter-spacing: .01em;
  white-space:nowrap;
}
.logo img{ height:30px; width:auto; display:block; flex:0 0 auto; }
.logo strong{ color: var(--roest); }
/* Stacked header wordmark: "Van Wijk" big on top, "Ontruiming & Ontzorging"
   small underneath. Scoped to the header only, the footer logo keeps the
   original single-line layout via its own .footer-brand .logo rules. */
.site-header .logo{ align-items:center; }
.logo-text{ display:flex; flex-direction:column; line-height:1.05; }
/* Both lines are sized as a % of .logo's own font-size (set on .logo below,
   including in the mobile media queries), so bumping that one value scales
   "van Wijk" and the subtitle underneath it together. */
.logo-main{ font-size:100%; font-weight:800; white-space:nowrap; }
.logo-sub{
  font-family: var(--f-data);
  font-weight:600;
  font-size:46%;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(22,40,59,.55);
  margin-top:.22em;
}
.main-nav{ display:flex; align-items:center; gap: 30px; }
.main-nav a{
  font-family: var(--f-kop);
  font-weight:600;
  font-size: 1.05rem;
  letter-spacing:.02em;
  position:relative;
  padding: 4px 0;
}
.main-nav a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:-2px;
  height:2px; background: var(--roest);
  transition: right .22s ease;
}
.main-nav a:hover::after, .main-nav a.is-active::after{ right:0; }
.main-nav a.is-active{ color: var(--roest); }
.header-actions{ display:flex; align-items:center; gap:18px; }
.header-phone{
  font-family: var(--f-data);
  font-weight:700;
  font-size: 1rem;
  white-space:nowrap;
}
.nav-toggle{ display:none; }

.nav-cta{ display:none; }

@media (max-width: 900px){
  .main-nav{
    position: fixed; inset: 84px 0 0 0;
    background: var(--beton-wit);
    flex-direction:column;
    align-items:flex-start;
    padding: 32px 28px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav a{ font-size:1.4rem; }
  .main-nav .nav-cta{ display:inline-flex; margin-top: 8px; }
  .header-phone{ display:none; }
  .header-actions .btn-primary{ display:none; }
  .nav-toggle{
    display:flex; flex-direction:column; justify-content:center; gap:5px;
    width:38px; height:34px; background:none; border:none; cursor:pointer;
  }
  .nav-toggle span{ height:2px; background: var(--inkt); border-radius:2px; }
  .logo{ font-size:1.2rem; gap:.4em; }
  .logo img{ height:26px; }
}

@media (max-width: 460px){
  .logo{ font-size:1.05rem; gap:.35em; }
  .logo img{ height:22px; }
  .logo-sub{ letter-spacing:.06em; }
}

@media (max-width: 340px){
  .logo{ font-size:.95rem; white-space:normal; line-height:1.2; }
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  min-height: clamp(560px, 92vh, 860px);
  display:flex;
  align-items:flex-end;
  color: var(--beton-wit);
  overflow:hidden;
  background: var(--asfalt);
}
.hero-media{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns{ from{ transform:scale(1);} to{ transform:scale(1.08);} }
.hero::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(18,37,59,.35) 0%, rgba(18,37,59,.55) 55%, rgba(18,37,59,.94) 100%);
  z-index:1;
}
.hero-content{
  position:relative; z-index:2;
  padding-top: 150px;
  padding-bottom: 72px;
  width:100%;
}

.hero .tag{ opacity:0; animation: op-in .7s ease .1s forwards; }
.hero h1{
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.02;
  margin: .4em 0 .3em;
  color: var(--beton-wit);
  opacity:0; animation: rise-in .8s ease .25s forwards;
}
.hero h1 em{ font-style:normal; color: var(--bouwgeel); }
.hero-lead{
  max-width: 620px;
  font-size: 1.18rem;
  color: rgba(250,248,242,.86);
  opacity:0; animation: rise-in .8s ease .4s forwards;
}
.hero-ctas{
  display:flex; flex-wrap:wrap; gap: 16px;
  margin-top: 22px;
  opacity:0; animation: rise-in .8s ease .55s forwards;
}
@keyframes rise-in{ from{ opacity:0; transform: translateY(18px);} to{ opacity:1; transform:translateY(0);} }
@keyframes op-in{ from{opacity:0;} to{opacity:1;} }

@media (max-width: 700px){
  .hero{ min-height: 0; }
  .hero-content{ padding-top: 100px; padding-bottom: 32px; }
  .hero .tag{ font-size:.7rem; padding:.35em .7em; }
  .hero h1{ font-size: clamp(1.9rem, 8vw, 2.5rem); margin: .35em 0 .22em; }
  .hero-lead{ font-size: 1rem; }
  .hero-ctas{ margin-top:16px; gap:12px; }
}

.hero-stats{
  position:relative; z-index:2;
  display:flex; flex-wrap:wrap;
  border-top: 1px solid rgba(250,248,242,.2);
  margin-top: 56px;
}
.hero-stats div{
  flex:1 1 150px;
  padding: 20px 28px 0;
  font-family: var(--f-data);
}
@media (max-width: 480px){
  .hero-stats div{ flex-basis: 46%; }
}
.hero-stats b{
  display:block;
  font-family: var(--f-stencil);
  font-size: 1.9rem;
  color: var(--bouwgeel);
  line-height:1;
  margin-bottom:.3em;
}
.hero-stats span{ font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; color: rgba(250,248,242,.7); }

/* ---------- generic section rhythm ---------- */
.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }
.section-dark{ background: var(--asfalt); color: var(--beton-wit); }
.section-donker-2{ background: var(--asfalt-2); color: var(--beton-wit); }
.section-papier{ background: var(--papier); }
.section-wit{ background: var(--beton-wit); }
.section-head{ max-width: 720px; margin-bottom: 52px; }
.section-head h2{ font-size: clamp(2rem, 3.6vw, 3rem); line-height:1.05; }
.section-dark .section-head h2, .section-donker-2 .section-head h2{ color: var(--beton-wit); }
.section-head .tag{ margin-bottom: 18px; }
.section-head p{ font-size: 1.08rem; color: rgba(22,40,59,.72); max-width: 60ch; }
.section-dark .section-head p, .section-donker-2 .section-head p{ color: rgba(250,248,242,.72); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- USP strip ---------- */
.usp-strip{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--lijn);
  border-bottom: 1px solid var(--lijn);
}
.usp-strip div{
  padding: 26px 24px;
  border-left: 1px solid var(--lijn);
  display:flex; align-items:flex-start; gap:14px;
}
.usp-strip div:first-child{ border-left:none; }
.usp-strip .usp-num{
  font-family: var(--f-data); font-weight:700; color: var(--roest); font-size:.95rem;
}
.usp-strip strong{ display:block; font-family: var(--f-kop); font-weight:700; font-size:1.08rem; margin-bottom:2px; }
.usp-strip small{ color: rgba(22,40,59,.65); font-size: .9rem; }

@media (max-width: 900px){
  .usp-strip{ grid-template-columns: repeat(2,1fr); }
  .usp-strip div{ border-left:none; border-top:1px solid var(--lijn); }
  .usp-strip div:nth-child(odd){ border-right:1px solid var(--lijn); }
}

@media (max-width: 560px){
  .usp-strip{ grid-template-columns: 1fr; }
  .usp-strip div,
  .usp-strip div:nth-child(odd){
    border-right:none;
    border-left:none;
    border-top:1px solid var(--lijn);
  }
  .usp-strip div:first-child{ border-top:none; }
}

/* ---------- twee wegen (lanes) ---------- */
.lanes{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.lane{
  position:relative;
  background: var(--beton-wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--schaduw);
  display:flex; flex-direction:column;
}
.lane-media{ aspect-ratio: 16/10; background-size:cover; background-position:center; position:relative; }
.lane-media::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(18,37,59,.75)); }
.lane-media .lane-label{
  position:absolute; left:20px; bottom:16px; z-index:2;
  font-family: var(--f-stencil); color: var(--beton-wit); font-size:1.2rem;
}
.lane-body{ padding: 28px 30px 32px; display:flex; flex-direction:column; gap:14px; flex:1; }
.lane-body h3{ font-size: 1.7rem; }
.lane-body ul{ display:flex; flex-direction:column; gap:8px; margin-bottom:6px; }
.lane-body li{
  font-size:.98rem;
  padding-left: 1.4em;
  position:relative;
  color: rgba(22,40,59,.8);
}
.lane-body li::before{
  content:"›"; position:absolute; left:0; color: var(--roest); font-weight:700;
}
.lane-body .btn{ align-self:flex-start; margin-top:auto; }
.lane--geel .lane-body{ border-top: 4px solid var(--bouwgeel); }
.lane--roest .lane-body{ border-top: 4px solid var(--roest); }

@media (max-width: 820px){
  .lanes{ grid-template-columns: 1fr; }
}

/* ---------- voor / na compare ---------- */
.compare{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--schaduw);
}
.compare figure{
  margin:0; position:relative; aspect-ratio: 4/5; background-size:cover; background-position:center;
}
.compare figcaption{
  position:absolute; top:14px; left:14px;
  font-family: var(--f-data); font-size:.75rem; letter-spacing:.1em; text-transform:uppercase;
  background: var(--asfalt); color: var(--beton-wit); padding: .4em .8em; border-radius:2px;
}
.compare figure.na figcaption{ background: var(--bouwgeel); color:var(--asfalt); }
.split{
  display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center;
}
.split-text .lijst{ display:flex; flex-direction:column; gap:14px; margin: 24px 0 30px; }
.split-text .lijst li{ display:flex; gap:12px; align-items:flex-start; font-size:1.02rem; }
.split-text .lijst b{
  font-family: var(--f-data); color: var(--roest); flex:0 0 auto; font-size:.85rem; margin-top:.3em;
}
@media (max-width: 900px){
  .split{ grid-template-columns:1fr; gap:32px; }
  .compare{ grid-template-columns:1fr 1fr; }
}

/* ---------- ticket / weegbon component (signature) ---------- */
.ticket{
  position:relative;
  background: var(--beton-wit);
  border: 1px solid var(--lijn);
  border-radius: 3px;
  padding: 26px 26px 22px;
  box-shadow: var(--schaduw);
}
.ticket::before{
  content:"";
  position:absolute; left:0; right:0; top:0; height:0;
  border-top: 2px dashed rgba(22,40,59,.28);
  top: 50%;
  display:none;
}
.ticket-perf{
  position:absolute; left:-10px; right:-10px; height:0;
  border-top: 2px dashed rgba(22,40,59,.28);
}
.ticket-head{
  display:flex; justify-content:space-between; align-items:flex-start;
  font-family: var(--f-data);
  font-size:.78rem; letter-spacing:.06em; text-transform:uppercase;
  color: rgba(22,40,59,.55);
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 2px dashed rgba(22,40,59,.28);
}
.ticket-head span:last-child{ color: var(--roest); font-weight:700; }
.ticket h3{ font-size: 1.35rem; margin-bottom:.3em; }
.ticket .prijs{
  font-family: var(--f-stencil);
  font-size: 2.3rem;
  color: var(--asfalt);
  margin: 6px 0 4px;
}
.ticket .prijs small{ font-family: var(--f-data); font-size:.9rem; color: rgba(22,40,59,.55); }
.ticket-rows{ display:flex; flex-direction:column; gap:8px; margin: 16px 0 20px; font-family: var(--f-data); font-size:.92rem; }
.ticket-rows div{ display:flex; justify-content:space-between; border-bottom:1px dotted rgba(22,40,59,.25); padding-bottom:6px; }
.ticket-rows span:last-child{ font-weight:700; }
.ticket-notch{
  position:absolute; width:20px; height:20px; background: var(--beton);
  border-radius:50%; top:50%; transform:translateY(-50%);
}
.ticket-notch.links{ left:-10px; }
.ticket-notch.rechts{ right:-10px; }
.ticket--geel{ border-top: 5px solid var(--bouwgeel); }
.ticket--donker{ background: var(--asfalt-2); color: var(--beton-wit); border-color: rgba(250,248,242,.14); }
.ticket--donker .ticket-head{ color: rgba(250,248,242,.55); border-color: rgba(250,248,242,.28); }
.ticket--donker .ticket-rows div{ border-color: rgba(250,248,242,.2); }
.ticket--donker .prijs{ color: var(--beton-wit); }
.ticket--donker .ticket-notch{ background: var(--asfalt); }

.tickets-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 940px){
  .tickets-grid{ grid-template-columns: 1fr; max-width:460px; margin:0 auto; }
}

/* ---------- proces / stappen ---------- */
.stappen{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 0;
  counter-reset: stap;
}
.stap{
  position:relative;
  padding: 0 22px 0 0;
  border-right: 2px dashed var(--lijn-donker);
}
.stap:last-child{ border-right:none; }
.stap-nr{
  font-family: var(--f-stencil);
  font-size: 2.4rem;
  color: var(--bouwgeel);
  line-height:1;
}
.stap h4{ color: var(--beton-wit); font-size:1.15rem; margin: 14px 0 8px; }
.stap p{ color: rgba(250,248,242,.68); font-size:.94rem; }
@media (max-width: 900px){
  .stappen{ grid-template-columns: 1fr; }
  .stap{ border-right:none; border-bottom: 2px dashed var(--lijn-donker); padding: 0 0 24px; margin-bottom:24px; }
}

/* ---------- galerij ---------- */
.galerij{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 8px;
}
.galerij a{
  position:relative;
  overflow:hidden;
  border-radius:2px;
  display:block;
}
.galerij img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s ease, filter .5s ease;
  filter: saturate(.92);
}
.galerij a:hover img{ transform: scale(1.08); filter:saturate(1.1); }
.galerij a.big{ grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px){
  .galerij{ grid-template-columns: repeat(3,1fr); grid-auto-rows: 110px; }
  .galerij a.big{ grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 560px){
  .galerij{ grid-template-columns: repeat(2,1fr); }
  .galerij a.big{ grid-column: span 2; grid-row: span 1; }
}

/* ---------- cta band ---------- */
.cta-band{
  background: var(--roest);
  color: var(--beton-wit);
  position:relative;
  overflow:hidden;
}
.cta-band .wrap{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding: 54px 28px;
  flex-wrap:wrap;
}
.cta-band h2{ font-size: clamp(1.7rem,3vw,2.4rem); color:var(--beton-wit); margin:0; }
.cta-band p{ color: rgba(250,248,242,.85); margin:.3em 0 0; }

/* ---------- footer ---------- */
.site-footer{ background: var(--asfalt); color: rgba(250,248,242,.75); padding: 64px 0 28px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,248,242,.14);
}
.footer-grid h4{ color: var(--beton-wit); font-size:1.05rem; margin-bottom: 16px; }
.footer-grid ul{ display:flex; flex-direction:column; gap:10px; font-size:.95rem; }
.footer-grid a:hover{ color: var(--bouwgeel); }
.footer-brand .logo{ color: var(--beton-wit); margin-bottom: 12px; white-space: normal; line-height:1.15; font-size: 1rem; gap:.4em; }
.footer-brand .logo img{ height: 24px; }
.footer-brand p{ font-size:.94rem; max-width:34ch; }
.footer-socials{ display:flex; gap:12px; margin-top:14px; }
.footer-socials a{
  width:36px; height:36px; border:1px solid rgba(250,248,242,.3); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-family:var(--f-data); font-size:.8rem;
}
.footer-socials a:hover{ border-color: var(--bouwgeel); color:var(--bouwgeel); }
.footer-bottom{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  padding-top: 22px; font-family: var(--f-data); font-size:.78rem; color: rgba(250,248,242,.5);
}
.footer-bottom a{ text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover{ color: var(--bouwgeel); }
@media (max-width: 820px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------- terug naar boven ---------- */
.naar-boven{
  position:fixed; right:22px; bottom:22px; z-index:90;
  width:48px; height:48px; border-radius:50%;
  background: var(--asfalt); color: var(--bouwgeel);
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(250,248,242,.2);
  font-size:1.2rem;
  opacity:0; pointer-events:none; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.naar-boven.is-visible{ opacity:1; pointer-events:auto; transform:translateY(0); }

/* ---------- scroll reveal ----------
   Elements are visible by default (progressive enhancement). Only once JS
   confirms it can observe them does it add .js-armed, which switches on the
   hidden starting state; .is-visible then fades them in. This way a slow or
   failed script never leaves content permanently invisible. */
.reveal.js-armed{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.js-armed.is-visible{ opacity:1; transform:none; }
.reveal-item.js-armed{ opacity:0; filter: blur(6px); transition: opacity .6s ease, filter .6s ease; }
.reveal-item.js-armed.is-visible{ opacity:1; filter:blur(0); }

/* ---------- pagina-hero (subpaginas) ---------- */
.page-hero{
  position:relative;
  background: var(--asfalt);
  color: var(--beton-wit);
  padding: 128px 0 48px;
  overflow:hidden;
}
.page-hero h1{ font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin: .4em 0 .3em; }
.page-hero .breadcrumb{
  font-family: var(--f-data); font-size:.82rem; color: rgba(250,248,242,.55);
  letter-spacing:.06em; text-transform:uppercase; margin-bottom: 18px;
}
.page-hero .breadcrumb a:hover{ color: var(--bouwgeel); }
.page-hero p{ max-width:60ch; color: rgba(250,248,242,.78); font-size:1.08rem; }

/* ---------- tabel containers (weegbon-stijl) ---------- */
.tabel-wrap{ overflow-x:auto; border-radius: var(--radius); box-shadow: var(--schaduw); }
table.weegbon{
  width:100%; border-collapse:collapse; background: var(--beton-wit);
  font-family: var(--f-body);
  min-width: 640px;
}
table.weegbon th, table.weegbon td{ padding: 16px 20px; text-align:left; border-bottom: 1px solid var(--lijn); }
table.weegbon thead th{
  background: var(--asfalt); color: var(--beton-wit);
  font-family: var(--f-data); font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; font-weight:700;
}
table.weegbon tbody tr:hover{ background: var(--papier); }
table.weegbon td.prijs-cel{ font-family: var(--f-data); font-weight:700; color: var(--roest); white-space:nowrap; }
table.weegbon td strong{ font-family:var(--f-kop); font-size:1.05rem; }

/* ---------- feature rows (diensten pagina's) ---------- */
.feature-row{
  display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center;
  padding: 52px 0;
}
.feature-row + .feature-row{ border-top: 1px solid var(--lijn); }
.feature-row:nth-child(even){ direction:rtl; }
.feature-row:nth-child(even) > *{ direction:ltr; }
.feature-media{ aspect-ratio: 4/3; background-size:cover; background-position:center; border-radius: var(--radius); box-shadow: var(--schaduw); }
.feature-text .lijst{ display:flex; flex-direction:column; gap:12px; margin: 20px 0 26px; }
.feature-text .lijst li{ display:flex; gap:10px; font-size:1rem; }
.feature-text .lijst li::before{ content:"✓"; color: var(--roest); font-weight:700; }
@media (max-width: 900px){
  .feature-row{ grid-template-columns:1fr; padding: 40px 0; direction:ltr !important; }
  .feature-row > *{ direction:ltr !important; }
}

/* ---------- doelgroepen (particulier/bedrijf tabs-achtig) ---------- */
.doelgroepen{ display:grid; grid-template-columns:1fr 1fr; gap: 28px; }
.doelgroep{ background: var(--beton-wit); border:1px solid var(--lijn); border-radius: var(--radius); padding: 32px; box-shadow: var(--schaduw); }
.doelgroep h3{ font-size:1.5rem; }
.doelgroep .tag{ margin-bottom:16px; }
.doelgroep ul{ display:flex; flex-direction:column; gap:10px; margin-top:16px; }
.doelgroep li{ font-size:.98rem; padding-left:1.3em; position:relative; color: rgba(22,40,59,.78); }
.doelgroep li::before{ content:"—"; position:absolute; left:0; color: var(--roest); }
@media (max-width: 820px){ .doelgroepen{ grid-template-columns:1fr; } }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom: 1px solid var(--lijn); }
.section-donker-2 .faq-item, .section-dark .faq-item{ border-bottom-color: rgba(255,255,255,.16); }
.faq-item summary{
  cursor:pointer; list-style:none; padding: 22px 0;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  font-family: var(--f-kop); font-weight:700; font-size:1.15rem;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-family: var(--f-stencil); font-size:1.6rem; color: var(--bouwgeel); flex:0 0 auto; transition: transform .25s ease; }
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item .faq-a{ padding: 0 0 24px; max-width: 68ch; color: rgba(250,248,242,.78); }

/* ---------- over ons ---------- */
.waarden{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.waarde{ padding: 26px 0 0; border-top: 3px solid var(--bouwgeel); }
.waarde h4{ font-size:1.2rem; }
@media (max-width: 820px){ .waarden{ grid-template-columns:1fr; } }

.team-media{ display:grid; grid-template-columns: 1.3fr 1fr; gap: 12px; }
.team-media img{ border-radius: var(--radius); box-shadow: var(--schaduw); height:100%; object-fit:cover; }
.team-media .col{ display:flex; flex-direction:column; gap:12px; }
@media (max-width: 760px){ .team-media{ grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:start; }
@media (max-width: 860px){
  .contact-grid{ grid-template-columns: 1fr; }
}
.contact-info .item{ display:flex; gap:14px; padding: 18px 0; border-bottom: 1px solid var(--lijn); }
.contact-info .item b{ display:block; font-family: var(--f-kop); font-size:1.05rem; }
.contact-info .item span{ font-family: var(--f-data); font-size:.92rem; color: rgba(22,40,59,.68); }

.form-grid{ display:flex; flex-direction:column; gap: 18px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-grid label{ display:flex; flex-direction:column; gap:6px; font-family: var(--f-kop); font-weight:600; font-size:.98rem; }
.form-grid input, .form-grid select, .form-grid textarea{
  font-family: var(--f-body); font-size:1rem;
  padding: 12px 14px; border:1.5px solid var(--lijn); border-radius: 3px; background: var(--beton-wit);
  color: var(--inkt);
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus{ border-color: var(--roest); outline:none; }
.form-grid textarea{ resize: vertical; min-height:120px; }
@media (max-width: 640px){ .form-row{ grid-template-columns:1fr; } }
.form-confirm{
  display:none;
  background: var(--papier); border:1.5px dashed var(--roest); border-radius: var(--radius);
  padding: 22px 24px; font-family: var(--f-data); font-size:.95rem;
}
.form-confirm.is-visible{ display:block; }

.contact-media{ aspect-ratio: 4/3; background-size:cover; background-position:center; border-radius: var(--radius); box-shadow: var(--schaduw); margin-bottom: 26px; }

/* ---------- utility ---------- */
.center{ text-align:center; }
.mt-0{ margin-top:0; }
