/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --blue: #1c4e8f;
  --blue-deep: #163d70;
  --blue-bright: #2a72c4;
  --red: #a72633;
  --red-bright: #c8313f;
  --ink: #191c22;
  --paper: #f6f5f1;
  --mist: #ecebe5;
  --line: #dcdbd3;
  --muted: #5d6066;
  --white: #ffffff;
  --shadow: 0 18px 50px -22px rgba(22,38,62,.45);
  --shadow-sm: 0 8px 26px -14px rgba(22,38,62,.4);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Figtree', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', sans-serif; line-height: 1.08; font-weight: 700; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 26px; }

/* ===== EYEBROW ===== */
.eyebrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); display: flex; align-items: center; gap: 11px;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--red); display: inline-block; border-radius: 2px; }
.eyebrow.light { color: #9fc2ec; }
.eyebrow.light::before { background: var(--red-bright); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 15px;
  padding: 15px 28px; border-radius: 3px; cursor: pointer; border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  letter-spacing: .01em;
}
.btn svg { width: 17px; height: 17px; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 12px 26px -12px rgba(167,38,51,.7); }
.btn-red:hover { background: var(--red-bright); transform: translateY(-3px); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-3px); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); padding: 13px 26px; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-3px); color: #fff; }
.btn-out { background: transparent; color: var(--blue); border: 2px solid var(--blue); padding: 13px 26px; }
.btn-out:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.btn-wa { background: #1faf54; color: #fff; }
.btn-wa:hover { background: #179247; transform: translateY(-3px); color: #fff; }

/* ===== TOPBAR ===== */
.topbar { background: var(--ink); color: #cdd1d8; font-size: 13.5px; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 42px; gap: 18px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .15s; color: #cdd1d8; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; color: var(--blue-bright); }
.tb-left { display: flex; gap: 24px; }
.tb-right { display: flex; gap: 8px; align-items: center; letter-spacing: .04em; color: #8b9099; }
.tb-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red-bright); display: inline-block; }

/* ===== HEADER ===== */
header {
  background: rgba(255,255,255,.97); position: sticky; top: 0; z-index: 90;
  border-bottom: 1px solid var(--line); backdrop-filter: blur(8px);
  transition: box-shadow .25s;
}
header.scrolled { box-shadow: 0 10px 30px -20px rgba(0,0,0,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 52px; width: auto; }
.brand .bt { font-family: 'Bricolage Grotesque', sans-serif; line-height: 1.05; }
.brand .bt b { display: block; font-weight: 800; font-size: 16.5px; letter-spacing: -.02em; color: var(--ink); }
.brand .bt span { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.menu { display: flex; align-items: center; gap: 5px; }
.menu a.nl {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 15px;
  padding: 10px 15px; border-radius: 3px; color: #33373f; transition: color .15s, background .15s;
}
.menu a.nl:hover { color: var(--blue); }
.menu .btn { margin-left: 14px; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--ink); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(20,30,46,.93) 0%, rgba(20,30,46,.78) 42%, rgba(20,30,46,.30) 100%); }
.hero .wrap { position: relative; z-index: 2; padding-top: 108px; padding-bottom: 160px; }
.hero-card { max-width: 660px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 800; margin: 22px 0 20px; color: #fff; }
.hero h1 em { font-style: normal; color: #7fb3ea; white-space: nowrap; }
.hero p.lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: #dfe3ea; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 54px; flex-wrap: wrap; }
.hero-stats .st { border-left: 3px solid var(--red-bright); padding-left: 15px; }
.hero-stats .st b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.2rem; font-weight: 800; color: #fff; display: block; }
.hero-stats .st span { font-size: 13.5px; color: #aab2c0; letter-spacing: .03em; }

/* Reveal animations */
.reveal-up { opacity: 0; transform: translateY(26px); animation: revealUp .9s cubic-bezier(.2,.7,.2,1) forwards; }
.d1 { animation-delay: .15s; }
.d2 { animation-delay: .3s; }
.d3 { animation-delay: .45s; }
.d4 { animation-delay: .6s; }
@keyframes revealUp { to { opacity: 1; transform: none; } }

/* ===== WAVE ===== */
.wave { display: block; width: 100%; height: auto; line-height: 0; }

/* ===== BAND ===== */
.band { background: var(--blue); color: #fff; position: relative; }
.band .wrap { padding: 14px 26px 64px; display: flex; gap: 46px; align-items: center; flex-wrap: wrap; }
.band-text { flex: 1; min-width: 280px; }
.band-text h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); color: #fff; margin: 14px 0 12px; }
.band-text p { color: #cfddf0; max-width: 620px; }
.band-aside { display: flex; flex-direction: column; gap: 14px; }
.band-chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 5px; padding: 16px 20px; display: flex; gap: 13px; align-items: center; min-width: 280px;
}
.band-chip .ic { width: 42px; height: 42px; flex: none; background: var(--red); border-radius: 5px; display: grid; place-items: center; }
.band-chip .ic svg { width: 21px; height: 21px; color: #fff; }
.band-chip b { font-family: 'Bricolage Grotesque', sans-serif; display: block; font-size: 15.5px; }
.band-chip span { font-size: 13px; color: #bcccdf; }

/* ===== SECTION BASE ===== */
section.pad { padding: 96px 0; }
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 16px 0 14px; }
.sec-head p { color: var(--muted); font-size: 1.04rem; }
.center { margin-left: auto; margin-right: auto; text-align: center; }
.center .eyebrow { justify-content: center; }

/* ===== SERVICES ===== */
#diensten { background: var(--paper); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .22s, box-shadow .22s; position: relative;
}
.svc:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.svc-img { position: relative; height: 208px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc:hover .svc-img img { transform: scale(1.08); }
.svc-num {
  position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 14px;
  width: 34px; height: 34px; border-radius: 4px; display: grid; place-items: center;
}
.svc-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { font-size: 1.28rem; margin-bottom: 9px; }
.svc-body p { color: var(--muted); font-size: .97rem; flex: 1; }
.svc-tag { margin-top: 16px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--blue); display: flex; align-items: center; gap: 7px; }
.svc-tag svg { width: 15px; height: 15px; transition: transform .2s; }
.svc:hover .svc-tag svg { transform: translateX(4px); }
.svc-strip { height: 4px; background: linear-gradient(90deg, var(--blue), var(--red)); }

/* ===== PROJECTS ===== */
#projecten { background: var(--mist); }
.gal { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 16px; }
.gi { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; background: #222; }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gi:hover img { transform: scale(1.09); }
.gi::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,30,46,.82), rgba(20,30,46,0) 55%);
  opacity: .55; transition: opacity .25s;
}
.gi:hover::after { opacity: .95; }
.gi .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px; color: #fff; transform: translateY(8px); opacity: .9; transition: transform .25s, opacity .25s; z-index: 2; }
.gi:hover .cap { transform: none; opacity: 1; }
.gi .cap b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.05rem; font-weight: 700; display: block; }
.gi .cap span { font-size: 12.5px; color: #bcc6d4; letter-spacing: .04em; text-transform: uppercase; }
.gi .zoom { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); display: grid; place-items: center; z-index: 2; opacity: 0; transform: scale(.7); transition: .25s; }
.gi:hover .zoom { opacity: 1; transform: scale(1); }
.gi .zoom svg { width: 17px; height: 17px; color: #fff; }
.gi.big { grid-column: span 2; grid-row: span 2; }
.gi.wide { grid-column: span 2; }

/* ===== ABOUT ===== */
#over { background: var(--paper); position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); margin: 16px 0 18px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.sig { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--blue); margin-top: 8px; }
.sig small { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.about-photo { position: relative; }
.about-photo img { border-radius: 6px; box-shadow: var(--shadow); width: 100%; height: 520px; object-fit: cover; }
.about-badge { position: absolute; bottom: -26px; left: -26px; background: var(--red); color: #fff; border-radius: 6px; padding: 22px 26px; box-shadow: var(--shadow); max-width: 220px; }
.about-badge b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.6rem; font-weight: 800; display: block; line-height: 1; }
.about-badge span { font-size: 13.5px; color: #ffd9dc; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 78px; }
.val { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 30px 26px; border-top: 4px solid var(--blue); transition: transform .2s, box-shadow .2s; }
.val:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.val:nth-child(2) { border-top-color: var(--red); }
.val .vic { width: 50px; height: 50px; border-radius: 6px; background: var(--mist); display: grid; place-items: center; margin-bottom: 16px; }
.val .vic svg { width: 25px; height: 25px; color: var(--blue); }
.val:nth-child(2) .vic svg { color: var(--red); }
.val h3 { font-size: 1.2rem; margin-bottom: 9px; }
.val p { color: var(--muted); font-size: .96rem; }

/* ===== REVIEWS ===== */
#reviews { background: var(--blue-deep); color: #fff; position: relative; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rev { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); border-radius: 6px; padding: 30px 28px; position: relative; }
.rev .stars { display: flex; gap: 3px; margin-bottom: 14px; }
.rev .stars svg { width: 18px; height: 18px; color: #f5b53d; }
.rev p { color: #d3dcea; font-size: .98rem; margin-bottom: 20px; font-style: italic; }
.rev .who { display: flex; align-items: center; gap: 12px; }
.rev .av { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; flex-shrink: 0; }
.rev .who b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; display: block; }
.rev .who span { font-size: 12.5px; color: #9fb0c6; }
.rev .quo { position: absolute; top: 18px; right: 24px; font-family: 'Bricolage Grotesque', sans-serif; font-size: 4.4rem; line-height: 1; color: rgba(255,255,255,.09); font-weight: 800; }
.rev-note { margin-top: 30px; text-align: center; font-size: 13.5px; color: #9fb0c6; }

/* Google review CTA (shown when no shortcode is set) */
.rev-google-cta { display: flex; justify-content: center; margin-top: 8px; }
.rev-google-cta-inner {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  padding: 56px 48px;
  text-align: center;
  max-width: 540px;
  width: 100%;
}
.rev-google-stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 24px; }
.rev-google-stars svg { width: 28px; height: 28px; fill: #f5b53d; }
.rev-google-cta-inner h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: #fff; margin-bottom: 14px; }
.rev-google-cta-inner p { color: rgba(255,255,255,.65); font-size: 15.5px; line-height: 1.7; margin-bottom: 36px; max-width: 420px; margin-left: auto; margin-right: auto; }
.btn-google-review {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #1a1a2e;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 6px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.btn-google-review svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-google-review:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.35); color: #1a1a2e; }

/* ===== CONTACT ===== */
#contact { background: var(--paper); }
.ct-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 54px; }
.ct-info h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin: 16px 0 14px; }
.ct-info > p { color: var(--muted); margin-bottom: 28px; }
.ct-row { display: flex; gap: 15px; align-items: flex-start; padding: 17px 0; border-bottom: 1px solid var(--line); }
.ct-row:last-of-type { border-bottom: none; }
.ct-row .cic { width: 46px; height: 46px; flex: none; border-radius: 6px; background: var(--blue); display: grid; place-items: center; }
.ct-row .cic svg { width: 21px; height: 21px; color: #fff; }
.ct-row .ci-t { font-size: 12px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 700; font-family: 'Bricolage Grotesque', sans-serif; }
.ct-row .ci-v { font-size: 1.07rem; font-weight: 600; color: var(--ink); }
.ct-row .ci-v.sm { font-size: .92rem; font-weight: 500; color: var(--muted); }
.ct-cta { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.form { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 38px 36px; box-shadow: var(--shadow-sm); }
.form h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form .fsub { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.fg { margin-bottom: 16px; }
.fg label { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 13.5px; display: block; margin-bottom: 6px; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 13px 15px; border: 1.6px solid var(--line); border-radius: 5px;
  font-family: 'Figtree', sans-serif; font-size: 15px; background: var(--paper); transition: border .15s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { outline: none; border-color: var(--blue); }
.fg textarea { resize: vertical; min-height: 108px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.fnote { font-size: 12.5px; color: var(--muted); margin-top: 12px; text-align: center; }

/* ===== FOOTER ===== */
footer { background: var(--ink); color: #aeb4bf; padding: 64px 0 0; }
.ft-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 46px; padding-bottom: 50px; }
.ft-brand .logo-chip { background: #fff; border-radius: 6px; padding: 12px 14px; display: inline-block; margin-bottom: 18px; }
.ft-brand .logo-chip img { height: 46px; }
.ft-brand p { font-size: .95rem; max-width: 330px; }
.ft-soc { display: flex; gap: 10px; margin-top: 18px; }
.ft-soc a { width: 38px; height: 38px; border-radius: 5px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: .18s; }
.ft-soc a:hover { background: var(--red); }
.ft-soc svg { width: 17px; height: 17px; color: #fff; }
footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; letter-spacing: -.01em; }
.ft-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-list a, .ft-list li { font-size: .95rem; transition: color .15s; }
.ft-list a:hover { color: #fff; }
.ft-list li { display: flex; gap: 9px; align-items: flex-start; }
.ft-list svg { width: 16px; height: 16px; color: var(--blue-bright); flex: none; margin-top: 3px; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: #7b818c; }
.ft-bottom a:hover { color: #fff; }

/* ===== LIGHTBOX ===== */
.lb { position: fixed; inset: 0; background: rgba(15,20,30,.94); z-index: 200; display: none; align-items: center; justify-content: center; padding: 30px; }
.lb.on { display: flex; }
.lb img { max-width: 92vw; max-height: 86vh; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); border: none; cursor: pointer; display: grid; place-items: center; }
.lb-close svg { width: 22px; height: 22px; color: #fff; }
.lb-cap { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; color: #fff; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; }

/* ===== SCROLL REVEAL ===== */
.sr { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.sr.in { opacity: 1; transform: none; }
.sr.dly1 { transition-delay: .1s; }
.sr.dly2 { transition-delay: .2s; }
.sr.dly3 { transition-delay: .3s; }
.sr.dly4 { transition-delay: .4s; }
.sr.dly5 { transition-delay: .5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .gal { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gi.big { grid-column: span 2; grid-row: span 1; }
  .about-grid, .ct-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo img { height: 400px; }
  .values { grid-template-columns: 1fr; margin-top: 54px; }
  .rev-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .tb-right { display: none; }
  .tb-left { gap: 16px; font-size: 12.5px; }
  .menu {
    position: fixed; top: 84px; left: 0; right: 0; background: #fff; flex-direction: column;
    align-items: stretch; padding: 14px 20px 22px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,.4); transform: translateY(-130%);
    transition: transform .3s; height: auto; z-index: 89;
  }
  .menu.open { transform: none; }
  .menu a.nl { padding: 13px 12px; border-bottom: 1px solid var(--mist); }
  .menu .btn { margin: 10px 0 0; justify-content: center; }
  .burger { display: block; }
  section.pad { padding: 66px 0; }
  .hero .wrap { padding-top: 64px; padding-bottom: 96px; }
  .svc-grid { grid-template-columns: 1fr; }
  .gal { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gi.big { grid-column: span 1; }
  .frow { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .about-badge { left: 0; bottom: -20px; padding: 18px 20px; }
  .form { padding: 30px 22px; }
  .hero-stats { gap: 22px; }
  .av-card { padding: 32px 24px; }
  .av-card h2 { font-size: 1rem; }
}

/* ===== ALGEMENE VOORWAARDEN ===== */
.av-banner {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: #fff;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.av-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.av-banner .wrap { position: relative; z-index: 1; }
.av-banner .eyebrow { color: #9fc2ec; margin-bottom: 16px; }
.av-banner .eyebrow::before { background: var(--red-bright); }
.av-banner h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -.03em;
}

.av-body {
  background: var(--paper);
  padding: 60px 0 100px;
}

.av-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 32px;
  transition: gap .2s, color .2s;
  letter-spacing: .01em;
}
.av-back:hover { color: var(--red); gap: 12px; }
.av-back svg { width: 16px; height: 16px; flex-shrink: 0; }

.av-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 56px 64px;
  box-shadow: var(--shadow-sm);
  max-width: 860px;
  margin: 0 auto;
}

/* Article headings converted from <strong>Artikel N:</strong> */
.av-content h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin: 40px 0 14px;
  padding: 12px 16px;
  background: var(--mist);
  border-left: 4px solid var(--blue);
  border-radius: 0 4px 4px 0;
  letter-spacing: -.01em;
}
.av-content h2:first-child { margin-top: 0; }

.av-content p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Highlight the article number at start of each paragraph */
.av-content p:not(:empty) {
  padding-left: 0;
}

.av-content strong {
  color: var(--ink);
  font-weight: 600;
}

.av-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.av-content a:hover { color: var(--red); }
