/* ==========================================================================
   Mees van den Brink — Werken bij
   1:1 rebuild van Figma-design | SaffrieDesign
   ========================================================================== */

:root {
  /* Kleuren, gesampled uit Figma */
  --navy-900: #131E36;   /* footer */
  --navy-800: #192745;   /* header, hero, secties */
  --navy-700: #22304E;   /* cards op navy */
  --navy-600: #2E3B56;   /* dept-card band */
  --navy-450: #37435D;
  --orange-500: #F56703;
  --orange-600: #E3660D;
  --orange-400: #FF8F40;
  --orange-grad: linear-gradient(135deg, #FA6802 0%, #E3660D 100%);
  --orange-soft: #FFD9BF;
  --orange-tint: #FFF3EA;
  --bg-light: #EDEEF0;
  --bg-lighter: #F4F5F6;
  --white: #FFFFFF;
  --text-body: #4B5568;
  --text-muted: #7A8397;
  --text-light: #B8C0D0;
  --border: #E2E4E9;

  --font-head: 'Lexend', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 10px 30px rgba(19, 30, 54, .08);
  --shadow-card-lg: 0 18px 45px rgba(19, 30, 54, .14);
  --container: 1232px;
  --notch: 26px;
}

/* ---------- Reset & basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* vangnet tegen horizontale scroll op mobiel */
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
input, select { font: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Notched corner (gevouwen hoekje rechtsonder) */
.notch { clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%); }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-800); line-height: 1.12; }
.h-display {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--white);
  text-wrap: balance;
}
.h-section {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  text-wrap: balance;
}
.h-card { font-size: 1.25rem; font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center;
  padding: .55rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow--glass { background: rgba(255,255,255,.14); color: rgba(255,255,255,.85); backdrop-filter: blur(6px); }
.eyebrow--orange { background: var(--orange-grad); color: var(--white); letter-spacing: .02em; font-size: .85rem; box-shadow: 0 6px 18px rgba(245,103,3,.35); }
.eyebrow--dark { background: rgba(255,255,255,.08); color: var(--text-light); }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 2rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--orange-grad); color: var(--white); box-shadow: 0 8px 22px rgba(245,103,3,.38); }
.btn--primary:hover { box-shadow: 0 12px 28px rgba(245,103,3,.48); }
.btn--glass { background: rgba(255,255,255,.16); color: var(--white); backdrop-filter: blur(8px); }
.btn--glass:hover { background: rgba(255,255,255,.26); }
.btn--white { background: var(--white); color: var(--orange-600); }
.btn--outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.75); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); }
.btn--navy { background: var(--navy-800); color: var(--white); width: 100%; border-radius: 14px; }
.btn--navy:hover { background: var(--navy-600); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--navy-800);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  height: 80px;
}
.site-header__logo img { height: 44px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 2.4rem; }
.site-nav a {
  font-family: var(--font-head);
  font-weight: 400;
  color: rgba(255,255,255,.88);
  font-size: 1.02rem;
  transition: color .15s ease;
  position: relative;
  padding: .35rem 0;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--white); }
.site-nav a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px;
  border-radius: 3px; background: var(--orange-500);
}
.site-header .btn { padding: .8rem 1.6rem; font-size: .95rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--white); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-800);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(25,39,69,.92) 0%, rgba(25,39,69,.78) 45%, rgba(25,39,69,.9) 100%);
}
.hero__inner { position: relative; padding: 92px 24px 110px; }
.hero__inner .eyebrow { margin-bottom: 1.6rem; }
.hero__title { max-width: 800px; margin: 0 auto; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.hero--compact .hero__inner { padding: 80px 24px 96px; }

/* Zoekbalk overlappend op hero */
.searchbar-wrap { position: relative; margin-top: -44px; z-index: 5; }
.searchbar {
  position: relative;
  display: flex; align-items: center; gap: .9rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card-lg);
  padding: .85rem .9rem .85rem 1.4rem;
}
.searchbar__icon { color: var(--text-muted); flex: none; }
.searchbar input[type="search"] {
  flex: 1; border: none; outline: none; min-width: 0;
  font-size: 1rem; color: var(--navy-800); background: transparent;
}
.searchbar input::placeholder { color: var(--text-muted); }
.searchbar select {
  border: none; outline: none;
  background: var(--bg-light);
  border-radius: 12px;
  padding: .8rem 1rem;
  color: var(--navy-800);
  max-width: 170px;
}
.searchbar .btn { padding: .85rem 1.9rem; border-radius: 14px; }

/* Zoeksuggesties (typeahead) */
.suggest {
  position: absolute; top: calc(100% + 20px); left: 0; right: 0;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-card-lg);
  padding: .5rem;
  z-index: 60;
  max-height: 430px; overflow-y: auto;
}
.suggest__item {
  display: flex; gap: .95rem; align-items: center;
  padding: .7rem .8rem; border-radius: 12px;
  transition: background .12s ease;
}
.suggest__item:hover, .suggest__item.is-active { background: var(--orange-tint); }
.suggest__thumb { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; flex: none; background: var(--bg-light); }
.suggest__thumb img { width: 100%; height: 100%; object-fit: cover; }
.suggest__text { flex: 1; min-width: 0; }
.suggest__title { display: block; font-family: var(--font-head); font-weight: 600; color: var(--navy-800); }
.suggest__title mark { background: none; color: var(--orange-600); }
.suggest__meta { display: block; font-size: .82rem; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.suggest__arrow { width: 16px; height: 16px; flex: none; color: var(--orange-500); opacity: 0; transition: opacity .12s ease; }
.suggest__item:hover .suggest__arrow, .suggest__item.is-active .suggest__arrow { opacity: 1; }
.suggest__all {
  display: block; text-align: center;
  padding: .85rem;
  font-family: var(--font-head); font-weight: 600; color: var(--orange-600);
  border-top: 1px solid var(--border);
  margin-top: .4rem;
  border-radius: 0 0 12px 12px;
}
.suggest__all:hover { background: var(--bg-lighter); }
.suggest__empty { padding: .9rem .8rem .4rem; color: var(--text-muted); }

/* ---------- Sectiekoppen ---------- */
.section { padding: 88px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.6rem; }
.section-head p { max-width: 380px; color: var(--text-muted); }
.section-head--center { flex-direction: column; align-items: center; text-align: center; gap: 1.1rem; }
.section-head--center p { max-width: 640px; }

/* ---------- Afdelingen (Vind jouw plek) ---------- */
.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dept-card {
  display: block; position: relative;
  border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.dept-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-lg); }
.dept-card__img { height: 195px; }
.dept-card__img img { width: 100%; height: 100%; object-fit: cover; }
.dept-card__band {
  position: relative;
  background: var(--navy-600);
  padding: 1.9rem 1.5rem 1.4rem;
}
.dept-card__chip {
  position: absolute; top: -14px; left: 1.5rem;
  background: var(--orange-grad); color: var(--white);
  font-family: var(--font-head); font-size: .74rem; font-weight: 600;
  padding: .3rem .85rem; border-radius: 999px;
}
.dept-card__band h3 { color: var(--white); font-size: 1.3rem; font-weight: 700; }

/* ---------- Statistieken ---------- */
.stats-row { display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; }
.stat-pill {
  display: flex; align-items: baseline; gap: .6rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.05rem 1.9rem;
}
.stat-pill strong { font-family: var(--font-head); font-size: 1.45rem; font-weight: 800; color: var(--orange-500); }
.stat-pill span { color: var(--text-muted); font-size: .95rem; }

/* ---------- Missie / Visie ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.mv-card { padding: 2.6rem 2.8rem; border-radius: 4px; }
.mv-card--light { background: linear-gradient(135deg, #FFFFFF 0%, #F6F7F8 100%); box-shadow: var(--shadow-card); }
.mv-card--navy { background: var(--navy-800); }
.mv-card__head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.2rem; }
.mv-card__head h3 { font-size: 2rem; font-weight: 800; }
.mv-card--navy .mv-card__head h3, .mv-card--navy p { color: var(--white); }
.mv-card--navy p { color: #C6CDDB; }
.mv-card__icon { color: var(--orange-500); flex: none; }
.mv-card__icon svg { width: 44px; height: 44px; }

/* ---------- Kernwaarden FORCE ---------- */
.force-section {
  background: radial-gradient(120% 120% at 85% 0%, #23345B 0%, var(--navy-800) 55%);
  color: var(--white);
  text-align: center;
}
.force-section .h-section { color: var(--white); text-transform: none; font-size: clamp(2rem, 4vw, 3rem); }
.force-section .h-section span { color: var(--orange-500); }
.force-intro { max-width: 760px; margin: 1.4rem auto 0; color: #AEB6C8; }
.force-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 3.2rem; text-align: left; }
.force-card {
  background: rgba(45, 58, 90, .55);
  border: 1px solid rgba(255,255,255,.06);
  border-top: 2px solid var(--orange-500);
  border-radius: 14px;
  padding: 1.6rem 1.35rem;
}
.force-card__letter {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-grad);
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 18px rgba(245,103,3,.35);
}
.force-card h3 { color: var(--orange-500); font-size: .95rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem; }
.force-card h4 { color: var(--white); font-size: .95rem; font-weight: 700; margin-bottom: .7rem; }
.force-card p { color: #A9B1C4; font-size: .88rem; line-height: 1.6; }
.force-section .btn { margin-top: 3rem; }

/* ---------- Verhalen / team ---------- */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.story-card {
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-lg); }
.story-card__img { position: relative; height: 290px; }
.story-card__img img { width: 100%; height: 100%; object-fit: cover; }
.story-card__cat {
  position: absolute; top: 18px; left: 18px;
  background: var(--orange-grad); color: var(--white);
  font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  padding: .32rem .95rem; border-radius: 999px;
}
.story-card__body { padding: 1.7rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.story-card__person { display: flex; align-items: center; gap: .9rem; }
.story-card__quote {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  background: var(--bg-light); color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
}
.story-card__person strong { display: block; font-family: var(--font-head); color: var(--navy-800); font-weight: 700; }
.story-card__person small { color: var(--text-muted); font-size: .85rem; }
.story-card h3 { font-size: 1.28rem; font-weight: 700; margin-top: .3rem; }
.story-card p { font-size: .95rem; }
.story-card__link {
  margin-top: auto; padding-top: .8rem;
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-head); font-weight: 600; color: var(--orange-600);
}
.story-card__link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.story-card__link:hover svg { transform: translateX(4px); }
/* Hele kaart klikbaar via de tekstlink (stretched link) */
.story-card { position: relative; }
a.story-card__link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.story-card:has(a.story-card__link:hover) { transform: translateY(-4px); box-shadow: var(--shadow-card-lg); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--orange-600);
  text-align: center; color: var(--white);
}
.cta-band__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; mix-blend-mode: luminosity; }
.cta-band__bg::after { content:''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(250,104,2,.88), rgba(227,102,13,.88)); mix-blend-mode: normal; }
.cta-band__inner { position: relative; padding: 108px 24px; }
.cta-band h2 { color: var(--white); max-width: 820px; margin: 0 auto; text-wrap: balance; }
.cta-band p { max-width: 620px; margin: 1.3rem auto 0; color: rgba(255,255,255,.92); font-size: 1.08rem; }
.cta-band .hero__actions { margin-top: 2.4rem; }

/* Smalle CTA-balk (detailpagina) */
.cta-strip { background: var(--orange-grad); color: var(--white); }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-top: 40px; padding-bottom: 40px; flex-wrap: wrap; }
.cta-strip h2 { color: var(--white); font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700; text-transform: none; }
.cta-strip__actions { display: flex; gap: .9rem; flex-wrap: wrap; }

/* ---------- Vacatures ---------- */
.vacature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 2.4rem; }
/* E&eacute;n vacature: kaart gecentreerd over de volle rij */
.vacature-card:only-child { grid-column: 1 / -1; width: 100%; max-width: 760px; margin: 0 auto; }
/* Hele vacaturekaart klikbaar via de details-knop (stretched link) */
.vacature-card > a.btn--navy::after { content: ''; position: absolute; inset: 0; border-radius: 18px; }
.vacature-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--orange-soft);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(19,30,54,.05);
  padding: 1.7rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.vacature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-lg); }
.vacature-card__badge {
  position: absolute; top: -14px; left: 22px;
  background: var(--orange-grad); color: var(--white);
  font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  padding: .32rem 1rem; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(245,103,3,.35);
}
.vacature-card__top { display: flex; gap: 1.2rem; align-items: flex-start; }
.vacature-card__thumb { width: 108px; height: 108px; flex: none; border-radius: 14px; overflow: hidden; background: var(--bg-light); }
.vacature-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.vacature-card__title { flex: 1; min-width: 0; }
.vacature-card__title h3 { font-size: 1.45rem; font-weight: 700; margin-bottom: .35rem; overflow-wrap: anywhere; hyphens: auto; }
.vacature-card__title p { color: var(--text-muted); font-size: .95rem; }
.vacature-card__logo { height: 34px; width: auto; max-width: 140px; object-fit: contain; flex: 0 1 auto; min-width: 0; }
.chip-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--bg-lighter); border: 1px solid var(--border);
  color: var(--navy-800);
  border-radius: 999px; padding: .38rem .95rem;
  font-size: .85rem;
}
.chip svg { width: 14px; height: 14px; color: var(--text-muted); }
.chip--orange { background: var(--orange-tint); border-color: var(--orange-soft); color: var(--orange-600); font-weight: 600; }

/* Actieve filters onder de zoekbalk */
.active-filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1.3rem; }
.filter-chip {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--orange-tint); border: 1px solid var(--orange-soft);
  color: var(--orange-600);
  border-radius: 999px; padding: .42rem .6rem .42rem 1rem;
  font-family: var(--font-head); font-size: .88rem; font-weight: 600;
}
.filter-chip small { font-weight: 400; color: #C05E0A; font-size: .78rem; }
.filter-chip button {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange-500); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; flex: none;
  transition: background .12s ease, transform .12s ease;
}
.filter-chip button:hover { background: var(--navy-800); transform: scale(1.08); }
.filter-chip button svg { width: 11px; height: 11px; }
.filter-clear {
  font-family: var(--font-head); font-size: .85rem; font-weight: 600;
  color: var(--text-muted); align-self: center;
  border-bottom: 1px dashed var(--text-muted); cursor: pointer;
}
.filter-clear:hover { color: var(--navy-800); }

.no-results {
  text-align: center; padding: 3rem 1rem; color: var(--text-muted);
  background: var(--white); border-radius: 18px; margin-top: 2.4rem;
}
.results-count { text-align: center; color: var(--text-muted); margin-top: 1.6rem; }
.results-count strong { color: var(--orange-500); }

/* Open sollicitatie blok */
.match-block {
  background: radial-gradient(110% 160% at 80% 20%, #23345B 0%, var(--navy-800) 60%);
  border-radius: var(--radius-lg);
  text-align: center; color: var(--white);
  padding: 4rem 2rem;
  margin-top: 4.5rem;
}
.match-block h2 { color: var(--white); font-size: 1.8rem; font-weight: 700; text-transform: none; }
.match-block p { color: #B9C1D2; margin: .9rem 0 2rem; }

/* ---------- Vacature detail ---------- */
.vac-hero { background: var(--navy-800); color: var(--white); }
.vac-hero__inner { padding-top: 40px; padding-bottom: 56px; }
.vac-hero__back { display: inline-flex; align-items: center; gap: .5rem; color: #AEB6C8; font-size: .95rem; margin-bottom: 2rem; transition: color .15s ease; }
.vac-hero__back:hover { color: var(--white); }
.vac-hero__status {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border-radius: 999px;
  padding: .4rem 1.1rem; font-size: .85rem; color: #D8DCE6;
}
.vac-hero__status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--orange-500); }
.vac-hero h1 { color: var(--white); font-size: clamp(1.65rem, 6.8vw, 3.4rem); font-weight: 700; margin: 1.1rem 0 1rem; overflow-wrap: anywhere; hyphens: auto; }
.vac-hero__meta { display: flex; flex-wrap: wrap; gap: 1.6rem; color: #AEB6C8; font-size: .98rem; }
.vac-hero__meta span { display: inline-flex; align-items: center; gap: .5rem; }
#vMeta { display: inline; line-height: 1.7; }
.vac-hero__meta svg { width: 17px; height: 17px; }

.vac-tabs { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 80px; z-index: 40; }
.vac-tabs__inner { display: flex; gap: .5rem; overflow-x: auto; }
.vac-tab {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-head); font-weight: 500; color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: color .15s ease;
  white-space: nowrap;
}
.vac-tab svg { width: 17px; height: 17px; }
.vac-tab:hover { color: var(--navy-800); }
.vac-tab.is-active { color: var(--orange-600); border-bottom-color: var(--orange-500); }

.vac-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 34px; padding: 56px 0 72px; }
.vac-panel { display: none; }
.vac-panel.is-active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.vac-intro-card {
  background: linear-gradient(135deg, #FDFDFD 0%, #F4F5F6 100%);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 2rem;
  margin-bottom: 2.6rem;
}
.vac-intro-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: .8rem; }
.vac-facts { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.4rem; }
.vac-fact { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: .7rem 1.2rem; }
.vac-fact small { display: block; color: var(--text-muted); font-size: .78rem; }
.vac-fact strong { font-family: var(--font-head); color: var(--navy-800); font-size: 1rem; }

.vac-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2.2rem 0 1.2rem; }
.vac-content h2:first-child { margin-top: 0; }

.check-list li, .num-list li {
  display: flex; align-items: flex-start; gap: .9rem;
  background: linear-gradient(90deg, #FFFFFF 0%, #F7F8F9 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.05rem 1.3rem;
  margin-bottom: .85rem;
  color: var(--navy-800);
}
.check-list svg { width: 22px; height: 22px; flex: none; color: var(--orange-500); margin-top: .1rem; }
.num-list li > span:first-child {
  width: 28px; height: 28px; flex: none; border-radius: 8px;
  background: var(--orange-grad); color: var(--white);
  font-family: var(--font-head); font-size: .9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.num-list li > span + span { flex: 1; display: inline; width: auto; height: auto; background: none; }
.check-list li > span.tekst { flex: 1; }

.why-block { background: var(--navy-800); border-radius: 18px; padding: 2rem; margin-top: 2.6rem; }
.why-block h2 { color: var(--white); font-size: 1.35rem; font-weight: 700; margin-bottom: 1.4rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-item {
  display: flex; align-items: center; gap: .9rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: .95rem 1.1rem;
  color: var(--white); font-size: .95rem;
}
.why-item .ico {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  background: rgba(245,103,3,.18); color: var(--orange-400);
  display: flex; align-items: center; justify-content: center;
}
.why-item .ico svg { width: 20px; height: 20px; }

/* Benefits (Wat bieden we jou? / Daarom Mees) */
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.benefit-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.6rem;
}
.benefit-card .ico {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--orange-grad); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 18px rgba(245,103,3,.3);
}
.benefit-card .ico svg { width: 23px; height: 23px; }
.benefit-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; }
.benefit-card p { font-size: .92rem; color: var(--text-muted); }

/* FAQ */
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 14px; margin-bottom: .85rem; overflow: hidden; }
.faq-item button {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.3rem;
  font-family: var(--font-head); font-weight: 600; color: var(--navy-800); text-align: left;
}
.faq-item button svg { width: 18px; height: 18px; color: var(--text-muted); transition: transform .25s ease; flex: none; }
.faq-item.is-open button svg { transform: rotate(180deg); }
.faq-item .faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item .faq-body p { padding: 0 1.3rem 1.2rem; color: var(--text-body); }

/* Verhaal-detail artikel */
#vBody p { margin: 0 0 1.15rem; }
#vBody p:last-child { margin-bottom: 0; }

/* Vacature-detail: ruimte tussen alinea's uit de feed */
#vIntro p + p { margin-top: .9rem; }
#panel-overzicht .vac-content p + p { margin-top: .9rem; }

/* Proces-panel */
.proces-cta {
  display: flex; align-items: center; gap: 1.6rem; justify-content: space-between;
  background: radial-gradient(120% 200% at 85% 10%, #23345B 0%, var(--navy-800) 60%);
  border-radius: 18px; padding: 2rem; color: var(--white);
  flex-wrap: wrap;
}
.proces-cta h3 { color: var(--white); font-size: 1.25rem; font-weight: 700; margin-bottom: .4rem; }
.proces-cta p { color: #B9C1D2; font-size: .95rem; max-width: 420px; }
.proces-cta .ico {
  width: 48px; height: 48px; flex: none; border-radius: 13px;
  background: rgba(245,103,3,.2); color: var(--orange-400);
  display: flex; align-items: center; justify-content: center;
}

/* Sidebar */
.vac-aside { display: flex; flex-direction: column; gap: 24px; }
.aside-card { border-radius: 18px; overflow: hidden; }
.aside-card--img img { width: 100%; height: 230px; object-fit: cover; border-radius: 18px; }
.aside-card--apply {
  background: var(--orange-grad); color: var(--white);
  padding: 2rem; border-radius: 18px;
  box-shadow: 0 16px 36px rgba(245,103,3,.35);
}
.aside-card--apply h3 { color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: .4rem; }
.aside-card--apply > p { color: rgba(255,255,255,.92); font-size: .95rem; margin-bottom: 1.4rem; }
.aside-card--apply .btn { width: 100%; border-radius: 14px; }
.aside-card--apply .btn + .btn { margin-top: .7rem; }
.btn--apply-secondary { background: rgba(255,255,255,.18); color: var(--white); }
.btn--apply-secondary:hover { background: rgba(255,255,255,.28); }

.aside-card--contact { background: var(--white); border: 1px solid var(--border); padding: 1.8rem; }
.aside-card--contact h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .3rem; }
.aside-card--contact > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.3rem; }
.contact-line { display: flex; align-items: center; gap: .9rem; padding: .55rem 0; color: var(--navy-800); font-size: .95rem; }
.contact-line .ico {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  background: var(--bg-light); color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
}
.contact-line .ico svg { width: 18px; height: 18px; }

/* Proces tijdlijn */
.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; position: relative; padding-top: 10px; }
.timeline::before {
  content: ''; position: absolute; top: 33px; left: 8%; right: 8%;
  height: 2px; background: linear-gradient(90deg, var(--orange-soft), var(--orange-500), var(--orange-soft));
}
.timeline-step { text-align: center; position: relative; }
.timeline-step .ico {
  width: 48px; height: 48px; margin: 0 auto; border-radius: 50%;
  background: var(--orange-grad); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(245,103,3,.35);
  position: relative; z-index: 1;
}
.timeline-step .ico svg { width: 21px; height: 21px; }
.timeline-step .num {
  width: 22px; height: 22px; margin: -11px auto 0; border-radius: 50%;
  background: var(--white); border: 2px solid var(--orange-500); color: var(--orange-600);
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.timeline-step h3 { font-size: 1.05rem; font-weight: 700; margin: 1rem 0 .4rem; }
.timeline-step p { font-size: .85rem; color: var(--text-muted); }
.timeline-step .dur {
  display: inline-block; margin-top: .6rem;
  background: var(--bg-lighter); border: 1px solid var(--border);
  border-radius: 999px; padding: .2rem .8rem;
  font-size: .78rem; color: var(--text-muted);
}

/* Brede foto */
.photo-band img { width: 100%; height: 340px; object-fit: cover; }

/* Verhaal-media: vierkante foto met optioneel video ernaast */
.verhaal-media { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: 30px; align-items: stretch; padding: 48px 0 8px; }
.verhaal-media__foto { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 1 / 1; }
.verhaal-media__foto img { width: 100%; height: 100%; object-fit: cover; }
.verhaal-media__foto .story-card__cat { position: absolute; top: 18px; left: 18px; }
.verhaal-media__video { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card); background: var(--navy-800); }
.verhaal-media__video iframe { width: 100%; height: 100%; min-height: 380px; display: block; border: 0; }
.verhaal-media .vac-intro-card { margin-bottom: 0; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 860px) {
  .verhaal-media { grid-template-columns: minmax(0, 1fr); padding-top: 32px; }
  .verhaal-media__video iframe { min-height: 0; aspect-ratio: 16 / 9; }
}

/* Andere vacatures */
.mini-vac-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 2rem; }
.mini-vac {
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow-card);
  padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem;
  transition: transform .2s ease;
}
.mini-vac:hover { transform: translateY(-3px); }
.mini-vac__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.mini-vac__head h3 { font-size: 1.25rem; font-weight: 700; }
.mini-vac__head .ico {
  width: 38px; height: 38px; flex: none; border-radius: 10px;
  background: var(--orange-tint); color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
}
.mini-vac__head .ico svg { width: 17px; height: 17px; }
.mini-vac__loc { display: inline-flex; align-items: center; gap: .4rem; color: var(--text-muted); font-size: .9rem; }
.mini-vac__loc svg { width: 15px; height: 15px; }

/* Tips card */
.tips-card {
  display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); gap: 2rem;
  background: linear-gradient(100deg, #F2F3F5 0%, #FDF6F0 100%);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2.6rem;
  align-items: center;
}
.tips-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.2rem; }
.tips-card ul li { display: flex; gap: .8rem; align-items: baseline; padding: .35rem 0; color: var(--text-body); }
.tips-card ul li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--orange-500); flex: none; transform: translateY(-2px); }
.tips-card__contact { text-align: right; }
.tips-card__contact p { color: var(--text-muted); }
.tips-card__contact a { display: inline-block; margin-top: .6rem; font-family: var(--font-head); font-weight: 600; color: var(--orange-600); }

/* ---------- Daarom Mees ---------- */
.care-card {
  background: radial-gradient(130% 180% at 80% 0%, #23345B 0%, var(--navy-800) 58%);
  border-radius: 6px;
  text-align: center; color: var(--white);
  padding: 4.2rem 3rem;
}
.care-card h2 { color: var(--white); }
.care-card p { max-width: 780px; margin: 1.4rem auto 0; color: #C6CDDB; font-size: 1.05rem; }
.care-card .quote-chip {
  display: inline-block; margin-top: 2.2rem;
  background: rgba(255,255,255,.14); backdrop-filter: blur(4px);
  border-radius: 999px; padding: .85rem 2rem;
  font-family: var(--font-head); font-weight: 600; font-style: italic; font-size: 1.15rem;
}

.perks-section { background: radial-gradient(120% 130% at 90% 0%, #22335A 0%, var(--navy-800) 55%); color: var(--white); }
.perks-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 3.5rem; align-items: center; margin-bottom: 3.4rem; }
.perks-head .eyebrow-text { color: var(--orange-500); font-family: var(--font-head); font-weight: 600; letter-spacing: .22em; font-size: .8rem; text-transform: uppercase; }
.perks-head h2 { color: var(--white); margin-top: 1rem; }
.perks-head p { color: #AEB6C8; margin-top: 1.2rem; max-width: 520px; }
.perks-head__img { position: relative; z-index: 0; }
.perks-head__img img { border-radius: 4px; width: 100%; height: 380px; object-fit: cover; position: relative; z-index: 1; border-radius: 4px; }
.perks-head__img::after {
  content: ''; position: absolute; left: -22px; bottom: -22px;
  width: 110px; height: 110px; border-radius: 0 0 0 30px;
  background: var(--orange-grad);
  z-index: 0;
}
.perks-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.perk-card {
  background: rgba(41, 54, 81, .75);
  border: 1px solid rgba(255,255,255,.05);
  padding: 1.5rem 1.25rem;
  border-radius: 4px;
}
.perk-card svg { width: 26px; height: 26px; color: var(--orange-500); margin-bottom: 1rem; }
.perk-card h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: .45rem; }
.perk-card p { color: #A9B1C4; font-size: .85rem; line-height: 1.55; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 780px; margin-left: auto; margin-right: auto; }
.contact-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 2.2rem; text-align: center;
  box-shadow: var(--shadow-card);
}
.contact-card .ico {
  width: 56px; height: 56px; margin: 0 auto 1.2rem; border-radius: 16px;
  background: var(--orange-grad); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px rgba(245,103,3,.32);
}
.contact-card .ico svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .4rem; }
.contact-card p { color: var(--text-muted); font-size: .92rem; margin-bottom: 1rem; }
.contact-card a.big { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--orange-600); }

/* Vestigingen */
.vestiging-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.vestiging-card {
  position: relative;
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.7rem 1.5rem;
  box-shadow: 0 6px 20px rgba(19,30,54,.05);
}
.vestiging-card__flag { position: absolute; top: 1.1rem; right: 1.2rem; font-size: 1.25rem; }
.vestiging-card small { display: block; color: var(--text-muted); font-size: .82rem; }
.vestiging-card h3 { font-size: 1.35rem; font-weight: 700; margin: .15rem 0 .7rem; }
.vestiging-card .tel {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; color: var(--orange-600);
  margin-bottom: .7rem;
}
.vestiging-card .tel svg { width: 15px; height: 15px; }
.vestiging-card address { font-style: normal; font-size: .92rem; color: var(--text-body); line-height: 1.7; }
.vestiging-card--hoofd { background: var(--orange-grad); border: none; box-shadow: 0 14px 32px rgba(245,103,3,.35); }
.vestiging-card--hoofd small, .vestiging-card--hoofd address { color: rgba(255,255,255,.9); }
.vestiging-card--hoofd h3, .vestiging-card--hoofd .tel { color: var(--white); }
@media (max-width: 1080px) { .vestiging-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .vestiging-grid { grid-template-columns: minmax(0,1fr); } }

.visit-card {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 3rem;
}
.visit-card__body { padding: 3rem; }
.visit-card__body h2 { font-size: 1.7rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.4rem; }
.visit-card__body .contact-line { padding: .7rem 0; }
.visit-card img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #9AA3B8; }
.site-footer__main {
  display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr); gap: 3rem;
  padding: 72px 0 40px;
}
.site-footer__col a, .site-footer__col .val, .site-footer__brand > p { overflow-wrap: anywhere; }
.site-footer__brand img { height: 46px; margin-bottom: 1.4rem; }
.site-footer__brand > p { font-size: .93rem; max-width: 430px; }
.newsletter {
  margin-top: 1.6rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 1.4rem;
}
.newsletter h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.newsletter p { font-size: .84rem; margin-bottom: .9rem; }
.newsletter form { display: flex; gap: .6rem; }
.newsletter input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: .75rem 1rem; color: var(--white); outline: none;
}
.newsletter input::placeholder { color: #7B849B; }
.newsletter button {
  width: 52px; border-radius: 12px; flex: none;
  background: var(--orange-grad); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.newsletter button svg { width: 18px; height: 18px; }
.site-footer h5 {
  color: var(--white); font-family: var(--font-head); font-size: 1.02rem; font-weight: 700;
  padding-left: .9rem; border-left: 3px solid var(--orange-500);
  margin-bottom: 1.4rem;
}
.site-footer__col li { margin-bottom: .8rem; }
.site-footer__col a { font-size: .95rem; transition: color .15s ease; }
.site-footer__col a:hover { color: var(--white); }
.site-footer__col small { display: block; color: #6C7590; font-size: .8rem; }
.site-footer__col .val { color: #D5DAE5; font-size: .95rem; }
.site-footer__col li.gap { margin-bottom: 1.2rem; }

.site-footer__social { display: flex; justify-content: center; gap: 1rem; padding-bottom: 2.6rem; }
.site-footer__social a {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.06); color: #B8C0D0;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.site-footer__social a:hover { background: var(--orange-500); color: var(--white); }
.site-footer__social svg { width: 20px; height: 20px; }

.site-footer__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.5rem 0;
  font-size: .88rem;
}
.site-footer__bar > span { overflow-wrap: anywhere; }
.site-footer__bar .status { display: inline-flex; align-items: center; gap: .5rem; }
.site-footer__bar .status::before { content:''; width: 8px; height: 8px; border-radius: 50%; background: #3ECF6E; }
.site-footer__bar nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.site-footer__bar nav a:hover { color: var(--white); }
.site-footer__usps {
  display: flex; justify-content: center; gap: 2.4rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.3rem 0 2rem;
  font-size: .88rem; color: #7B849B;
}
.site-footer__usps span { display: inline-flex; align-items: center; gap: .55rem; }
.site-footer__usps svg { width: 17px; height: 17px; }

/* ---------- Presentatie (interne pagina) ---------- */
.pres-section h2 { margin-bottom: 1.6rem; }
.pres-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.pres-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; }
.pres-card--navy { background: var(--navy-800); border: none; }
.pres-card--navy h3, .pres-card--navy li { color: var(--white); }
.pres-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.2rem; }
.pres-card .check-list li, .pres-card .cross-list li { background: transparent; border: none; padding: .45rem 0; margin: 0; }
.cross-list li { display: flex; gap: .9rem; align-items: flex-start; color: var(--navy-800); }
.cross-list svg { width: 22px; height: 22px; flex: none; color: #D64545; margin-top: .1rem; }
.pres-card--navy .check-list li { color: #D8DCE6; }
.pres-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); }
.pres-table th { background: var(--navy-800); color: var(--white); font-family: var(--font-head); font-weight: 600; text-align: left; padding: 1rem 1.3rem; font-size: .92rem; }
.pres-table td { padding: .9rem 1.3rem; border-top: 1px solid var(--border); font-size: .93rem; vertical-align: top; }
.pres-table code { background: var(--bg-light); border-radius: 6px; padding: .15rem .5rem; font-size: .85rem; color: var(--navy-800); }
.tag { display: inline-block; border-radius: 999px; padding: .18rem .7rem; font-size: .78rem; font-weight: 600; }
.tag--ok { background: #E4F7EC; color: #1E8E4B; }
.tag--warn { background: #FDF0E3; color: #C05E0A; }
.tag--no { background: #FBE9E9; color: #C03A3A; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .force-grid { grid-template-columns: repeat(3, 1fr); }
  .perks-grid { grid-template-columns: repeat(3, 1fr); }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .vac-layout { grid-template-columns: 1fr; }
  .vac-aside { flex-direction: row; flex-wrap: wrap; }
  .vac-aside > * { flex: 1 1 320px; }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 2.4rem; }
  .timeline::before { display: none; }
  .site-footer__main { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
}

@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .site-nav {
    position: fixed; inset: 80px 0 auto 0;
    background: var(--navy-800);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: .6rem 24px 1.6rem;
    transform: translateY(-130%);
    transition: transform .28s ease;
    box-shadow: 0 24px 40px rgba(0,0,0,.35);
    z-index: 80;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { padding: .9rem 0; font-size: 1.15rem; width: 100%; border-bottom: 1px solid rgba(255,255,255,.07); }
  .site-nav a.is-active::after { display: none; }
  .nav-toggle { display: flex; }
  .site-header__cta { display: none; }

  .story-grid, .vacature-grid, .mini-vac-grid, .contact-grid { grid-template-columns: minmax(0,1fr); }
  .pres-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .mv-grid, .pres-cols, .benefit-grid, .why-grid { grid-template-columns: 1fr; }
  .perks-head { grid-template-columns: 1fr; }
  .visit-card { grid-template-columns: 1fr; }
  .tips-card { grid-template-columns: 1fr; }
  .tips-card__contact { text-align: left; }
  .section-head { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .section-head--center { align-items: center; } /* gecentreerde secties gecentreerd houden */
  /* Hero-badge: altijd op één regel */
  .hero .eyebrow--glass { font-size: .64rem; letter-spacing: .11em; padding: .5rem 1.05rem; white-space: nowrap; max-width: calc(100vw - 48px); }
  .searchbar { flex-wrap: wrap; padding: .8rem .9rem; gap: .7rem; border-radius: 16px; }
  .searchbar__icon { width: 18px; height: 18px; }
  /* 16px voorkomt dat iOS inzoomt bij focus op het veld */
  .searchbar input[type="search"] { flex: 1 1 0; min-width: 0; padding: .35rem 0; font-size: 16px; }
  .searchbar select { flex: 1 1 44%; max-width: none; padding: .65rem .8rem; font-size: 16px; }
  .searchbar .btn { flex: 1 1 100%; padding: .75rem 1.5rem; }
  /* Voorvertoning: iets ingesprongen t.o.v. de zoekbalk + meer binnenruimte */
  .suggest { border-radius: 14px; left: 8px; right: 8px; top: calc(100% + 8px); padding: .6rem; }
  .suggest__item { padding: .75rem .85rem; gap: .8rem; }
  .cta-strip__inner { justify-content: center; text-align: center; }
  .vac-tabs { top: 80px; }
}

@media (max-width: 640px) {
  .site-footer__main { grid-template-columns: minmax(0, 1fr); gap: 2.2rem; padding: 56px 0 32px; }
  .site-footer__main > * { min-width: 0; }
  .site-footer__brand > p { max-width: 100%; }
  .site-footer__bar { flex-direction: column; align-items: flex-start; }
  .site-footer__usps { gap: 1.2rem; }
}

@media (max-width: 560px) {
  .dept-grid, .force-grid, .perks-grid { grid-template-columns: minmax(0,1fr); }
  .vacature-card__logo { display: none; }
  .vacature-card__thumb { width: 84px; height: 84px; }
  .vacature-card__top { gap: 1rem; }
  .vacature-card__title h3 { font-size: 1.12rem; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .hero__inner { padding: 64px 20px 90px; }
  .stats-row { flex-direction: column; align-items: stretch; }
  .stat-pill { justify-content: center; }
}
