/* ==========================================================================
   Lettertypes — in de site zelf, niet bij Google.
   Zo laadt de site niets van externe servers en gaat er geen bezoeker-IP
   naar een derde partij. Bestanden staan in assets/fonts/.
   Outfit & Inter, SIL Open Font License 1.1.
   ========================================================================== */
@font-face{font-family:'Outfit';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/outfit-latin-400-normal.woff2') format('woff2')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/outfit-latin-500-normal.woff2') format('woff2')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/outfit-latin-600-normal.woff2') format('woff2')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/outfit-latin-700-normal.woff2') format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/inter-latin-400-normal.woff2') format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/inter-latin-500-normal.woff2') format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/inter-latin-600-normal.woff2') format('woff2')}

/* ==========================================================================
   Henk's Schilderwerk — stylesheet
   Palet: wit + blauw. Fris, ruim, warm.
   ========================================================================== */

:root {
  /* Blauw */
  --ink:        #0A1F33;
  --ink-soft:   #40566B;
  --navy:       #0B2E52;
  --blue:       #0B6FC4;
  --blue-dark:  #085399;
  --blue-light: #2E8BE0;
  --sky:        #2FA9E8;
  --blue-100:   #DCEAFC;
  --blue-50:    #F1F7FE;

  /* Wit / neutraal */
  --white:      #FFFFFF;
  --paper:      #FBFCFE;
  --line:       #E4ECF6;

  --radius:     18px;
  --radius-lg:  28px;
  --radius-sm:  10px;

  --shadow-sm:  0 1px 2px rgba(11,46,82,.06), 0 2px 8px rgba(11,46,82,.05);
  --shadow:     0 4px 12px rgba(11,46,82,.07), 0 12px 32px rgba(11,46,82,.07);
  --shadow-lg:  0 8px 24px rgba(11,46,82,.09), 0 24px 64px rgba(11,46,82,.10);

  --wrap:       1140px;
  --gap:        clamp(48px, 7vw, 104px);

  --font-head:  'Outfit', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:  'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -.022em;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.15rem, 5.2vw, 3.65rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.18rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-dark); text-decoration-color: var(--blue-100); text-underline-offset: 3px; }
a:hover { color: var(--blue); }

ul, ol { padding-left: 1.15em; }
li { margin-bottom: .4em; }

:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------- layout -- */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 40px, 760px); margin-inline: auto; }
.section { padding-block: var(--gap); }
.section--tint { background: var(--blue-50); }
.section--paper { background: var(--paper); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px; align-items: flex-start; text-wrap: balance;
}
.eyebrow::before {
  content: ''; width: 22px; height: 3px; border-radius: 3px; flex: none; margin-top: .62em;
  background: linear-gradient(90deg, var(--blue), var(--sky));
}
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head p { font-size: 1.08rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); }

/* ------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff; box-shadow: 0 6px 18px rgba(11,111,196,.28);
}
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(11,111,196,.34); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { color: var(--blue-dark); border-color: var(--blue-100); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--light:hover { background: #fff; color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* -------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 2px 20px rgba(11,46,82,.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }

.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo__mark { width: 38px; height: 38px; flex: none; }
.logo__text { font-family: var(--font-head); font-weight: 700; font-size: 1.16rem; color: var(--ink); letter-spacing: -.02em; line-height: 1.1; }
.logo__text span { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: .97rem;
  color: var(--ink); text-decoration: none; padding: 9px 14px; border-radius: 999px;
  transition: background .16s ease, color .16s ease;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--blue-50); color: var(--blue-dark); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; color: var(--navy); text-decoration: none; font-size: .97rem;
}
.header-phone svg { width: 17px; height: 17px; color: var(--blue); }
.header-phone:hover { color: var(--blue-dark); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  align-items: center; justify-content: center; color: var(--navy);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px; box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 14px; font-size: 1.05rem; }
  .header-cta .btn { display: none; }
}
@media (max-width: 520px) { .header-phone span { display: none; } }

/* ---------------------------------------------------------------- hero -- */
.hero { position: relative; padding-block: clamp(48px, 7vw, 92px) clamp(52px, 7vw, 96px); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -30% 40% 30% -20%;
  background: radial-gradient(60% 60% at 60% 50%, rgba(56,189,248,.16), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: -160px; right: -140px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(11,111,196,.13), transparent 66%);
  border-radius: 50%; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero h1 { margin-bottom: .38em; }
.hero h1 .accent {
  position: relative; white-space: nowrap; color: var(--blue-dark);
}
.hero h1 .accent::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: .04em; height: .34em;
  background: linear-gradient(90deg, rgba(56,189,248,.42), rgba(11,111,196,.26));
  border-radius: 999px 999px 999px 4px; z-index: -1;
  transform: rotate(-.6deg);
}
.hero .lead { max-width: 30em; margin-bottom: 30px; text-wrap: pretty; }
.hero h1 { text-wrap: balance; }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute; left: -18px; bottom: 30px;
  background: #fff; border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 13px; max-width: 260px;
}
.hero-badge__num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--blue-dark); line-height: 1; }
.hero-badge__txt { font-size: .87rem; line-height: 1.35; color: var(--ink-soft); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 460px; margin-inline: auto; }
  .hero-figure img { aspect-ratio: 4/3; }
  .hero-badge { left: auto; right: 14px; bottom: -16px; }
}

/* -------------------------------------------------------- trust strip -- */
.trust {
  display: flex; flex-wrap: wrap; gap: 12px 30px; align-items: center;
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line);
}
.trust li { display: flex; align-items: center; gap: 9px; font-size: .93rem; color: var(--ink); margin: 0; }
.trust svg { width: 19px; height: 19px; color: var(--blue); flex: none; }
.trust ul { list-style: none; margin: 0; padding: 0; display: contents; }

/* ------------------------------------------------------------ diensten -- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }

.service-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 22px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky)); opacity: 0; transition: opacity .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-dark); margin-bottom: 4px;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { margin: 0; }
.service-card h3 a { color: inherit; text-decoration: none; }
.service-card h3 a::after { content: ''; position: absolute; inset: 0; }
.service-card p { font-size: .96rem; margin: 0; }
.service-card__foot {
  margin-top: auto; padding-top: 14px; display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--blue-dark);
}
.service-card__foot svg { width: 16px; height: 16px; transition: transform .2s ease; }
.service-card:hover .service-card__foot svg { transform: translateX(4px); }

/* --------------------------------------------------------------- steps -- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 28px 26px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue); color: #fff; margin-bottom: 14px;
}
.step h3 { font-size: 1.12rem; margin-bottom: .35em; }
.step p { font-size: .96rem; margin: 0; }

/* ----------------------------------------------------------- over henk -- */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo { position: relative; }
.about-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-photo::after {
  content: ''; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border-radius: var(--radius-lg); background: var(--blue-100);
}
.quote {
  margin: 26px 0 0; padding: 20px 24px; border-left: 4px solid var(--blue);
  background: var(--blue-50); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); font-style: normal;
}
.quote footer { margin-top: 8px; font-family: var(--font-body); font-size: .9rem; color: var(--ink-soft); }

.facts { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 10px; }
.facts li { display: flex; gap: 11px; align-items: flex-start; margin: 0; font-size: .98rem; }
.facts svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 3px; }

/* ------------------------------------------------------------ galerij -- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.gallery figure { margin: 0; }
.gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.gallery a { display: block; }
.gallery a:hover img { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery figcaption { font-size: .86rem; color: var(--ink-soft); margin-top: 7px; }

/* Lightbox */
.lightbox {
  border: 0; padding: 0; background: transparent; max-width: 92vw; max-height: 92vh;
}
.lightbox::backdrop { background: rgba(10,31,51,.82); backdrop-filter: blur(3px); }
.lightbox img { border-radius: var(--radius); max-height: 82vh; width: auto; margin-inline: auto; }
.lightbox__bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #fff; padding: 10px 4px; }
.lightbox__close {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35); color: #fff;
  border-radius: 999px; width: 40px; height: 40px; cursor: pointer; display: grid; place-items: center;
}
.lightbox__close:hover { background: #fff; color: var(--navy); }

/* -------------------------------------------------------------- prijs -- */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .97rem; }
.price-table th { font-family: var(--font-head); background: var(--blue-50); color: var(--navy); font-weight: 600; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { font-family: var(--font-head); font-weight: 600; color: var(--navy); white-space: nowrap; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.note {
  display: flex; gap: 13px; padding: 18px 20px; background: var(--blue-50);
  border-radius: var(--radius); font-size: .95rem; margin-top: 22px;
}
.note svg { width: 21px; height: 21px; color: var(--blue); flex: none; margin-top: 2px; }

/* ---------------------------------------------------------------- faq -- */
.faq { display: grid; gap: 10px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--blue-100); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 19px 54px 19px 22px; position: relative;
  font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 22px; top: 50%; width: 11px; height: 11px;
  border-right: 2.5px solid var(--blue); border-bottom: 2.5px solid var(--blue);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq .faq__body { padding: 0 22px 20px; font-size: .99rem; }

/* ------------------------------------------------------------ contact -- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3.4vw, 36px); box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink); margin-bottom: 7px; }
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: .85rem; font-family: var(--font-body); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--paper); transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 116px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-light); background: #fff;
  box-shadow: 0 0 0 4px rgba(46,139,224,.14);
}
.field input::placeholder, .field textarea::placeholder { color: #9DAFC2; }
.form .btn { width: 100%; }
.form-foot { font-size: .84rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-direct { display: grid; gap: 14px; margin-top: 26px; }
.contact-direct a {
  display: flex; align-items: center; gap: 15px; padding: 17px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; color: var(--ink); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.contact-direct a:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--blue-100); }
.contact-direct__icon { width: 42px; height: 42px; border-radius: 12px; background: var(--blue-50); color: var(--blue-dark); display: grid; place-items: center; flex: none; }
.contact-direct__icon svg { width: 21px; height: 21px; }
.contact-direct strong { display: block; font-family: var(--font-head); font-size: 1rem; }
.contact-direct span { font-size: .89rem; color: var(--ink-soft); }

/* ------------------------------------------------------------ werkgebied */
.area-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.area-list li {
  margin: 0; font-size: .89rem; padding: 7px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
}

/* ----------------------------------------------------------------- cta -- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 65%, var(--blue) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 54px);
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px;
  border-radius: 50%; background: radial-gradient(circle, rgba(56,189,248,.28), transparent 65%);
}
.cta-band h2, .cta-band p { color: #fff; position: relative; z-index: 1; }
.cta-band p { opacity: .9; max-width: 48ch; }
.cta-band .btn-row { position: relative; z-index: 1; margin-top: 26px; }
.cta-band .btn--primary { background: #fff; color: var(--navy); box-shadow: none; }
.cta-band .btn--primary:hover { color: var(--blue-dark); }

/* -------------------------------------------------------------- footer -- */
.site-footer { background: var(--navy); color: #C6D8EC; padding-block: clamp(44px, 6vw, 68px) 0; margin-top: var(--gap); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 34px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .85rem; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.site-footer a { color: #C6D8EC; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; font-size: .95rem; }
.site-footer .logo__text { color: #fff; }
.site-footer .logo__text span { color: var(--sky); }
.footer-about { font-size: .95rem; margin-top: 16px; max-width: 34ch; }
.footer-legal {
  margin-top: 40px; border-top: 1px solid rgba(255,255,255,.14);
  padding-block: 20px 26px; display: flex; flex-wrap: wrap; gap: 8px 26px;
  font-size: .87rem; color: #93AECB;
}
.footer-legal a { color: #93AECB; }
.footer-legal .sep { opacity: .4; }

/* ------------------------------------------------------------ artikel -- */
.page-hero { padding-block: clamp(38px, 5vw, 64px) clamp(28px, 4vw, 44px); background: var(--blue-50); }
.page-hero h1 { max-width: 20ch; font-size: clamp(2rem, 4.4vw, 3.1rem); }
.page-hero .lead { max-width: 60ch; }
.crumbs { font-size: .87rem; margin-bottom: 18px; color: var(--ink-soft); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.crumbs li { margin: 0; display: flex; gap: 8px; align-items: center; }
.crumbs li + li::before { content: '/'; opacity: .45; }
.crumbs a { text-decoration: none; }

.prose h2 { margin-top: 1.7em; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { margin-bottom: 1.2em; }
.prose > :first-child { margin-top: 0; }

.chip-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 8px; }
.chip-nav a {
  font-family: var(--font-head); font-size: .93rem; font-weight: 500; text-decoration: none;
  padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--ink);
  transition: border-color .16s ease, color .16s ease, transform .16s ease;
}
.chip-nav a:hover { border-color: var(--blue-light); color: var(--blue-dark); transform: translateY(-1px); }
.chip-nav a[aria-current="page"] { background: var(--blue); border-color: var(--blue); color: #fff; }

.card-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.card-link {
  display: block; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.card-link h3 { font-size: 1.1rem; margin-bottom: .4em; }
.card-link p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

/* ------------------------------------------------------------- reveal -- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

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


/* ------------------------------------------------ mobiele actiebalk -- */
.mobile-bar { display: none; }
@media (max-width: 700px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: rgba(255,255,255,.94);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-top: 1px solid var(--line);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(11,46,82,.07);
  }
  .mobile-bar a { padding: 13px 10px; font-size: .97rem; }
  .mobile-bar a svg { width: 18px; height: 18px; }
  body { padding-bottom: 78px; }
  .site-footer { margin-bottom: 0; }
}
