/* =========================================================================
   OPGELOST! — stijlsysteem
   Kleuren zijn rechtstreeks gemeten uit het aangeleverde logo (zie navy/teal
   hieronder), zodat de site exact aansluit bij de huisstijl.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Lexend:wght@400;500;600;700&display=swap');

:root {
  /* Merkkleuren — gemeten uit het logo */
  --navy-950: #050b33;   /* paginaondergrond */
  --navy-900: #0a1142;   /* afwisselende sectie-achtergrond */
  --navy-800: #121b5e;   /* kaarten / kop / footer */
  --navy-700: #1d2876;   /* randen, scheidingslijnen */
  --teal:       #04a2ab; /* primaire accentkleur uit logo */
  --teal-light: #5fd9df;
  --teal-dark:  #027780;

  --white: #ffffff;
  --ink-100: #dadff5;  /* lichaamstekst op donker */
  --ink-300: #9aa1cc;  /* secundaire tekst */
  --ink-500: #6770a6;  /* placeholders, fijne lijnen */

  --success: #4fd6a0;
  --danger:  #ff8a8a;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Lexend', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-full: 999px;

  --shadow-md: 0 16px 40px rgba(2, 6, 26, 0.45);
  --shadow-sm: 0 6px 18px rgba(2, 6, 26, 0.3);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --ease: cubic-bezier(.2,.7,.3,1);
}

/* =========================================================================
   Reset & basis
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--ink-100);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem); font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-100); }
strong { color: var(--white); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: .9em;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(4,162,171,.2);
}

.lede { font-size: 1.15rem; color: var(--ink-100); max-width: 60ch; }

/* Skip link voor toetsenbordgebruikers */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: var(--navy-950);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  z-index: 1000;
}
.skip-link:focus {
  left: 0;
}

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

/* =========================================================================
   Secties
   ========================================================================= */
.section { padding: clamp(56px, 9vw, 104px) 0; }
.section-alt { background: var(--navy-900); }
.section-tight { padding: clamp(36px, 6vw, 64px) 0; }
.section-head { max-width: 680px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* Koord-divider — verwijst naar het snoer/stekker-element uit het logo */
.cord-divider { display: block; width: 100%; height: 28px; margin: 0; }
.cord-divider path { stroke: var(--teal); }
.cord-divider circle { fill: var(--teal); }

/* =========================================================================
   Knoppen
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(4,162,171,.28);
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(4,162,171,.38); }
.btn-outline {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal-light);
}
.btn-outline:hover { background: rgba(4,162,171,.12); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--navy-700);
}
.btn-ghost:hover { border-color: var(--teal); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-sm { padding: 9px 18px; font-size: .88rem; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

/* =========================================================================
   Header / navigatie
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(5, 11, 51, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--navy-700);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  height: 84px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink-100);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); }
.main-nav a[aria-current="page"]::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; border-radius: 3px;
  background: var(--teal);
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  color: var(--white);
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  padding: 10px 16px;
  border-radius: var(--radius-full);
}
.phone-pill:hover { border-color: var(--teal); }
.phone-pill svg { width: 16px; height: 16px; stroke: var(--teal); flex-shrink: 0; }

.lang-switch {
  display: inline-flex;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.lang-switch a { padding: 8px 13px; color: var(--ink-300); }
.lang-switch a[aria-current="true"] { background: var(--teal); color: var(--navy-950); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-sm);
  color: var(--white);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-panel {
  display: none;
  position: fixed; inset: 84px 0 0 0;
  background: var(--navy-950);
  z-index: 480;
  overflow-y: auto;
  padding: 28px var(--gutter) 40px;
}
.mobile-panel.is-open { display: block; }
.mobile-panel ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.mobile-panel a {
  display: block;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  color: var(--white);
  padding: 14px 4px;
  border-bottom: 1px solid var(--navy-800);
}
.mobile-panel .phone-pill { width: 100%; justify-content: center; margin-bottom: 14px; }
.mobile-panel .lang-switch { width: max-content; }

@media (max-width: 920px) {
  .main-nav { display: none; }
  .header-actions .phone-pill span.phone-text { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 480px) {
  .header-actions .phone-pill { padding: 10px; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero { padding: clamp(48px, 8vw, 92px) 0 clamp(40px, 6vw, 72px); }
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-copy h1 { margin-bottom: .4em; }
.hero-copy .lede { margin-bottom: 1.8em; }

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 12px 22px;
  margin-top: 2.2em;
  padding-top: 1.6em;
  border-top: 1px solid var(--navy-700);
}
.trust-strip li {
  display: flex; align-items: center; gap: 8px;
  font-size: .92rem; color: var(--ink-300);
  font-weight: 500;
}
.trust-strip svg { width: 16px; height: 16px; stroke: var(--teal); flex-shrink: 0; }

.hero-media { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 2px dashed var(--teal);
  padding: 10px;
}
.hero-frame .frame-inner {
  width: 100%; height: 100%;
  border-radius: calc(var(--radius-lg) - 10px);
  overflow: hidden;
  background: var(--navy-800);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--teal);
  color: var(--navy-950);
  font-family: var(--font-display); font-weight: 800;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  font-size: .95rem;
  max-width: 200px;
}

@media (max-width: 920px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 380px; margin-inline: auto; width: 100%; }
}

/* =========================================================================
   Placeholder-afbeeldingen (tot eigen foto's zijn toegevoegd)
   ========================================================================= */
.img-placeholder {
  width: 100%; height: 100%;
  min-height: 160px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background:
    repeating-linear-gradient(135deg, rgba(4,162,171,.08) 0 12px, transparent 12px 24px),
    var(--navy-800);
  border: 1.5px dashed var(--navy-700);
  color: var(--ink-300);
  text-align: center;
  padding: 18px;
  border-radius: inherit;
}
.img-placeholder svg { width: 30px; height: 30px; stroke: var(--teal); }
.img-placeholder strong { display: block; color: var(--ink-100); font-size: .88rem; font-weight: 600; }
.img-placeholder span { font-size: .78rem; color: var(--ink-500); }

/* =========================================================================
   Diensten-grid
   ========================================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--teal); }
.service-card .icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(4,162,171,.12);
  margin-bottom: 16px;
}
.service-card .icon svg { width: 24px; height: 24px; stroke: var(--teal); }
.service-card h3 { margin-bottom: .35em; font-size: 1.05rem; }
.service-card p { font-size: .92rem; color: var(--ink-300); margin: 0; }

@media (max-width: 1024px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Hoe het werkt — stappen
   ========================================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  position: relative;
}
.step { position: relative; padding: 8px; }
.step .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-950);
  background: var(--teal);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: .4em; }
.step p { color: var(--ink-300); font-size: .95rem; margin: 0; }
.steps .cord-divider { grid-column: 1 / -1; margin: -4px 0 6px; }

@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; gap: 28px; }
}

.rate-note {
  margin-top: clamp(28px,4vw,40px);
  display: flex; align-items: center; gap: 18px;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  flex-wrap: wrap;
}
.rate-note .price {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.8rem; color: var(--teal-light);
  white-space: nowrap;
}
.rate-note p { margin: 0; color: var(--ink-300); font-size: .92rem; max-width: 46ch; }

/* =========================================================================
   Waarden / sterke punten
   ========================================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card { padding: 4px; }
.value-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; }
.value-card h3 svg { width: 20px; height: 20px; stroke: var(--teal); flex-shrink: 0; }
.value-card p { color: var(--ink-300); font-size: .94rem; margin: 0; }
@media (max-width: 920px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .values-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Galerij-teaser (homepage)
   ========================================================================= */
.gallery-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--navy-700); }
@media (max-width: 800px) { .gallery-preview { grid-template-columns: 1fr 1fr; } .gallery-item:nth-child(3) { display: none; } }
@media (max-width: 520px) { .gallery-preview { grid-template-columns: 1fr; } .gallery-item:nth-child(3) { display: block; } }

/* =========================================================================
   CTA-banner
   ========================================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.cta-banner h2 { margin-bottom: .25em; }
.cta-banner p { margin: 0; color: var(--ink-300); }

/* =========================================================================
   Projecten
   ========================================================================= */
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.project-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.compare { display: grid; grid-template-columns: 1fr 1fr; }
.compare-cell { position: relative; aspect-ratio: 4/3; }
.compare-cell .img-placeholder { border-radius: 0; border-width: 0 0 0 0; min-height: 100%; }
.compare-cell:first-child .img-placeholder { border-right: 1px solid var(--navy-700); }
.compare-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--navy-950); color: var(--teal-light);
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius-full);
  z-index: 2;
  border: 1px solid var(--navy-700);
}
.project-card .project-body { padding: 22px 24px; }
.project-card h3 { margin-bottom: .3em; }
.project-card p { color: var(--ink-300); font-size: .92rem; margin: 0; }
.project-tag-row { display:flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.chip {
  font-size: .74rem; font-weight: 700; letter-spacing: .03em;
  color: var(--teal-light); background: rgba(4,162,171,.12);
  border: 1px solid rgba(4,162,171,.3);
  padding: 4px 11px; border-radius: var(--radius-full);
  font-family: var(--font-display);
}

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

/* =========================================================================
   Reviews
   ========================================================================= */
.rating-summary {
  display: flex; align-items: center; gap: 26px;
  background: var(--navy-800); border: 1px solid var(--navy-700);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.rating-summary .score { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--white); line-height: 1; }
.rating-summary .stars { margin: 6px 0 4px; }
.rating-summary .count { color: var(--ink-300); font-size: .88rem; }

.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 17px; height: 17px; }
.stars svg.filled { fill: var(--teal); stroke: var(--teal); }
.stars svg.empty { fill: none; stroke: var(--navy-700); }

.review-list { display: flex; flex-direction: column; gap: 22px; }
.review-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-md);
  padding: 26px 28px;
}
.review-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.review-who { font-family: var(--font-display); font-weight: 700; color: var(--white); }
.review-date { font-size: .82rem; color: var(--ink-500); }
.review-card p { color: var(--ink-100); margin: 10px 0 0; }
.review-reply {
  margin-top: 18px;
  background: var(--navy-900);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
}
.review-reply .reply-tag {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700; font-size: .76rem;
  color: var(--teal-light); letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 6px;
}
.review-reply p { margin: 0; font-size: .94rem; color: var(--ink-300); }

/* =========================================================================
   Formulieren
   ========================================================================= */
.form-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: .92rem; color: var(--white); }
.form-group .hint { font-size: .8rem; color: var(--ink-500); margin-top: -4px; }
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy-950);
  border: 1.5px solid var(--navy-700);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .98rem;
  transition: border-color .15s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink-500); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.required { color: var(--teal-light); }

.star-input { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
.star-input input { position: absolute; opacity: 0; pointer-events: none; }
.star-input label { cursor: pointer; }
.star-input label svg { width: 28px; height: 28px; fill: none; stroke: var(--navy-700); transition: fill .15s, stroke .15s; }
.star-input input:checked ~ label svg,
.star-input label:hover svg,
.star-input label:hover ~ label svg {
  fill: var(--teal); stroke: var(--teal);
}

.form-foot { display: flex; align-items: center; gap: 18px; margin-top: 22px; flex-wrap: wrap; }
.form-msg { font-size: .9rem; padding: 10px 0; display: none; }
.form-msg.success { color: var(--success); display: block; }
.form-msg.error { color: var(--danger); display: block; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

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

/* =========================================================================
   Contactpagina
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 2px dashed var(--teal);
  padding: 10px;
  margin-bottom: 24px;
}
.contact-portrait .frame-inner { width:100%; height:100%; border-radius: calc(var(--radius-lg) - 10px); overflow:hidden; background: var(--navy-800); }
.contact-portrait img { width:100%; height:100%; object-fit:cover; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(4,162,171,.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item .icon svg { width: 19px; height: 19px; stroke: var(--teal); }
.contact-info-item h3 { margin: 0 0 2px; font-size: .95rem; }
.contact-info-item a, .contact-info-item p { margin: 0; color: var(--ink-300); font-size: .94rem; word-break: break-word; }
.contact-info-item a:hover { color: var(--teal-light); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 5px 0; font-size: .92rem; color: var(--ink-300); }
.hours-table td:last-child { text-align: right; color: var(--ink-100); font-weight: 500; }

.privacy-note {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--navy-700);
  font-size: .86rem;
  color: var(--ink-500);
}
.privacy-note a { color: var(--teal-light); }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } .contact-portrait { max-width: 280px; } }

/* =========================================================================
   Beleidspagina (privacy)
   ========================================================================= */
.policy h2 { margin-top: 1.6em; font-size: 1.3rem; }
.policy h2:first-of-type { margin-top: 0; }
.policy ul { margin: 0 0 1em; padding-left: 1.3em; list-style: disc; }
.policy li { margin-bottom: .4em; color: var(--ink-100); }
.policy p, .policy li { color: var(--ink-100); }
.policy { max-width: 76ch; }

/* =========================================================================
   FAQ-achtige privacy/aanvullende info, badges
   ========================================================================= */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; }
.badge {
  font-size: .8rem; font-weight: 600; color: var(--ink-300);
  border: 1px solid var(--navy-700); padding: 6px 13px; border-radius: var(--radius-full);
}

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--navy-900); border-top: 1px solid var(--navy-700); padding: clamp(48px,6vw,72px) 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--navy-700);
}
.footer-brand img { height: 34px; margin-bottom: 14px; }
.footer-brand p { color: var(--ink-300); font-size: .9rem; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-display); font-size: .82rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-300); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink-100); font-size: .94rem; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  padding-top: 22px;
  font-size: .82rem; color: var(--ink-500);
}
.footer-bottom a { color: var(--ink-500); }
.footer-bottom a:hover { color: var(--teal-light); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Scroll-reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================================
   Diversen
   ========================================================================= */
.divider-fade {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-700), transparent);
  border: none;
  margin: 0;
}
.page-hero {
  padding: clamp(44px,7vw,76px) 0 clamp(28px,4vw,40px);
}
.page-hero .lede { margin-top: 10px; }
