/* =============================================
   DESIGN TOKENS — gebaseerd op SZR-logo­kleuren
============================================= */
:root {
  --navy:        #1B3B5A;
  --navy-deep:   #14253A;
  --teal:        #36B9A6;
  --teal-dark:   #2aa394;
  --slate:       #8A97A5;
  --off-white:   #FBFAF7;
  --white:       #FFFFFF;

  /* Tekst */
  --text-dark:   #1B3B5A;
  --text-body:   #2C3E50;
  --text-muted:  #5D6E7E;
  --text-ph:     #5E6B78; /* B-1: verhoogd van #8A97A5 → ≥4.5:1 op wit */

  /* Randen / schaduw */
  --border:      #DDE4EA;
  --shadow-sm:   0 2px 8px rgba(27,59,90,0.07);
  --shadow-md:   0 4px 20px rgba(27,59,90,0.10);
  --shadow-lg:   0 8px 40px rgba(27,59,90,0.13);

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --max-w:       1200px;
  --section-y:   104px;

  /* Animatie-timing */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--white);
  overflow-x: clip; /* clip i.p.v. hidden: knipt horizontale overflow, maar breekt position:sticky niet */
}

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

a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover  { color: var(--teal-dark); }
a:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =============================================
   REDUCED MOTION — volwaardige fallback
   Alle animatielogica is additioneel bovenop
   een altijd-zichtbare basisstaat.
============================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  /* Zorg dat reveal-elementen altijd zichtbaar zijn */
  .reveal, .reveal-left, .reveal-right,
  .stagger-child { opacity: 1 !important; transform: none !important; }
}

/* =============================================
   SCROLL PROGRESS BAR
============================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #5dd5c5);
  z-index: 200;
  transition: width 0.1s linear;
}

/* =============================================
   SKIP LINK
============================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* =============================================
   LAYOUT HELPERS
============================================= */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }

.section-pad { padding-block: var(--section-y); }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-sans); }

p { max-width: 68ch; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy); /* BL-2: was var(--teal-dark) #2aa394 → 2.97:1 op off-white; navy #1B3B5A geeft >9:1 */
  margin-bottom: 0.875rem;
}

/* BL-2: section-label op donkere (navy) achtergrond — wit geeft >11:1 contrast */
.section-label--light {
  color: var(--white);
}

/* placeholder styling */
.ph {
  font-style: italic;
  color: var(--text-ph);
  opacity: 0.9;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.625rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px;
  transition: background 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out),
              color 0.2s var(--ease-out),
              transform 0.15s var(--ease-out),
              box-shadow 0.2s var(--ease-out);
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 2px 12px rgba(27,59,90,0.22);
}
.btn-primary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,59,90,0.28);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
  color: var(--white);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 2px 12px rgba(54,185,166,0.28);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* =============================================
   STICKY NAVIGATION
============================================= */
/* De HEADER is sticky (niet de nav): zijn bovenliggende blok is de body,
   dus blijft hij de hele pagina lang in beeld — ook op mobile. */
header[role="banner"] {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 100;
}
.site-nav {
  position: relative; /* positioneringscontext voor het mobiele dropdown-menu */
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, padding-block 0.3s;
}
/* Scrolled-state via JS */
.site-nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(27,59,90,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
  transition: height 0.3s var(--ease-out);
}
.site-nav.scrolled .nav-inner { height: 58px; }

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease-out);
}
.site-nav.scrolled .nav-logo-img { height: 40px; }

.nav-logo {
  text-decoration: none;
  display: block;
  line-height: 0;
}
.nav-logo:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
}
.nav-links a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  min-height: 44px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover  { background: var(--off-white); color: var(--teal-dark); }
.nav-links a:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links, .nav-cta {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open, .nav-cta.open { display: flex; }
  .nav-cta.open {
    top: auto;
    position: relative;
    border: none;
    box-shadow: none;
    padding: 0 1.25rem 1rem;
  }
}

/* =============================================
   HERO
============================================= */
.hero {
  background: var(--navy-deep);
  color: var(--white);
  padding-block: 110px 96px;
  position: relative;
  overflow: hidden;
}

/* Achtergrond-gradient laag */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    #0d1f30 0%,
    var(--navy-deep) 45%,
    #1a3a52 100%
  );
}

/* Decoratieve teal cirkels — parallax target */
.hero-orb-1 {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -100px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,185,166,0.18) 0%, transparent 70%);
  will-change: transform;
}
.hero-orb-2 {
  position: absolute;
  width: 360px;
  height: 360px;
  left: -60px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,185,166,0.10) 0%, transparent 70%);
  will-change: transform;
}

/* Subtiele lijngrid */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(54,185,166,0.15);
  border: 1px solid rgba(54,185,166,0.35);
  border-radius: 100px;
  padding: 0.375rem 1rem 0.375rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7dd9cd;
  margin-bottom: 1.75rem;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.375rem;
  max-width: 16ch;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Teal accentlijn onderaan hero */
.hero-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, transparent 70%);
}

/* =============================================
   REVEAL ANIMATIES (IntersectionObserver)
   Beginwaarden — JS voegt .is-visible toe
   zonder JS / reduced-motion: altijd visible
============================================= */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out),
              transform 0.65s var(--ease-out);
}
.js-loaded .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js-loaded .reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s var(--ease-out),
              transform 0.65s var(--ease-out);
}
.js-loaded .reveal-left.is-visible {
  opacity: 1;
  transform: none;
}

.js-loaded .reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s var(--ease-out),
              transform 0.65s var(--ease-out);
}
.js-loaded .reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delay-klassen */
.js-loaded .stagger-child:nth-child(1) { transition-delay: 0.00s; }
.js-loaded .stagger-child:nth-child(2) { transition-delay: 0.10s; }
.js-loaded .stagger-child:nth-child(3) { transition-delay: 0.20s; }
.js-loaded .stagger-child:nth-child(4) { transition-delay: 0.30s; }
.js-loaded .stagger-child:nth-child(5) { transition-delay: 0.40s; }
.js-loaded .stagger-child:nth-child(6) { transition-delay: 0.50s; }

/* =============================================
   UITDAGING SECTIE
============================================= */
.uitdaging {
  background: var(--off-white);
  padding-block: var(--section-y);
}

.uitdaging-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.uitdaging-visual {
  position: relative;
}

/* Decoratief vlak */
.uitdaging-card-vis {
  background: var(--navy);
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 5;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.uitdaging-card-vis::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(54,185,166,0.18) 0%, transparent 60%);
}
.uitdaging-card-vis-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

/* Floating pill */
.uitdaging-pill {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--teal);
  color: var(--white);
  border-radius: 100px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .uitdaging-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* =============================================
   OPLOSSING SECTIE
============================================= */
.oplossing {
  padding-block: var(--section-y);
}

.oplossing-intro {
  max-width: 68ch;
  margin-bottom: 3.5rem;
}
.oplossing-intro p { margin-top: 0.875rem; }

.aanpak-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.aanpak-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.625rem;
  border-left: 3px solid var(--teal);
  position: relative;
  transition: box-shadow 0.25s var(--ease-out),
              transform 0.25s var(--ease-out);
}
.aanpak-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.aanpak-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(54,185,166,0.20);
  line-height: 1;
  margin-bottom: 0.875rem;
  user-select: none;
}
.aanpak-card p {
  font-size: 0.9375rem;
  color: var(--text-body);
  max-width: none;
  line-height: 1.65;
}

/* =============================================
   IMPACT SECTIE
============================================= */
.impact {
  background: var(--navy);
  color: var(--white);
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,185,166,0.12) 0%, transparent 70%);
}

.impact-inner {
  position: relative;
  z-index: 1;
}

.impact h2 { color: var(--white); }

.impact-intro {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 62ch;
  margin-top: 0.75rem;
  margin-bottom: 3rem;
}

.impact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  list-style: none;
}

.impact-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  align-items: flex-start;
  transition: background 0.2s, border-color 0.2s;
}
.impact-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(54,185,166,0.35);
}

.impact-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(54,185,166,0.20);
  border: 1px solid rgba(54,185,166,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.impact-check svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.impact-item p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  max-width: none;
}

/* =============================================
   ONZE IDENTITEIT SECTIE
============================================= */
.identiteit {
  background: var(--off-white);
}
.identiteit-inner {
  max-width: 72ch;
}
.identiteit-inner h2 {
  margin-top: 0.25rem;
}
.identiteit-inner p {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-body);
}
/* Lead: zelfde typografie als de rest (font, grootte, kleur, regelafstand),
   alleen een subtiel teal accentbalkje. Selector met gelijke/hogere
   specificiteit dan '.identiteit-inner p' zodat er niets meer botst. */
.identiteit-inner p.identiteit-lead {
  border-left: 3px solid var(--teal);
  padding-left: 1.25rem;
}

/* =============================================
   SAMENWERKEN SECTIE
============================================= */
.samenwerken {
  padding-block: var(--section-y);
  border-top: 2px solid var(--navy);
}

.samenwerken-inner {
  max-width: 68ch;
}

.samenwerken-text p {
  margin-top: 0.875rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.samenwerken-text .btn { margin-top: 2rem; }

/* =============================================
   CONTACT CTA BALK
   BL-1: achtergrond gewijzigd van --teal naar --navy
   Wit op --navy (#1B3B5A) geeft ~11.6:1 contrast → WCAG AA/AAA
============================================= */
.contact-cta-band {
  background: var(--navy);
  padding-block: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(54,185,166,0.12) 0%, transparent 60%);
}
.contact-cta-band .container { position: relative; z-index: 1; }
.contact-cta-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.contact-cta-band p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.88);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: 2.25rem;
}

/* =============================================
   CONTACT SECTIE
============================================= */
.contact {
  padding-block: var(--section-y);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-gegevens address {
  font-style: normal;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.contact-gegevens a {
  color: var(--navy);
  font-weight: 500;
}

.contact-email-big {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.contact-email-big:hover { color: var(--teal-dark); border-color: var(--teal-dark); }
/* B-5: focus-visible voor toetsenbordnavigatie */
.contact-email-big:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Contact formulier */
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 48px;
}
.form-group input:focus,
.form-group textarea:focus {
  /* B-2: outline:none vervangen door zichtbare focus die ook in forced-colors werkt */
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(54,185,166,0.18);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-required { color: var(--teal-dark); margin-left: 1px; }
.form-hint { font-size: 0.8125rem; color: var(--text-muted); }

/* BL-3: formulier-feedback */
.form-status {
  font-size: 0.9rem;
  border-radius: var(--radius);
  padding: 0;
  transition: padding 0.2s, background 0.2s;
}
.form-status:not(:empty) {
  padding: 0.875rem 1rem;
}
.form-status--success {
  background: rgba(54,185,166,0.12);
  color: #1a6a5e; /* donker teal op wit: >7:1 */
  border: 1px solid rgba(54,185,166,0.35);
}
.form-status--error {
  background: rgba(180,30,30,0.08);
  color: #8B1A1A;
  border: 1px solid rgba(180,30,30,0.25);
}
/* Per-veld foutmelding */
.form-field-error {
  font-size: 0.8125rem;
  color: #8B1A1A;
  margin-top: 0.25rem;
}
.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #c0392b;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 480px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding-block: 64px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-logo-img {
  height: 34px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 36ch;
  margin-bottom: 1rem;
}
.footer-kvk {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.125rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }
.footer-links a:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 3px;
  border-radius: 2px;
}
/* B-6: wettelijke links bestaan nog niet — ingetogen weergave */
.footer-link-pending {
  color: rgba(255,255,255,0.38);
  font-size: 0.9375rem;
  cursor: default;
  user-select: none;
}
.footer-link-soon {
  font-style: italic;
  font-size: 0.75rem;
  opacity: 0.75;
}

.footer-bottom {
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65); /* N-2: verhoogd van 0.40 → 0.65; wit op navy-deep #14253A ~8.4:1 */
}
@media (max-width: 540px) { .footer-bottom { flex-direction: column; } }

/* =============================================
   UTILITY
============================================= */
.mt-sm  { margin-top: 0.75rem; }
.mt-md  { margin-top: 1.5rem; }
.mt-lg  { margin-top: 2.25rem; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
