/* ============================================================
   COMPONENTS — knoppen, kaarten, header, footer, formulieren
   ============================================================ */

/* ------------------------------------------------------------
   Site header
   ------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: var(--space-8);
}
.site-nav > a,
.site-nav .nav-dropdown-trigger {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-decoration: none;
  padding: 10px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.site-nav > a:hover,
.site-nav > a.active,
.site-nav .nav-dropdown-trigger:hover {
  color: var(--color-navy);
  border-bottom-color: var(--color-accent);
}
.site-nav > a.active { color: var(--color-navy); }


/* Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger svg {
  transition: transform .15s ease;
}

.nav-dropdown[aria-open="true"] .nav-dropdown-trigger svg,
.nav-dropdown.open .nav-dropdown-trigger svg,
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

/* Hover-bridge zodat de muis van trigger naar panel kan bewegen zonder te sluiten */
.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  min-width: 280px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px -12px rgba(11,26,54,0.18), 0 0 0 1px rgba(11,26,54,0.06);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index: 200;
}

.nav-dropdown[aria-open="true"] .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel,
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-dropdown-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .12s ease;
}

.nav-dropdown-panel a:hover {
  background: var(--color-cream);
}

.nav-dropdown-panel .nav-item-title {
  display: block;
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  font-size: var(--fs-sm);
  line-height: 1.3;
}

.nav-dropdown-panel .nav-item-desc {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

.header-actions { margin-left: auto; display: flex; align-items: center; gap: var(--space-3); }
.header-actions .btn { padding: 10px 18px; }
.header-actions .btn-ghost svg { margin-right: -2px; }

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
}
.nav-mobile-sheet {
  display: none;
  padding: var(--space-5) var(--container-pad);
  border-top: 1px solid var(--color-border);
  background: #fff;
}
.nav-mobile-sheet:not([hidden]) { display: block; }
.nav-mobile-sheet a {
  display: block;
  padding: 12px 0;
  font-size: var(--fs-md);
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}
.nav-mobile-sheet a:last-child { border-bottom: 0; }
.nav-mobile-group { padding: 8px 0; border-bottom: 1px solid var(--color-border); }
.nav-mobile-label {
  display: block;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: 8px;
  margin-bottom: 4px;
}
.nav-mobile-group a { border-bottom: 0; padding: 8px 0; }
.nav-mobile-divider { height: 8px; }

@media (max-width: 960px) {
  .site-nav, .header-actions .btn-ghost, .header-actions .btn-dark { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .site-header .container { justify-content: space-between; }
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  line-height: 1;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-hover); }

.btn-dark { background: var(--color-navy); color: #fff; }
.btn-dark:hover { background: var(--color-navy-deep); }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.section-dark .btn-ghost {
  color: var(--color-text-inverse);
  border-color: var(--color-border-dark);
}
.btn-ghost:hover { background: var(--color-surface-muted); }
.section-dark .btn-ghost:hover { background: rgba(255,255,255,0.06); }

.btn-link {
  padding: 0;
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  background: none;
  border: 0;
}
.btn-link:hover { text-decoration: underline; }

.btn-pill {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: var(--fs-sm);
}

/* ------------------------------------------------------------
   Tags & labels
   ------------------------------------------------------------ */

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: var(--fs-xxs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  line-height: 1;
}
.tag-new,
.tag-hi {
  position: relative;
  padding: 6px 11px 7px;
  font-size: var(--fs-xxs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 7px; /* ruimte voor tail */
  color: #fff;
  line-height: 1;
}
.tag-new::after,
.tag-hi::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 100%;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
}
.tag-new { background: var(--color-accent); }
.tag-new::after { border-top: 7px solid var(--color-accent); }
.tag-hi  { background: var(--color-navy); }
.tag-hi::after  { border-top: 7px solid var(--color-navy); }
.tag-video {
  background: rgba(11,26,54,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px 4px 7px;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0;
  text-transform: none;
  border-radius: var(--radius-pill);
  line-height: 1;
  white-space: nowrap;
}
.tag-video svg {
  width: 9px;
  height: 9px;
  opacity: 0.95;
  flex-shrink: 0;
}

.chip {
  display: inline-block;
  padding: 8px 14px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}
.chip:hover { border-color: var(--color-text);  }
.chip-active { background: var(--color-navy); color: #fff; border-color: var(--color-navy); }

/* "Meer thema's" chip + dropdown */
.chip-more {
  background: transparent;
  color: var(--color-text-muted);
  border-style: dashed;
  flex-shrink: 0;
  min-width: 44px;
  padding-left: 12px;
  padding-right: 12px;
  font-variant-numeric: tabular-nums;
}
.chip-more[aria-expanded="true"] {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
  border-style: solid;
}
.theme-more-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--color-border, rgba(0,0,0,0.1));
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  padding: 6px;
  z-index: 20;
  display: flex;
  flex-direction: column;
}
.theme-more-menu[hidden] { display: none; }
.theme-more-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--color-text);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm, 6px);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.theme-more-item:hover { background: var(--color-cream-deep, rgba(0,0,0,0.04)); }
.theme-more-all {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border, rgba(0,0,0,0.08));
  color: var(--color-navy);
  font-weight: var(--fw-semibold);
}

/* ------------------------------------------------------------
   Mobile sheet (uitklapmenu onder header op kleine schermen)
   ------------------------------------------------------------ */

.nav-mobile-sheet a.btn { color: #fff; padding: 14px 20px; text-align: center; border-bottom: 0; }
.nav-mobile-sheet a.btn:hover { color: #fff; }
.nav-mobile-group { display: flex; flex-direction: column; padding-left: var(--space-4); }
.nav-mobile-group .nav-mobile-label {
  font-size: var(--fs-xxs); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide); text-transform: uppercase;
  color: var(--color-text-muted); margin: var(--space-2) 0 0;
  padding-left: 0;
}

@media (min-width: 961px) {
  .nav-mobile-sheet { display: none !important; }
}


/* ============================================================
   Tweaks panel
   ============================================================ */
#tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px -16px rgba(11,26,54,0.35), 0 0 0 1px rgba(11,26,54,0.08);
  font-family: var(--font-sans);
  z-index: 9999;
  overflow: hidden;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform .2s ease, opacity .2s ease;
}
#tweaks-panel.open { transform: none; opacity: 1; pointer-events: auto; }
#tweaks-panel .tw-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-cream);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
#tweaks-panel .tw-close {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 14px;
  padding: 4px;
}
#tweaks-panel .tw-body { padding: 14px; }
#tweaks-panel .tw-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
#tweaks-panel .tw-opts { display: grid; gap: 6px; }
#tweaks-panel .tw-opts button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: all .12s ease;
}
#tweaks-panel .tw-opts button:hover { border-color: var(--color-navy); }
#tweaks-panel .tw-opts button.active {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}
#tweaks-panel .tw-opts button strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-cream);
  color: var(--color-navy);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}
#tweaks-panel .tw-opts button.active strong {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.search-bar {
  background: var(--color-navy);
  padding: var(--space-5) 0;
}
.search-bar .container { }
.search-bar-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: var(--space-3);
}
.search-field {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0 var(--space-4);
  height: 48px;
}
.search-field input {
  border: 0;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: var(--fs-sm);
}
.search-field svg { color: var(--color-text-muted); flex-shrink: 0; }
.search-bar .btn-primary { height: 48px; padding: 0 22px; }

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

/* ============================================================
   HERO v2 — basis (tekst links, optioneel foto rechts)
   Varianten gestuurd door [data-hero] op <body>.
   ============================================================ */
.hero-v2 {
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
  isolation: isolate;
}
.hero-v2 .hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 6vw, 88px) var(--container-pad) clamp(44px, 5vw, 80px);
  max-width: var(--container-max);
  margin: 0 auto;
}
.hero-v2 .hero-copy { max-width: 620px; }
.hero-v2 .eyebrow,
.hero-v2 .hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.hero-v2 .hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
}
.hero-v2 .hero-title em {
  font-style: italic;
  color: var(--color-accent);
}
.hero-v2 .hero-lead {
  margin-top: var(--space-5);
  max-width: 48ch;
  font-size: var(--fs-lg);
  color: var(--color-text);
  opacity: .82;
}
.hero-v2 .hero-stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}
.hero-v2 .hero-stats > div { display: flex; flex-direction: column; gap: 2px; }
.hero-v2 .hero-stats strong {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1;
}
.hero-v2 .hero-stats span {
  font-size: 13px;
  color: var(--color-text-muted);
}
.hero-v2 .hero-bg { display: none; }

/* --- Variant A: Split + fade (DEFAULT) ----------------------- */
[data-hero="split"] .hero-v2 .hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
[data-hero="split"] .hero-v2 .hero-bg {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8dfd0 0%, #d6c5a8 100%);
}
[data-hero="split"] .hero-v2 .hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
@media (max-width: 900px) {
  [data-hero="split"] .hero-v2 .hero-inner { grid-template-columns: 1fr; }
  [data-hero="split"] .hero-v2 .hero-bg { aspect-ratio: 16/10; max-height: 360px; }
}

/* --- Variant F: Navy search bar onder hero ------------------- */
[data-hero="search-bar"] .hero-v2 .hero-inner {
  padding-bottom: clamp(36px, 4vw, 60px);
}

/* Verberg de aparte <section.search-bar> voor varianten die hem niet gebruiken */
body:not([data-hero="search-bar"]):not([data-hero="floating-pill"]) > .search-bar {
  display: none;
}

/* --- Variant E: Floating pill (half overhangend) ------------- */
[data-hero="floating-pill"] .hero-v2 {
  overflow: visible;
}
[data-hero="floating-pill"] .hero-v2 .hero-inner {
  padding-bottom: clamp(60px, 7vw, 96px);
  text-align: center;
}
[data-hero="floating-pill"] .hero-v2 .hero-copy {
  max-width: 720px;
  margin: 0 auto;
}
[data-hero="floating-pill"] .hero-v2 .hero-title {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
[data-hero="floating-pill"] .hero-v2 .hero-lead {
  margin-left: auto;
  margin-right: auto;
}
[data-hero="floating-pill"] .hero-v2 .hero-stats {
  justify-content: center;
}

/* Transformeer de aparte search-bar section naar een floating pill */
[data-hero="floating-pill"] .search-bar {
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 20;
  margin-top: clamp(-60px, -5.5vw, -48px);
  overflow: visible;
}
[data-hero="floating-pill"] .search-bar .container {
  display: block;
  max-width: 940px;
  margin: 44px auto 0;
  background: #fff;
  border-radius: 999px;
  padding: 10px;
  box-shadow: 0 24px 50px -18px rgba(11,26,54,0.35), 0 2px 10px rgba(11,26,54,0.12);
  border: 1px solid rgba(11,26,54,0.08);
}
[data-hero="floating-pill"] .search-bar .search-field {
  background: transparent;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 18px 0 44px;
}
[data-hero="floating-pill"] .search-bar-form .search-field-icon,
[data-hero="floating-pill"] .search-bar .search-field svg {
  color: var(--color-text-muted);
}
[data-hero="floating-pill"] .search-bar-form .search-field input,
[data-hero="floating-pill"] .search-bar .search-field input {
  color: var(--color-navy);
  font-size: 15px;
}
[data-hero="floating-pill"] .search-bar-form .search-field input::placeholder,
[data-hero="floating-pill"] .search-bar .search-field input::placeholder {
  color: var(--color-text-muted);
}
[data-hero="floating-pill"] .search-bar-form .search-field:focus-within,
[data-hero="floating-pill"] .search-bar .search-field:focus-within {
  background: rgba(11,26,54,0.04);
  box-shadow: none;
}
[data-hero="floating-pill"] .search-bar-form .search-bar-btn,
[data-hero="floating-pill"] .search-bar .btn-primary {
  border-radius: 999px;
  min-height: 48px;
  padding: 0 28px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
}
/* Volgende sectie: zorg voor ruimte onder de overhang */
[data-hero="floating-pill"] .search-bar + * {
  padding-top: calc(var(--space-16) + 40px);
}
@media (max-width: 980px) {
  [data-hero="floating-pill"] .search-bar .container {
    max-width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 720px) {
  [data-hero="floating-pill"] .search-bar .container {
    border-radius: 20px;
    margin-top: 24px;
  }
  [data-hero="floating-pill"] .search-bar-form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
  }
  [data-hero="floating-pill"] .search-bar-form .search-field + .search-field {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  [data-hero="floating-pill"] .search-bar-form .search-field,
  [data-hero="floating-pill"] .search-bar-form .search-bar-btn,
  [data-hero="floating-pill"] .search-bar .search-field,
  [data-hero="floating-pill"] .search-bar .btn-primary {
    border-radius: 12px;
  }
}

/* ------------------------------------------------------------
   Theme cards (Waar werk je aan?)
   ------------------------------------------------------------ */

.themes {
  background: var(--color-cream-deep);
  padding: var(--space-10) 0;
}
.themes-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: var(--space-6); gap: var(--space-4); }
.theme-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: var(--space-3);
}
.theme-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-4);
  transition: var(--transition);
  display: block;
}
.theme-card:hover { border-color: var(--color-accent); transform: translateY(-2px); }
.theme-card-title { font-weight: var(--fw-semibold); font-size: var(--fs-sm); margin-bottom: 4px; }
.theme-card-count { font-size: var(--fs-xs); color: var(--color-text-muted); }

@media (max-width: 1000px) { .theme-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .theme-grid { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------------------
   Vacancy list
   ------------------------------------------------------------ */

.vacancy-list { display: flex; flex-direction: column; gap: var(--space-3); }

.vacancy-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: var(--space-4);
  align-items: center;
  transition: var(--transition);
}
.vacancy-card:hover { border-color: var(--color-navy); box-shadow: var(--shadow-sm); }
.vacancy-logo {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: var(--fw-bold); font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
}
.vacancy-body .tags { display: flex; gap: 6px; margin-bottom: 6px; }
.vacancy-body h3 { font-size: var(--fs-lg); font-weight: var(--fw-semibold); margin-bottom: 2px; }
.vacancy-body .meta { font-size: var(--fs-sm); color: var(--color-text-muted); }
.vacancy-body .specs { display: flex; gap: var(--space-4); margin-top: 8px; font-size: var(--fs-xs); color: var(--color-text-muted); }
.vacancy-side { text-align: right; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.vacancy-side .date { font-size: var(--fs-xs); color: var(--color-text-muted); }

@media (max-width: 640px) {
  .vacancy-card { grid-template-columns: 40px 1fr; }
  .vacancy-side { grid-column: 2; text-align: left; align-items: flex-start; }
}

/* ------------------------------------------------------------
   Article card & featured article
   ------------------------------------------------------------ */

.article-featured {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.article-featured .cover {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1E2B4D 0%, #0B1A36 100%);
  margin-bottom: var(--space-4);
  background-size: cover;
  background-position: center;
}
.article-featured .cat {
  font-size: var(--fs-xxs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide);
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.article-featured h3 {
  font-family: var(--font-serif);
  font-weight: var(--fw-regular);
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-3);
}
.article-featured p { color: var(--color-text-muted); font-size: var(--fs-sm); }

.article-row-list { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-6); }
.article-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--space-4);
  align-items: center;
}
.article-row .thumb {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #1E2B4D 0%, #0B1A36 100%);
  background-size: cover; background-position: center;
}
.article-row .cat {
  font-size: var(--fs-xxs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.article-row h4 { font-size: var(--fs-sm); font-weight: var(--fw-semibold); line-height: var(--lh-snug); margin-top: 4px; }

/* ------------------------------------------------------------
   Story / Vacancy pair (Bij elk verhaal …)
   ------------------------------------------------------------ */

.pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-8);
}
.pair-card {
  background: var(--color-surface);
  color: var(--color-text);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.pair-card .cat {
  font-size: var(--fs-xxs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide);
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.pair-card h3 {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
}
.pair-card .desc { color: var(--color-text-muted); font-size: var(--fs-sm); margin-top: 8px; }
.pair-connector { display: flex; align-items: center; }
.pair-connector svg { width: 80px; height: auto; color: var(--color-accent); }

@media (max-width: 900px) {
  .pair { grid-template-columns: 1fr; }
  .pair-connector { justify-content: center; transform: rotate(90deg); }
}

/* ------------------------------------------------------------
   Employer cards
   ------------------------------------------------------------ */

.employer-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: block;
}
.employer-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.employer-card .cover {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1E2B4D 0%, #0B1A36 100%);
  position: relative;
  background-size: cover; background-position: center;
}
.employer-card .badge {
  position: absolute; top: 12px; left: 12px;
  width: 36px; height: 36px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-xxs);
  letter-spacing: var(--ls-wide);
}
.employer-card .info { padding: var(--space-4) var(--space-5); }
.employer-card .loc {
  font-size: var(--fs-xxs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.employer-card h3 {
  font-family: var(--font-serif);
  font-weight: var(--fw-regular);
  font-size: var(--fs-xl);
  margin-top: 6px;
}
.employer-card .cta {
  border-top: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-5);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  display: flex; align-items: center; justify-content: space-between;
}

/* ------------------------------------------------------------
   Newsletter
   ------------------------------------------------------------ */

.newsletter {
  background: var(--color-cream-deep);
  padding: var(--space-12) 0;
}
.newsletter .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.newsletter .newsletter-copy h2 {
  font-size: var(--fs-3xl);
  margin: 0;
  max-width: 18ch;
}
.newsletter .form {
  display: flex;
  gap: var(--space-3);
  background: var(--color-surface);
  padding: 10px 10px 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.newsletter input {
  flex: 1; border: 0; outline: none; background: transparent;
  font-size: var(--fs-sm);
}
.newsletter .btn-dark { height: 40px; padding: 0 18px; border-radius: var(--radius-sm); }
.newsletter .meta { font-size: var(--fs-xs); color: var(--color-text-muted); margin-top: 8px; }

@media (max-width: 820px) {
  .newsletter .container { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */

.site-footer {
  background: var(--color-navy-deep);
  color: var(--color-text-inverse);
  padding: var(--space-12) 0 var(--space-6);
}
.site-footer a { color: var(--color-text-inverse-muted); font-size: var(--fs-sm); }
.site-footer a:hover { color: var(--color-white); }

.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}
.footer-col h5 {
  font-size: var(--fs-xxs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-text-inverse-muted);
  margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-brand .logo-row { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); color: var(--color-text-inverse); }
.footer-brand .logo-row img { height: 28px; filter: brightness(1.1); }
.footer-logo-img { height: 28px; width: auto; pointer-events: none; color: #fff; }
.footer-brand p { color: var(--color-text-inverse-muted); font-size: var(--fs-sm); max-width: 36ch; }
.footer-brand .users {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; margin-top: var(--space-4);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs); color: var(--color-text-inverse);
}

.footer-bar {
  border-top: 1px solid var(--color-border-dark);
  padding-top: var(--space-5);
  display: flex; justify-content: space-between; gap: var(--space-4);
  font-size: var(--fs-xs);
  color: var(--color-text-inverse-muted);
}
.footer-bar-links { display: flex; gap: var(--space-6); }

@media (max-width: 820px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bar { flex-direction: column; gap: var(--space-3); }
}

/* ------------------------------------------------------------
   Generic page card / sidebar
   ------------------------------------------------------------ */

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.meta-row {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  font-size: var(--fs-sm); color: var(--color-text-muted);
}
.meta-row span { display: inline-flex; gap: 6px; align-items: center; }

/* Vacancy meta — definitielijst onder de titel op de vacature-detail */
.vacancy-meta-card {
  margin-bottom: var(--space-6);
  padding: var(--space-5) var(--space-6);
  background: var(--color-cream-deep);
  border-radius: var(--radius-md);
}
.vacancy-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4) var(--space-6);
  margin: 0;
}
.vacancy-meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.vacancy-meta dt {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide, .04em);
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
}
.vacancy-meta dd {
  margin: 0;
  font-size: var(--fs-md);
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .vacancy-meta { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------------------------------------
   Forms
   ------------------------------------------------------------ */

.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-4); }
.form-row label { font-size: var(--fs-sm); font-weight: var(--fw-medium); }
.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: var(--fs-sm);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

/* ------------------------------------------------------------
   Utilities
   ------------------------------------------------------------ */

.divider { height: 1px; background: var(--color-border); margin: var(--space-8) 0; }
.section-dark .divider { background: var(--color-border-dark); }

.orange-rule { height: 3px; background: var(--color-accent); width: 64px; border-radius: 2px; }
.top-orange-rule { background: var(--color-accent); height: 3px; }



.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-6); }
.section-head-sub { color: var(--color-text-muted); font-size: var(--fs-sm); margin-top: 4px; }

/* ------------------------------------------------------------
   PLACEHOLDERS — duidelijk herkenbaar, invulbaar met echte media
   ------------------------------------------------------------
   <div class="ph ph-photo" data-ph-label="Werkplek impressie"
        data-ph-ratio="16/9"></div>
   ------------------------------------------------------------ */
.ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #EAE4D4 0%, #D9D0B8 100%);
  color: #6B6450;
  font-family: var(--font-sans);
  isolation: isolate;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.25) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(45deg,  rgba(11,26,54,0.05)  0 1px, transparent 1px 14px);
  pointer-events: none;
}
.ph-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  text-align: center;
  max-width: 80%;
}
.ph-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,26,54,0.08);
  color: var(--color-navy);
}
.ph-icon svg { width: 22px; height: 22px; }
.ph-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-xwide);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  opacity: 0.75;
}
.ph-desc {
  font-size: var(--fs-sm);
  color: var(--color-text);
  opacity: 0.8;
  line-height: 1.35;
  max-width: 28ch;
}

/* Aspect-ratio varianten */
.ph[data-ph-ratio="1/1"]  { aspect-ratio: 1 / 1; }
.ph[data-ph-ratio="4/3"]  { aspect-ratio: 4 / 3; }
.ph[data-ph-ratio="16/9"] { aspect-ratio: 16 / 9; }
.ph[data-ph-ratio="21/9"] { aspect-ratio: 21 / 9; }
.ph[data-ph-ratio="3/4"]  { aspect-ratio: 3 / 4; }
.ph[data-ph-ratio="2/3"]  { aspect-ratio: 2 / 3; }

/* Media-type accenten */
.ph-photo {
  background: linear-gradient(135deg, #E4DCC7 0%, #CFC4A6 100%);
}
.ph-video {
  background: linear-gradient(135deg, #1E2E54 0%, #0B1A36 100%);
  color: var(--color-text-inverse);
}
.ph-video::before {
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 14px);
}
.ph-video .ph-icon { background: rgba(255,255,255,0.14); color: #fff; }
.ph-video .ph-label { color: rgba(255,255,255,0.85); }
.ph-video .ph-desc { color: rgba(255,255,255,0.9); }
.ph-video .ph-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.ph-video .ph-play-btn {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 8px rgba(255,255,255,0.08);
}
.ph-video .ph-play-btn svg { width: 28px; height: 28px; margin-left: 3px; }

.ph-avatar {
  border-radius: 50%;
  background: linear-gradient(135deg, #F3EEE2 0%, #D9D0B8 100%);
  aspect-ratio: 1 / 1;
}
.ph-avatar .ph-icon { background: rgba(11,26,54,0.1); }

/* ------------------------------------------------------------
   .ph-filled — placeholder heeft een foto via js/photos.js.
   De gradient-achtergrond wordt overruled door background-image.
   Op video's blijft de play-knop zichtbaar met een donkere wash.
   ------------------------------------------------------------ */
.ph-filled {
  background-color: transparent !important;
}
.ph-filled::before {
  display: none !important;
}
.ph-video.ph-filled {
  background-blend-mode: multiply;
  background-color: rgba(11, 26, 54, 0.35) !important;
}
.ph-video.ph-filled .ph-play {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
}

.ph-map {
  background:
    radial-gradient(circle at 50% 50%, rgba(232,92,26,0.15) 0 8px, transparent 9px),
    linear-gradient(135deg, #E8EEE3 0%, #D3DCC9 100%);
  color: #2B4029;
}
.ph-map::before {
  background-image:
    repeating-linear-gradient(0deg,  rgba(11,26,54,0.06) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(11,26,54,0.06) 0 1px, transparent 1px 32px);
}
.ph-map .ph-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
  color: var(--color-accent);
}
.ph-map .ph-pin svg { width: 36px; height: 36px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }

.ph-quote {
  background: var(--color-navy);
  color: var(--color-text-inverse);
  border-radius: var(--radius-lg);
}

.ph[data-ph-corner] .ph-body {
  position: absolute;
  bottom: 16px; left: 16px;
  align-items: flex-start;
  text-align: left;
  padding: 0;
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  backdrop-filter: blur(8px);
}
.ph[data-ph-corner] .ph-icon { display: none; }

/* ------------------------------------------------------------
   MAGAZINE HERO (werkgeverspagina)
   ------------------------------------------------------------ */
.mag-hero {
  position: relative;
  background: var(--color-cream);
  padding: var(--space-12) 0 var(--space-16);
  overflow: hidden;
}
.mag-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-10);
  align-items: end;
}
.mag-hero-eyebrow {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-xwide);
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
}
.mag-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 84px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-top: var(--space-4);
  color: var(--color-navy);
}
.mag-hero-title em {
  font-style: italic;
  color: var(--color-accent);
}
.mag-hero-lede {
  font-size: var(--fs-xl);
  line-height: 1.45;
  color: var(--color-text);
  max-width: 58ch;
  margin-top: var(--space-6);
}
.mag-hero-meta {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-6);
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.mag-hero-meta > span { display: inline-flex; gap: 6px; align-items: center; }
.mag-hero-meta strong { color: var(--color-text); font-weight: var(--fw-semibold); }
.mag-hero-img {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mag-hero-logo-chip {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
  margin-bottom: var(--space-5);
}
.mag-hero-logo-chip .logo-sq {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--color-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.mag-hero-img-wrap { position: relative; }

@media (max-width: 900px) {
  .mag-hero-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .mag-hero-img { aspect-ratio: 4 / 3; }
}

/* ------------------------------------------------------------
   QUICK NAV / STICKY SECTION BAR
   ------------------------------------------------------------ */
.sticky-subnav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}
.sticky-subnav-inner {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  align-items: center;
}
.sticky-subnav a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.sticky-subnav a.active,
.sticky-subnav a:hover {
  color: var(--color-navy);
  border-bottom-color: var(--color-accent);
}
/* De primary CTA in de subnav mag niet overschreven worden door de link-styling */
.sticky-subnav a.btn-primary,
.sticky-subnav a.btn-primary:hover,
.sticky-subnav a.btn-primary.active {
  color: #fff;
  border-bottom: 0;
}
.sticky-subnav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   VIDEO HERO BLOCK (prominent sfeervideo)
   ------------------------------------------------------------ */
.video-hero {
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-navy);
}
.video-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-10);
  background: linear-gradient(180deg, rgba(7,18,42,0) 40%, rgba(7,18,42,0.85) 100%);
  color: var(--color-text-inverse);
  z-index: 2;
}
.video-hero-overlay h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 400;
  line-height: 1.1;
  max-width: 22ch;
  color: #fff;
}
.video-hero-overlay p {
  max-width: 48ch;
  margin-top: var(--space-3);
  color: rgba(255,255,255,0.85);
}
.video-hero-play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  pointer-events: none;
}
.video-hero-play .btn {
  pointer-events: auto;
  gap: 8px;
}

/* ------------------------------------------------------------
   VALUES GRID (cultuur & kernwaarden)
   ------------------------------------------------------------ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.value-card .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.value-card .ico svg { width: 22px; height: 22px; }
.value-card h4 {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--color-navy);
}
.value-card p {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--color-text-muted);
}
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------------------------------------
   TESTIMONIALS CAROUSEL
   ------------------------------------------------------------ */
.testi-scroll {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--container-pad);
  padding-bottom: var(--space-4);
  margin: 0 calc(var(--container-pad) * -1);
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.testi-card {
  flex: 0 0 420px;
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.testi-card .ph-avatar { width: 64px; height: 64px; }
.testi-card blockquote {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-navy);
  font-style: italic;
  margin: 0;
}
.testi-card blockquote::before { content: "“"; color: var(--color-accent); margin-right: 2px; }
.testi-card blockquote::after  { content: "”"; color: var(--color-accent); margin-left: 2px; }
.testi-person {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.testi-person .name { font-weight: var(--fw-semibold); font-size: var(--fs-sm); color: var(--color-text); }
.testi-person .role { font-size: var(--fs-xs); color: var(--color-text-muted); margin-top: 2px; }

/* ------------------------------------------------------------
   PHOTO GALLERY GRID (masonry-achtig)
   ------------------------------------------------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: var(--space-3);
}
.gallery .ph { border-radius: var(--radius-md); }
.gallery .g-tall  { grid-row: span 2; }
.gallery .g-wide  { grid-column: span 2; }
.gallery .g-big   { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .gallery .g-big { grid-column: span 2; grid-row: span 2; }
}

/* ------------------------------------------------------------
   BENEFITS GRID
   ------------------------------------------------------------ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.benefit {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.benefit .ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--color-cream-deep);
  color: var(--color-navy);
  display: flex; align-items: center; justify-content: center;
}
.benefit .ico svg { width: 18px; height: 18px; }
.benefit strong { display: block; font-size: var(--fs-sm); color: var(--color-text); margin-bottom: 2px; }
.benefit span   { font-size: var(--fs-xs); color: var(--color-text-muted); line-height: 1.45; }
@media (max-width: 900px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   TEAM CARDS (wie ga je werken)
   ------------------------------------------------------------ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
}
.team-card .ph-avatar { width: 88px; height: 88px; margin: 0 auto var(--space-3); }
.team-card .name { font-weight: var(--fw-semibold); font-size: var(--fs-sm); color: var(--color-text); }
.team-card .role { font-size: var(--fs-xs); color: var(--color-text-muted); margin-top: 2px; }
.team-card .tag  { margin-top: 10px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------------------
   FEATURED QUOTE BLOCK (uitgelicht verhaal)
   ------------------------------------------------------------ */
.feat-quote {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-navy);
  color: var(--color-text-inverse);
}
.feat-quote .portrait { aspect-ratio: 3 / 4; min-height: 420px; }
.feat-quote .body {
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat-quote .body .eyebrow { color: var(--color-accent); }
.feat-quote .body blockquote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  margin: var(--space-4) 0 var(--space-6);
  font-style: italic;
}
.feat-quote .body cite {
  font-style: normal;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.8);
}
.feat-quote .body cite strong { display: block; color: #fff; font-size: var(--fs-md); margin-bottom: 2px; }
@media (max-width: 900px) { .feat-quote { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   EDITORIAL HERO (homepage v2)
   ------------------------------------------------------------ */
.ed-hero {
  background: var(--color-cream);
  padding-top: var(--space-10);
  padding-bottom: var(--space-12);
}
.ed-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-10);
  align-items: center;
}
.ed-hero-copy .eyebrow { color: var(--color-accent); }
.ed-hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-top: var(--space-3);
  color: var(--color-navy);
}
.ed-hero-copy h1 em { color: var(--color-accent); font-style: italic; }
.ed-hero-copy .dek {
  font-size: var(--fs-xl);
  line-height: 1.45;
  color: var(--color-text);
  margin-top: var(--space-5);
  max-width: 52ch;
}
.ed-hero-byline {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.ed-hero-byline .ph-avatar { width: 36px; height: 36px; }
.ed-hero-cta {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}
.ed-hero-img { border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 900px) { .ed-hero-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   HERO — CONTENT-FIRST (homepage default)
   Cream achtergrond + extra lucht + zachte golf-divider onder
   ------------------------------------------------------------ */
.hero-content-first {
  position: relative;
  background: var(--color-cream);
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(40px, 4vw, 56px);
  overflow: hidden;
}
/* Subtiel gekleurd accent-vlak in de hero zodat het een eigen "canvas" heeft */
.hero-content-first::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 0%, rgba(232, 92, 26, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(11, 26, 54, 0.035), transparent 55%);
  pointer-events: none;
}
.hero-content-first > .container { position: relative; z-index: 1; }

/* Zachte golvende divider onderaan de hero — scheidt visueel van witte sectie */
.hero-content-first::after {
  content: none;
}

/* Meer ademruimte binnen de hero-grid */
.hero-content-first .ed-hero-grid {
  gap: clamp(var(--space-8), 5vw, var(--space-12));
  margin-bottom: var(--space-8);
}
.hero-content-first .ed-hero-copy h1 {
  margin-top: var(--space-4);
}
.hero-content-first .ed-hero-copy .dek {
  margin-top: var(--space-6);
}
.hero-content-first .ed-hero-img {
  box-shadow: none;
}

/* ============================================================
   HERO FOTO — editorial portret met diepte (layered inside frame)
   De foto zelf krijgt diepte via: achtergrondgradient onder de foto,
   een zachte oranje glow vanuit een hoek, een vignet voor focus,
   een subtiele film-grain laag en een kleurfilter.
   ============================================================ */
.ed-hero-photo {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none !important;
  perspective: 1200px;
}
.ed-hero-photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  box-shadow: none;
  transform: translateZ(0);
  background: var(--color-navy);
}
/* Laag 1 — achterlaag: dezelfde foto, uitvergroot + blurred + donker = atmosferische diepte */
.ed-hero-photo-behind {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transform: scale(1.15);
  filter: blur(18px) saturate(0.85) brightness(0.55) contrast(1.1);
  opacity: 0.9;
}
/* Laag 2 — de foto zelf, scherp bovenop de blurred achterlaag */
.ed-hero-photo-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 3;
  filter: saturate(1.05) contrast(1.05);
  mask-image: radial-gradient(ellipse 90% 100% at 50% 45%, #000 55%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 90% 100% at 50% 45%, #000 55%, transparent 95%);
}
/* Laag 3 — weggehaald; foto licht niet meer op */
.ed-hero-photo-glow {
  display: none;
}
/* Laag 4 — vignet: donkere hoeken, lichtere focus in het midden-boven */
.ed-hero-photo-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 80% at 50% 35%, transparent 45%, rgba(0, 0, 0, 0.25) 85%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, transparent 50%, rgba(11, 26, 54, 0.75) 100%);
  z-index: 4;
  pointer-events: none;
}
/* Laag 5 — fijne korrel voor tactiele diepte (SVG noise via data-url) */
.ed-hero-photo-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.22;
  mix-blend-mode: overlay;
  z-index: 5;
  pointer-events: none;
}
/* Tag linksonder op de foto */
.ed-hero-photo-tag {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-5);
  right: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  z-index: 6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.ed-hero-photo-tag .tag-kind {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.ed-hero-photo-tag .tag-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.ed-hero-photo-tag .tag-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .ed-hero-photo { aspect-ratio: 4 / 3; }
}

/* Geïntegreerde compacte zoekbalk binnen de hero */
.hero-inline-search {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(11, 26, 54, 0.08);
}
.hero-search-form {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 10px;
  align-items: stretch;
  background: rgba(11, 26, 54, 0.05);
  padding: 8px;
  border-radius: 14px;
  box-shadow:
    inset 0 2px 4px rgba(11, 26, 54, 0.08),
    inset 0 0 0 1px rgba(11, 26, 54, 0.06);
}
.hero-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 10px;
  background: #fff;
  transition: box-shadow var(--transition);
  box-shadow: 0 1px 0 rgba(11, 26, 54, 0.04);
}
.hero-search-field:focus-within {
  box-shadow:
    0 0 0 2px var(--color-accent),
    0 1px 2px rgba(11, 26, 54, 0.08);
}
.hero-search-field svg { color: var(--color-text-muted); flex-shrink: 0; }
.hero-search-field input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--color-text);
  padding: 12px 0;
  min-width: 0;
}
.hero-search-field input::placeholder { color: var(--color-text-muted); }
.hero-search-field--loc { /* location field — styling gelijk aan eerste veld */ }
.hero-search-form .btn { min-height: 48px; padding: 0 22px; }

.hero-search-shortcuts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: var(--space-4);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.hero-search-shortcuts > span {
  font-size: var(--fs-xxs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
}
.hero-search-shortcuts a {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: var(--fw-medium);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(11, 26, 54, 0.05);
  transition: all var(--transition);
}
.hero-search-shortcuts a:hover {
  background: var(--color-navy);
  color: #fff;
}
.hero-search-shortcuts a.all-link {
  background: transparent;
  color: var(--color-accent);
  padding-left: 4px;
}
.hero-search-shortcuts a.all-link:hover {
  background: transparent;
  color: var(--color-accent-hover);
  text-decoration: underline;
}

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

/* Sectie-variant met minder top-padding (voor direct na hero) */
.section.section-tight {
  padding-top: clamp(40px, 4vw, 56px);
  padding-bottom: clamp(40px, 4vw, 56px);
}

/* ------------------------------------------------------------
   FEATURED VACANCIES — compacte 3-kolom strook (homepage)
   ------------------------------------------------------------ */
.featured-vacancies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.fv-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.fv-card:hover {
  border-color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.fv-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.fv-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-lg);
  line-height: 1.25;
  color: var(--color-navy);
  margin: 2px 0;
}
.fv-meta {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.fv-specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .featured-vacancies { grid-template-columns: 1fr; }
}

/* Portrait series — 4 col */
.portraits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.portrait-card { display: block; text-decoration: none; color: inherit; }
.portrait-card .ph {
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
/* Quote overlay onderin de foto */
.portrait-card .ph::after {
  content: "";
  position: absolute;
  inset: 40% 0 0 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
  border-radius: inherit;
}
.portrait-card .photo-quote {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-5) var(--space-5) var(--space-5);
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  z-index: 2;
  margin: 0;
}
.portrait-card .photo-quote::before {
  content: "\201C";
  display: inline;
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 1.15em;
  color: var(--color-accent, #E85D1F);
  margin-right: 3px;
  opacity: 0.95;
}
.portrait-card .name {
  display: block;
  font-weight: var(--fw-semibold);
  color: var(--color-accent, #E85D1F);
  margin-top: var(--space-3);
  font-size: var(--fs-md);
}
.portrait-card .role { font-size: var(--fs-xs); color: #333; margin-top: 2px; display: block; }
.portrait-card .quote {
  display: none;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--color-text);
  margin-top: var(--space-2);
  line-height: 1.35;
}
@media (max-width: 900px) { .portraits { grid-template-columns: repeat(2, 1fr); } }

/* Events list */
.events-list { display: flex; flex-direction: column; gap: var(--space-3); }
.event-row {
  display: grid;
  grid-template-columns: 84px 1fr auto auto;
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
}
.event-row:hover { border-color: var(--color-navy); }
.event-date {
  text-align: center;
  background: var(--color-cream-deep);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  line-height: 1;
}
.event-date .d { display: block; font-family: var(--font-serif); font-size: var(--fs-2xl); color: var(--color-navy); }
.event-date .m { display: block; font-size: var(--fs-xxs); text-transform: uppercase; letter-spacing: var(--ls-wide); margin-top: 4px; color: var(--color-text-muted); }
.event-row h4 { font-family: var(--font-serif); font-weight: 400; font-size: var(--fs-lg); color: var(--color-navy); }
.event-row .place { font-size: var(--fs-xs); color: var(--color-text-muted); margin-top: 2px; }
.event-row .where { font-size: var(--fs-sm); color: var(--color-text-muted); }
.event-row .go { color: var(--color-accent); font-weight: var(--fw-semibold); }
@media (max-width: 700px) {
  .event-row { grid-template-columns: 64px 1fr; }
  .event-row .where, .event-row .go { display: none; }
}

/* Podcast / video spotlight */
.spot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-6);
}
.spot-big { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.spot-big .ph { border-radius: 0; }
.spot-big .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(7,18,42,0) 40%, rgba(7,18,42,0.88) 100%);
  color: #fff;
}
.spot-big .overlay .eyebrow { color: rgba(255,255,255,0.85); }
.spot-big h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 400;
  line-height: 1.15;
  margin-top: var(--space-2);
  color: #fff;
}
.spot-side { display: flex; flex-direction: column; gap: var(--space-3); }
.spot-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
}
.spot-item .ph { border-radius: 8px; aspect-ratio: 16/10; }
.spot-item .cat { font-size: var(--fs-xxs); text-transform: uppercase; letter-spacing: var(--ls-wide); color: var(--color-text-muted); }
.spot-item h4 { font-family: var(--font-serif); font-weight: 400; font-size: var(--fs-md); line-height: 1.25; color: var(--color-navy); margin-top: 2px; }
@media (max-width: 900px) {
  .spot-grid { grid-template-columns: 1fr; }
  .spot-item { grid-template-columns: 100px 1fr; }
}

/* Basis .pillar — kaartvorm (gebruikt in o.a. loopbaantesten) */
.pillar {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  min-height: 220px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.pillar::before { content: none; }
.pillar > * { position: relative; z-index: 1; }
.pillar:hover { border-color: var(--color-navy); transform: translateY(-2px); }
.pillar h3 { font-family: var(--font-serif); font-weight: 400; font-size: var(--fs-2xl); line-height: 1.1; color: var(--color-navy); }
.pillar .pillar-desc { font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.45; }
.pillar .pillar-foot { display: flex; justify-content: space-between; align-items: center; font-size: var(--fs-sm); }
.pillar .pillar-foot .cnt { color: var(--color-text-muted); }
.pillar .pillar-foot .go  { color: var(--color-accent); font-weight: var(--fw-semibold); }

/* Pijler-blokken in thema-sectie — editorial variant: geen kaart, dunne dividers */

/* ================================================================
   HOMEPAGE BLOKKEN — exact gematcht aan homepage.png
   ================================================================ */

/* ----------------------------------------------------------------
   Gedeeld: block-header
   ---------------------------------------------------------------- */
.block-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}
.block-header > div { flex: 1; min-width: 0; }
.block-header .eyebrow { display: block; margin-bottom: var(--space-3); }
.block-header h2 { margin-top: 0; }
.block-header-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 6px;
}
.block-header-link:hover { text-decoration: underline; }

/* ----------------------------------------------------------------
   HERO (.hero-content-first)
   Crème — grote serif quote — foto loopt tot onderrand
   ---------------------------------------------------------------- */
.hero-content-first {
  background: var(--color-cream);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero-content-first .ed-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
  margin-bottom: 0;
}
.hero-content-first .ed-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(48px, 6vw, 80px);
}
.hero-content-first .ed-hero-copy .eyebrow {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.hero-content-first .ed-hero-copy h1,
.hero-content-first .hero-quote {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin: 0 0 var(--space-5);
}
.hero-content-first .hero-quote::before { content: '\201C'; }
.hero-content-first .hero-quote::after  { content: '\201D'; }
.hero-content-first .ed-hero-copy .dek {
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  max-width: 46ch;
}
.hero-content-first .ed-hero-byline {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}
.hero-content-first .ed-hero-byline img,
.hero-content-first .ed-hero-byline .byline-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.hero-content-first .ed-hero-byline .byline-naam {
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
}
.hero-content-first .ed-hero-cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.hero-content-first .ed-hero-img {
  align-self: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-content-first .ed-hero-photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.hero-content-first .ed-hero-photo-frame {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #C0914A;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 860px) {
  .hero-content-first .ed-hero-grid { grid-template-columns: 1fr; }
  .hero-content-first .ed-hero-img { display: none; }
  .hero-content-first .ed-hero-copy { padding-bottom: clamp(40px, 5vw, 64px); }
}

/* ----------------------------------------------------------------
   THEMA PIJLERS (.block-pillars)
   Crème — 3 kaarten gescheiden door verticale lijn, geen box
   ---------------------------------------------------------------- */
.block-pillars {
  background: var(--color-cream);
  padding: clamp(56px, 7vw, 96px) 0;
}
.block-pillars .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-6);
}
.block-pillars .pillar {
  padding: var(--space-8) var(--space-6) var(--space-6) 0;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: transparent;
  border-radius: 0;
  border-top: none;
  border-bottom: none;
  border-left: none;
}
.block-pillars .pillar:first-child { padding-left: 0; }
.block-pillars .pillar:last-child { border-right: none; padding-right: 0; padding-left: var(--space-6); }
.block-pillars .pillar:not(:first-child):not(:last-child) { padding-left: var(--space-6); }
.block-pillars .pillar .pillar-num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
}
.block-pillars .pillar h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.2;
  margin: 0;
}
.block-pillars .pillar h3 em {
  color: var(--color-accent);
  font-style: normal;
}
.block-pillars .pillar .pillar-desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}
.block-pillars .pillar .pillar-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.block-pillars .pillar .go {
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  font-size: var(--fs-lg);
}
@media (max-width: 760px) {
  .block-pillars .pillars-grid { grid-template-columns: 1fr; }
  .block-pillars .pillar { border-right: none; border-bottom: 1px solid var(--color-border); padding: var(--space-6) 0 !important; }
  .block-pillars .pillar:last-child { border-bottom: none; }
}

/* ----------------------------------------------------------------
   NEWSLETTER (.block-newsletter)
   Crème — tekst links, input + oranje knop rechts
   ---------------------------------------------------------------- */
.block-newsletter {
  background: var(--color-cream);
  padding: clamp(40px, 5vw, 56px) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.block-newsletter .newsletter-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-10);
  align-items: center;
}
.block-newsletter .newsletter-copy .eyebrow {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.block-newsletter .newsletter-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--color-navy);
  margin: 0 0 var(--space-2);
  line-height: 1.25;
}
.block-newsletter .newsletter-copy p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}
.block-newsletter .newsletter-form {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}
.block-newsletter .newsletter-form input[type="email"] {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-family: var(--font-sans);
  min-width: 240px;
  outline: none;
  background: #fff;
}
.block-newsletter .newsletter-form input[type="email"]:focus {
  border-color: var(--color-accent);
}
@media (max-width: 760px) {
  .block-newsletter .newsletter-strip { grid-template-columns: 1fr; }
  .block-newsletter .newsletter-form { flex-direction: column; align-items: stretch; }
  .block-newsletter .newsletter-form input[type="email"] { min-width: 0; }
}

/* ----------------------------------------------------------------
   PORTRETTEN (.block-portretten)
   Crème — 4 kolommen, citaat OP de foto, naam in oranje eronder
   ---------------------------------------------------------------- */
.block-portretten {
  background: #fff;
  padding: clamp(56px, 7vw, 96px) 0;
}
.block-portretten .portretten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.block-portretten .portret-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.block-portretten .portret-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-cream-deep);
  position: relative;
}
.block-portretten .portret-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.block-portretten .portret-photo .ph { width: 100%; height: 100%; }
/* Citaat staat OP de foto, onderaan */
.block-portretten .portret-photo blockquote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5);
  background: linear-gradient(to top, rgba(11,26,54,0.85) 0%, transparent 100%);
  margin: 0;
}
.block-portretten .portret-photo blockquote p {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}
.block-portretten .portret-photo blockquote p::before {
  content: '\201C';
  color: var(--color-accent);
  font-size: var(--fs-xl);
  line-height: 0;
  vertical-align: -4px;
  margin-right: 2px;
}
/* Naam in oranje onder de foto */
.block-portretten .portret-naam {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  margin: 0;
}
.block-portretten .portret-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin: 0;
}
@media (max-width: 900px) {
  .block-portretten .portretten-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .block-portretten .portretten-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   UITGELICHTE VACATURES (.block-vacatures)
   Crème — 3-koloms grid met logo-cirkel en badges
   ---------------------------------------------------------------- */
.block-vacatures {
  background: var(--color-cream);
  padding: clamp(56px, 7vw, 96px) 0;
}
.block-vacatures .vacatures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.vacature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}
.vacature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.vacature-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}
.vacancy-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  flex-shrink: 0;
}
/* Badge — spraakwolk stijl */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-xxs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  position: relative;
}
.badge::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.badge-nieuw {
  background: var(--color-accent);
  color: #fff;
}
.badge-nieuw::after {
  border-top: 5px solid var(--color-accent);
}
.badge-uitgelicht {
  background: var(--color-navy);
  color: #fff;
}
.badge-uitgelicht::after {
  border-top: 5px solid var(--color-navy);
}
.badge-outline {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.badge-outline::after { display: none; }
.vacature-card h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.25;
}
.vacature-card .vac-org {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.vacature-card .vac-meta {
  display: flex;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  list-style: none;
  margin: auto 0 0;
  padding: var(--space-4) 0 0;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.vacature-card .vac-meta li + li::before {
  content: '·';
  margin-right: var(--space-2);
  opacity: 0.5;
}
.empty-state {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
  padding: var(--space-12) 0;
}
@media (max-width: 760px) {
  .block-vacatures .vacatures-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   WERKGEVER SPOTLIGHT (.block-spotlight)
   Navy — header balk vol breed bovenaan, dan 2-koloms
   ---------------------------------------------------------------- */
.block-spotlight {
  background: var(--color-navy);
  color: var(--color-text-inverse);
  padding: clamp(48px, 6vw, 80px) 0;
}
.block-spotlight .spotlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(32px, 4vw, 56px);
  gap: var(--space-6);
}
.block-spotlight .spotlight-header .eyebrow {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.block-spotlight .spotlight-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  margin: 0;
}
.block-spotlight .spotlight-header h2 em {
  color: var(--color-accent);
  font-style: normal;
}
.block-spotlight .spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.block-spotlight .spotlight-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #122744;
}
.block-spotlight .spotlight-visual img,
.block-spotlight .spotlight-visual .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  max-height: none;
}
.block-spotlight .spotlight-copy { display: flex; flex-direction: column; gap: var(--space-5); }
.block-spotlight .spotlight-text {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--color-text-inverse-muted);
}
.block-spotlight .spotlight-stats {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.block-spotlight .spotlight-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}
.block-spotlight .spotlight-stats .stat-waarde {
  font-family: var(--font-numeric);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  line-height: 1;
}
.block-spotlight .spotlight-stats .stat-label {
  font-size: var(--fs-xs);
  color: var(--color-text-inverse-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}
.block-spotlight .spotlight-quote {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-5) var(--space-6);
}
.block-spotlight .spotlight-quote p {
  font-size: var(--fs-md);
  color: #fff;
  line-height: 1.6;
  margin: 0 0 var(--space-3);
}
.block-spotlight .spotlight-quote cite {
  font-style: normal;
  font-size: var(--fs-xs);
  color: var(--color-text-inverse-muted);
}
@media (max-width: 900px) {
  .block-spotlight .spotlight-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   EVENTS (.block-events)
   Crème — asymmetrisch: tekst links smal, kaarten rechts breed
   ---------------------------------------------------------------- */
.block-events {
  background: var(--color-cream);
  padding: clamp(56px, 7vw, 96px) 0;
}
.block-events .events-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-10);
  align-items: start;
}
.block-events .events-intro .eyebrow {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.block-events .events-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.15;
  margin: 0 0 var(--space-4);
}
.block-events .events-intro h2 em {
  color: var(--color-accent);
  font-style: italic;
}
.block-events .events-intro p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-5);
}
.block-events .events-intro .block-header-link {
  display: inline-block;
  padding-top: 0;
}
.block-events .events-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.block-events .event-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: var(--space-5);
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition);
}
.block-events .event-card:hover { box-shadow: var(--shadow-md); }
.block-events .event-date {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-align: center;
}
.block-events .event-date .day {
  font-family: var(--font-numeric);
  font-size: 26px;
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  line-height: 1;
}
.block-events .event-date .month {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-text-muted);
  margin-top: 2px;
}
.block-events .event-card h3 {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  margin: 0 0 4px;
}
.block-events .event-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  flex-wrap: wrap;
}
.block-events .event-meta li + li::before { content: '·'; margin-right: var(--space-2); opacity: 0.5; }
.block-events .event-link {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.block-events .event-link .arrow { color: var(--color-accent); font-size: var(--fs-lg); }
@media (max-width: 860px) {
  .block-events .events-layout { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .block-events .event-card { grid-template-columns: 56px 1fr; }
  .block-events .event-link { display: none; }
}

/* ----------------------------------------------------------------
   FINAL CTA (.final-cta)
   Navy — gecentreerd — knoppen naast elkaar
   ---------------------------------------------------------------- */
.final-cta {
  background: var(--color-navy);
  padding: clamp(80px, 10vw, 140px) 0;
}
.final-cta .container { text-align: center; }
.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  max-width: 680px;
  margin: 0 auto;
}
.final-cta .eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
}
.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}
.final-cta h2 em { color: var(--color-accent); font-style: normal; }
.final-cta p {
  font-size: var(--fs-md);
  color: var(--color-text-inverse-muted);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}
.final-cta-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
}
.final-cta-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: transparent;
}
.final-cta-actions .btn-ghost:hover { background: rgba(255,255,255,0.07); }
.final-cta-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-inverse-muted);
}

/* ----------------------------------------------------------------
   LOOPBAANTESTEN (.block-tests)
   Crème — 3-koloms grid, duur+gratis label, decoratieve cirkel
   ---------------------------------------------------------------- */
.block-tests {
  background: var(--color-cream);
  padding: clamp(56px, 7vw, 96px) 0;
}
.block-tests .tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.block-tests .test-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.block-tests .test-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
/* Decoratieve cirkel rechtsboven */
.block-tests .test-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  pointer-events: none;
}
.block-tests .test-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  position: relative;
  z-index: 1;
}
.block-tests .test-card h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.25;
  margin: 0;
  position: relative;
  z-index: 1;
}
.block-tests .test-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
  margin: 0;
  position: relative;
  z-index: 1;
}
.block-tests .test-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}
.block-tests .test-count {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}
.block-tests .test-foot .go {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  text-decoration: none;
}
.block-tests .test-foot .go:hover { text-decoration: underline; }
@media (max-width: 760px) {
  .block-tests .tests-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   WERKGEVERS SHOWCASE (.logo-strip)
   Navy — grote serif h2 — 4 stats met lijn — scrollende tiles
   ---------------------------------------------------------------- */
.logo-strip {
  background: var(--color-navy);
  color: var(--color-text-inverse);
  padding: clamp(64px, 8vw, 112px) 0;
}
.logo-strip-head {
  max-width: 800px;
  margin-bottom: var(--space-8);
}
.logo-strip-head .eyebrow {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.logo-strip-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 var(--space-5);
}
.logo-strip-head h2 em { color: var(--color-accent); font-style: normal; }
.logo-strip-head p {
  font-size: var(--fs-md);
  color: var(--color-text-inverse-muted);
  line-height: 1.6;
  max-width: 60ch;
}
/* 4 grote stats met verticale lijnen ertussen */
.logo-strip-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin: var(--space-8) 0;
  padding: var(--space-8) 0;
  gap: 0;
}
.logo-strip-stats > div {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: 0 var(--space-8);
  border-right: 1px solid rgba(255,255,255,0.15);
}
.logo-strip-stats > div:first-child { padding-left: 0; }
.logo-strip-stats > div:last-child { border-right: none; }
.logo-strip-stats strong {
  font-family: var(--font-numeric);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
}
.logo-strip-stats span {
  font-size: var(--fs-xs);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  font-weight: var(--fw-semibold);
}
/* Scrollende werkgever-tiles */
.logo-strip-inner {
  position: relative;
  overflow: hidden;
}
.logo-strip-inner::before,
.logo-strip-inner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 12px;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-strip-inner::before {
  left: 0;
  background: linear-gradient(to right, #0e1624 0%, rgba(14,22,36,0) 100%);
}
.logo-strip-inner::after {
  right: 0;
  background: linear-gradient(to left, #0e1624 0%, rgba(14,22,36,0) 100%);
}
.logo-strip-row {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: var(--space-3);
}
.logo-strip-row::-webkit-scrollbar { display: none; }
.logo-strip-row .logo-tile {
  flex-shrink: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5);
  min-width: 200px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: background var(--transition), border-color var(--transition);
}
.logo-strip-row .logo-tile:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}
.logo-strip-row .logo-tile .tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-strip-row .logo-tile .tile-kind {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
}
.logo-strip-row .logo-tile .tile-arrow { color: rgba(255,255,255,0.4); font-size: var(--fs-md); }
.logo-strip-row .logo-tile .tile-name {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}
.logo-strip-row .logo-tile .tile-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-inverse-muted);
}
/* Gecentreerde outline CTA knop onderaan */
.logo-strip-cta {
  margin-top: var(--space-10);
  text-align: center;
}
.logo-strip-cta .btn-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  padding: 14px var(--space-8);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: var(--transition);
}
.logo-strip-cta .btn-more:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.5); }
@media (max-width: 760px) {
  .logo-strip-stats { grid-template-columns: repeat(2, 1fr); }
  .logo-strip-stats > div:nth-child(2) { border-right: none; }
  .logo-strip-stats > div:nth-child(3) { padding-left: 0; border-top: 1px solid rgba(255,255,255,0.15); padding-top: var(--space-6); margin-top: var(--space-2); }
}

/* ----------------------------------------------------------------
   PODCAST (.block-podcast)
   Crème — 3 thumbnails met oranje play-knop + titel eronder
   ---------------------------------------------------------------- */
.block-podcast {
  background: var(--color-cream);
  padding: clamp(56px, 7vw, 96px) 0;
}
.block-podcast .podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.block-podcast .podcast-item { display: flex; flex-direction: column; gap: var(--space-3); }
.block-podcast .podcast-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-navy);
  position: relative;
}
.block-podcast .podcast-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.block-podcast .podcast-media .ph { width: 100%; height: 100%; }
/* Oranje play-knop gecentreerd */
.block-podcast .podcast-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.block-podcast .podcast-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.block-podcast .podcast-media:hover .podcast-play-btn { transform: scale(1.1); }
.block-podcast .podcast-play-btn svg { color: #fff; }
.block-podcast .podcast-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
}
.block-podcast .podcast-titel {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 760px) {
  .block-podcast .podcast-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   WERKGEVERS STROOK (.block-employers) — lichte logo rij
   ---------------------------------------------------------------- */
.block-employers {
  background: #fff;
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--color-border);
}
.block-employers .employer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-6);
}
.block-employers .employer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
}
.block-employers .employer-logo:hover { border-color: var(--color-navy); }
.block-employers .employer-logo img { max-height: 36px; width: auto; }
.block-employers .employer-name { font-size: var(--fs-sm); color: var(--color-text-muted); }

/* ----------------------------------------------------------------
   EIND CTA (.block-final-cta)
   ---------------------------------------------------------------- */
.block-final-cta {
  background: var(--color-navy);
  padding: clamp(64px, 8vw, 112px) 0;
  color: #fff;
}
.block-final-cta .final-cta-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.block-final-cta h2 { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 52px); font-weight: 400; color: #fff; margin: 0; }
.block-final-cta .lead { color: rgba(255,255,255,0.7); font-size: var(--fs-md); margin: 0; }
.block-final-cta .eyebrow { color: var(--color-accent); }
.block-final-cta .final-cta-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; }
.block-final-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.3); background: transparent; }

/* ============================================================
   SPACING FIX — consistente verticale ritme (gulden snede)
   Alle secties krijgen dezelfde padding: clamp(64px, 8vw, 96px)
   Donkere secties (navy) krijgen iets meer: clamp(80px, 9vw, 120px)
   ============================================================ */

/* Lichte secties */
.block-pillars,
.block-newsletter,
.block-portretten,
.block-vacatures,
.block-tests,
.block-events,
.block-podcast,
.block-employers { padding: clamp(64px, 8vw, 96px) 0; }

/* Donkere secties — iets meer lucht */
.block-spotlight,
.logo-strip { padding: clamp(80px, 9vw, 112px) 0; }

/* Final CTA — gecentreerd, iets minder dan donker */
.final-cta { padding: clamp(72px, 9vw, 104px) 0; }

/* Newsletter compact houden */
.block-newsletter { padding: clamp(48px, 5vw, 64px) 0; }



/* ================================================================
   VACANCY DETAIL — definitief
   ================================================================ */
.vacancy-detail { background: var(--color-cream); }

.vd-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-sm); color: var(--color-text-muted);
  text-decoration: none; margin-bottom: var(--space-8);
}
.vd-back:hover { color: var(--color-navy); }

/* Hero */
.vd-hero {
  background: var(--color-cream);
  padding: var(--space-8) 0 var(--space-12);
  border-bottom: 1px solid var(--color-border);
}
.vd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-10);
  align-items: start;
}
.vd-breadcrumb {
  display: flex; align-items: center; gap: var(--space-2);
  margin-bottom: var(--space-4); flex-wrap: wrap;
  font-size: var(--fs-sm); color: var(--color-text-muted);
}
.vd-h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 400; line-height: 1.1;
  color: var(--color-navy);
  margin: 0 0 var(--space-4); max-width: 22ch;
}
.vd-intro {
  font-size: var(--fs-md); line-height: 1.6;
  color: var(--color-text-muted); max-width: 52ch;
  margin: 0 0 var(--space-5);
}
.vd-pills {
  display: flex; flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.vd-pills span {
  font-size: var(--fs-sm); color: var(--color-text-muted);
  padding-right: var(--space-4); margin-right: var(--space-4);
  border-right: 1px solid var(--color-border); line-height: 1.8;
}
.vd-pills span:last-child { border-right: none; margin-right: 0; padding-right: 0; }

/* Hero aside */
.vd-hero-aside { display: flex; flex-direction: column; gap: var(--space-3); }

/* Shared card */
.vd-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); padding: var(--space-5);
}
.vd-logo-wrap { display: flex; gap: var(--space-4); align-items: center; }
.vd-logo {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--color-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: var(--fw-bold); font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide); flex-shrink: 0;
}
.vd-card-label {
  font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: var(--ls-wide); color: var(--color-text-muted); margin: 0 0 2px;
}
.vd-card strong { display: block; font-size: var(--fs-md); font-weight: var(--fw-semibold); color: var(--color-navy); }
.vd-card-sub { font-size: var(--fs-xs); color: var(--color-text-muted); margin: 2px 0 0; line-height: 1.4; }

/* Specs */
.vd-specs {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); overflow: hidden;
}
.vd-spec {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-3) var(--space-5); border-bottom: 1px solid var(--color-border);
}
.vd-spec:last-child { border-bottom: none; }
.vd-spec span { font-size: var(--fs-sm); color: var(--color-text-muted); }
.vd-spec b { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--color-navy); }

/* Cover */
.vd-cover {
  width: 100%; height: clamp(220px, 32vw, 500px);
  overflow: hidden; position: relative;
}
.vd-cover__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vd-cover--video iframe {
  width: 100%; height: 100%; border: none; display: block;
}

/* Body */
.vd-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-10);
  align-items: start;
  padding: var(--space-10) 0 var(--space-8);
}
.vd-prose { min-width: 0; }

.vd-section {
  margin-top: var(--space-10);
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-border);
}
.vd-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400; color: var(--color-navy);
  margin: 0 0 var(--space-5);
}
.vd-section--highlight {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); padding: var(--space-8);
  margin-top: var(--space-10);
  border-top: 1px solid var(--color-border) !important;
}
.vd-section--highlight h2 { margin-top: 0; }

/* Prose */
.prose { max-width: 64ch; }
.prose p { font-size: var(--fs-md); line-height: 1.75; color: var(--color-text); margin: 0 0 var(--space-3); }
.prose ul, .prose ol { padding-left: var(--space-5); margin: var(--space-2) 0 var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.prose li { font-size: var(--fs-md); line-height: 1.6; color: var(--color-text); }
.prose h2 { font-family: var(--font-serif); font-size: var(--fs-2xl); font-weight: 400; color: var(--color-navy); margin: var(--space-6) 0 var(--space-3); }
.prose h3 { font-family: var(--font-serif); font-size: var(--fs-xl); font-weight: 400; color: var(--color-navy); margin: var(--space-5) 0 var(--space-2); }

/* Gallery */
.vd-gallery {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: var(--space-3); margin-top: var(--space-10);
  border-radius: var(--radius-xl); overflow: hidden;
}
.vd-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* Video embed */
.vd-video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: var(--radius-xl); margin-top: var(--space-5);
}
.vd-video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

/* Bottom CTA */
.vd-cta-band {
  padding: 0 0 var(--space-16);
  background: var(--color-cream);
}
.vd-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  background: var(--color-navy);
  border-radius: 16px;
  padding: var(--space-6) var(--space-7);
  box-sizing: border-box;
}
.vd-bottom-cta > div { flex: 1; min-width: 0; }
.vd-bottom-cta strong {
  display: block;
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: #fff;
  margin-bottom: 4px;
}
.vd-bottom-cta strong {
  display: block; font-size: var(--fs-lg); font-weight: var(--fw-semibold);
  color: #fff; margin-bottom: var(--space-1);
}
.vd-bottom-cta p {
  font-size: var(--fs-sm); color: rgba(255,255,255,0.65); margin: 0; line-height: 1.5;
}
.vd-bottom-cta .btn-primary {
  flex-shrink: 0; white-space: nowrap;
  background: var(--color-accent); border-color: var(--color-accent);
}

/* Body sidebar — sticky, ruimte voor navbar */
.vd-body-sidebar {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: var(--space-3);
}

/* Responsive */
@media (max-width: 860px) {
  .vd-hero-grid   { grid-template-columns: 1fr; }
  .vd-hero-aside  { display: none; }
  .vd-body        { grid-template-columns: 1fr; }
  .vd-body-sidebar { position: static; }
  .vd-bottom-cta  { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   EMPLOYER ARCHIVE
   ================================================================ */
.emp-archive-hero {
  padding: clamp(64px,8vw,96px) 0 clamp(40px,5vw,64px);
  background: var(--color-cream);
}
.emp-archive-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px,5vw,68px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--color-navy);
  margin: var(--space-3) 0 var(--space-4);
  max-width: 18ch;
}
.emp-archive-hero h1 em { color: var(--color-accent); font-style: normal; }
.emp-archive-hero .lead { max-width: 56ch; color: var(--color-text-muted); }

/* Filter bar */
.emp-filter-bar {
  background: var(--color-cream);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.emp-filter-tabs {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}
.emp-tab {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
  background: #fff;
}
.emp-tab:hover, .emp-tab--active {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}
.emp-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.emp-search-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-4);
  flex: 1;
  max-width: 400px;
  color: var(--color-text-muted);
}
.emp-search-input {
  border: none;
  background: transparent;
  font-size: var(--fs-sm);
  width: 100%;
  outline: none;
  font-family: var(--font-sans);
}
.emp-sort-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.emp-sort-select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
  font-family: var(--font-sans);
  background: #fff;
  outline: none;
  cursor: pointer;
}

/* Featured grid */
.emp-featured { padding: clamp(48px,6vw,80px) 0 0; background: var(--color-cream); }
.emp-featured-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-5);
}
.emp-feat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.emp-feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.emp-feat-thumb {
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emp-feat-initials {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,.3);
}
.emp-feat-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.emp-feat-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.emp-feat-body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }
.emp-feat-meta {
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide);
  color: var(--color-text-muted);
  margin: 0;
}
.emp-feat-body h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--color-navy);
  margin: 0;
}
.emp-feat-body p { font-size: var(--fs-sm); color: var(--color-text-muted); margin: 0; line-height: 1.5; flex: 1; }
.emp-feat-jobs { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--color-accent); margin-top: auto; }

/* All employers grid */
.emp-all { padding: clamp(48px,6vw,80px) 0 clamp(64px,8vw,96px); background: var(--color-cream); }
.emp-all-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  gap: var(--space-4);
}
.emp-all-head h2 { font-family: var(--font-serif); font-weight: 400; color: var(--color-navy); margin: 0; }
.emp-alphabet {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}
.emp-alphabet a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}
.emp-alphabet a:hover { background: var(--color-border); color: var(--color-navy); }
.emp-alpha-active { background: var(--color-navy) !important; color: #fff !important; border-radius: 50% !important; }
.emp-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--space-5);
}
.emp-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.emp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.emp-card-thumb {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emp-card-initials { font-size: 22px; font-weight: var(--fw-bold); color: rgba(255,255,255,.3); }
.emp-card-body { padding: var(--space-4) var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }
.emp-card-meta { font-size: 10px; font-weight: var(--fw-semibold); letter-spacing: var(--ls-xwide); color: var(--color-text-muted); margin: 0; }
.emp-card-body h3 { font-family: var(--font-serif); font-size: var(--fs-lg); font-weight: 400; color: var(--color-navy); margin: 0; }
.emp-card-jobs { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--color-accent); display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.emp-load-more { text-align: center; margin-top: var(--space-10); }

@media (max-width: 900px) { .emp-featured-grid { grid-template-columns: 1fr; } .emp-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .emp-grid { grid-template-columns: 1fr; } }

/* ================================================================
   EMPLOYER SINGLE
   ================================================================ */
.emp-detail { background: var(--color-cream); }

.emp-hero {
  padding: clamp(48px,6vw,80px) 0;
  color: #fff;
}
.emp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  text-decoration: none;
  margin-bottom: var(--space-8);
  transition: color var(--transition);
}
.emp-back:hover { color: #fff; }
.emp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-10);
  align-items: center;
}
.emp-hero-meta {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-xwide);
  color: rgba(255,255,255,.6);
  margin: 0 0 var(--space-4);
}
.emp-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px,5vw,68px);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 var(--space-4);
  max-width: 18ch;
}
.emp-hero-title em { color: var(--color-accent); font-style: normal; }
.emp-hero-tagline {
  font-size: var(--fs-xl);
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,.8);
  margin: 0 0 var(--space-3);
}
.emp-hero-intro { font-size: var(--fs-md); color: rgba(255,255,255,.7); line-height: 1.6; margin: 0 0 var(--space-6); max-width: 52ch; }
.emp-hero-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-8); }
.emp-ghost-light { color: #fff; border-color: rgba(255,255,255,.3); background: transparent; }
.emp-ghost-light:hover { background: rgba(255,255,255,.1); }
.emp-hero-stats { display: flex; gap: var(--space-8); flex-wrap: wrap; }
.emp-hero-stats > div { display: flex; flex-direction: column; gap: 2px; }
.emp-hero-stats strong { font-size: clamp(20px,3vw,32px); font-weight: var(--fw-bold); color: #fff; line-height: 1; }
.emp-hero-stats span { font-size: var(--fs-xs); color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: var(--ls-wide); }
.emp-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  aspect-ratio: 1;
  overflow: hidden;
}
.emp-hero-logo { width: 100%; height: 100%; object-fit: contain; padding: var(--space-8); }
.emp-hero-initials { font-size: 64px; font-weight: var(--fw-bold); color: rgba(255,255,255,.3); }

/* Video / cover */
.emp-video-wrap { padding: var(--space-10) 0 0; background: var(--color-cream); }
.emp-video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-xl); }
.emp-video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.emp-cover { width: 100%; height: clamp(240px,30vw,480px); overflow: hidden; }
.emp-cover-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Benefits */
.emp-benefits {
  padding: clamp(56px,7vw,96px) 0;
  background: var(--color-cream);
}
.emp-benefits h2 { font-family: var(--font-serif); font-weight: 400; color: var(--color-navy); margin: var(--space-3) 0 var(--space-8); font-size: clamp(24px,3vw,40px); }
.emp-benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-5); }
.emp-benefit-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.emp-benefit-card h4 { font-family: var(--font-serif); font-size: var(--fs-lg); font-weight: 400; color: var(--color-navy); margin: 0 0 var(--space-2); }
.emp-benefit-card p { font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .emp-benefits-grid { grid-template-columns: repeat(2,1fr); } }

/* Testimonials */
.emp-testi { padding: clamp(56px,7vw,96px) 0; background: #fff; }
.emp-testi h2 { font-family: var(--font-serif); font-weight: 400; color: var(--color-navy); margin: var(--space-3) 0 0; font-size: clamp(24px,3vw,40px); }
.emp-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-6); }
.emp-testi-card { display: flex; flex-direction: column; gap: var(--space-3); }
.emp-testi-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-cream);
  position: relative;
}
.emp-testi-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.emp-testi-photo .ph { width: 100%; height: 100%; }
.emp-testi-quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-4);
  background: linear-gradient(to top, rgba(11,26,54,.85) 0%, transparent 100%);
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  font-style: italic;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
.emp-testi-name { font-size: var(--fs-md); font-weight: var(--fw-semibold); color: var(--color-accent); }
.emp-testi-role { font-size: var(--fs-xs); color: var(--color-text-muted); }
@media (max-width: 760px) { .emp-testi-grid { grid-template-columns: 1fr; } }

/* Quote band */
.emp-quote-band {
  background: var(--color-navy);
  padding: clamp(56px,7vw,96px) 0;
}
.emp-quote-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.emp-quote-inner .eyebrow { color: var(--color-accent); }
.emp-quote-inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px,3vw,36px);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
.emp-quote-inner cite { font-style: normal; font-size: var(--fs-sm); color: rgba(255,255,255,.6); }

/* Gallery */
.emp-gallery-section { padding: clamp(56px,7vw,96px) 0; background: var(--color-cream); }
.emp-gallery-section h2 { font-family: var(--font-serif); font-weight: 400; color: var(--color-navy); margin: var(--space-3) 0 var(--space-8); font-size: clamp(24px,3vw,40px); }
.emp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-3);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.emp-gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* Vacatures op werkgever pagina */
.emp-vacatures { padding: clamp(56px,7vw,96px) 0; background: var(--color-cream); }
.emp-vacatures .vacatures-grid { grid-template-columns: repeat(3,1fr); }

@media (max-width: 860px) {
  .emp-hero-grid { grid-template-columns: 1fr; }
  .emp-hero-visual { display: none; }
  .emp-vacatures .vacatures-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   EMPLOYER SINGLE — extra secties
   ================================================================ */

/* Sticky subnav */
.emp-subnav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
}
.emp-subnav .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.emp-subnav-links { display: flex; gap: var(--space-6); flex-wrap: wrap; }
.emp-subnav-links a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-1) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.emp-subnav-links a:hover { color: var(--color-navy); border-color: var(--color-navy); }

/* Wie zijn we */
.emp-wie { padding: clamp(56px,7vw,96px) 0; background: var(--color-cream); }
.emp-wie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,80px);
  align-items: center;
}
.emp-wie-copy { display: flex; flex-direction: column; gap: var(--space-4); }
.emp-wie-copy h2 { font-family: var(--font-serif); font-size: clamp(24px,3vw,40px); font-weight: 400; color: var(--color-navy); margin: 0; line-height: 1.15; }
.emp-wie-copy .prose { max-width: none; }
.emp-wie-copy .go { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--color-accent); text-decoration: none; }
.emp-wie-copy .go:hover { text-decoration: underline; }
.emp-wie-visual { border-radius: var(--radius-xl); overflow: hidden; }
.emp-wie-img { width: 100%; height: auto; display: block; border-radius: var(--radius-xl); }
.emp-video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-xl); }
.emp-video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
@media (max-width: 760px) { .emp-wie-grid { grid-template-columns: 1fr; } }

/* Big quote met foto */
.emp-big-quote {
  background: var(--color-navy);
  padding: clamp(56px,7vw,96px) 0;
}
.emp-big-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,80px);
  align-items: center;
}
.emp-big-quote-photo { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 3/4; }
.emp-big-quote-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.emp-big-quote-copy { display: flex; flex-direction: column; gap: var(--space-5); }
.emp-big-quote-copy .eyebrow { display: block; }
.emp-big-quote-copy blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px,3vw,36px);
  font-style: italic;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
.emp-big-quote-copy cite { font-style: normal; font-size: var(--fs-sm); color: rgba(255,255,255,.6); }
@media (max-width: 760px) { .emp-big-quote-grid { grid-template-columns: 1fr; } .emp-big-quote-photo { display: none; } }

/* Gallery mosaic */
.emp-gallery-section { padding: clamp(56px,7vw,96px) 0; background: var(--color-cream); }
.emp-gallery-section h2 { font-family: var(--font-serif); font-weight: 400; color: var(--color-navy); margin: var(--space-2) 0; font-size: clamp(24px,3vw,40px); }
.emp-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: var(--space-3);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.emp-gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.emp-gallery-img--0 { grid-column: 1; grid-row: 1 / 3; }
.emp-gallery-img--1 { grid-column: 2; grid-row: 1; }
.emp-gallery-img--2 { grid-column: 3; grid-row: 1; }
.emp-gallery-img--3 { grid-column: 2; grid-row: 2; }
.emp-gallery-img--4 { grid-column: 3; grid-row: 2; }

/* CAO sectie */
.emp-cao { padding: clamp(56px,7vw,96px) 0; background: #fff; }
.emp-cao h2 { font-family: var(--font-serif); font-weight: 400; color: var(--color-navy); margin: var(--space-2) 0 var(--space-3); font-size: clamp(24px,3vw,40px); }
.emp-cao .lead { color: var(--color-text-muted); max-width: 56ch; margin-bottom: var(--space-8); }
.emp-cao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.emp-cao-item {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.emp-cao-item strong { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--color-navy); }
.emp-cao-item span { font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.5; }
@media (max-width: 760px) { .emp-cao-grid { grid-template-columns: repeat(2,1fr); } }

/* Team sectie */
.emp-team { padding: clamp(56px,7vw,96px) 0; background: var(--color-cream); }
.emp-team h2 { font-family: var(--font-serif); font-weight: 400; color: var(--color-navy); margin: var(--space-2) 0 var(--space-8); font-size: clamp(24px,3vw,40px); }
.emp-team-grid {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.emp-team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
  width: 80px;
}
.emp-team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.emp-team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.emp-team-initials { color: #fff; font-weight: var(--fw-bold); font-size: var(--fs-lg); }
.emp-team-member strong { font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: var(--color-navy); line-height: 1.3; }
.emp-team-member span { font-size: 10px; color: var(--color-text-muted); line-height: 1.3; }

/* Vacatures op werkgever */
.emp-vacatures { padding: clamp(56px,7vw,96px) 0; background: var(--color-cream); }
.emp-vacatures .vacatures-grid { grid-template-columns: repeat(3,1fr); }
@media (max-width: 860px) { .emp-vacatures .vacatures-grid { grid-template-columns: 1fr; } }

/* Newsletter */
.emp-newsletter {
  background: var(--color-navy);
  padding: clamp(64px,8vw,96px) 0;
  text-align: center;
}
.emp-newsletter .container { max-width: 600px; }
.emp-newsletter h2 { font-family: var(--font-serif); font-size: clamp(26px,4vw,44px); font-weight: 400; color: #fff; margin: var(--space-4) 0 var(--space-3); line-height: 1.15; }
.emp-newsletter h2 em { color: var(--color-accent); font-style: italic; }
.emp-newsletter p { color: rgba(255,255,255,.65); font-size: var(--fs-md); margin-bottom: var(--space-8); }
.emp-newsletter-form { display: flex; gap: var(--space-2); max-width: 440px; margin: 0 auto; }
.emp-newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  outline: none;
}

/* ── Grote quote kaart (crème sectie, foto links + navy kaart rechts) ── */
.emp-bigquote-section {
  padding: clamp(56px,7vw,96px) 0;
  background: var(--color-cream);
}
.emp-bigquote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
}
.emp-bigquote-photo { position: relative; overflow: hidden; background: var(--color-cream-deep); }
.emp-bigquote-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.emp-bigquote-card {
  background: var(--color-navy);
  padding: clamp(40px,5vw,64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-5);
}
.emp-bigquote-card .eyebrow { display: block; }
.emp-bigquote-card blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px,2.5vw,30px);
  font-style: italic;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}
.emp-bigquote-card cite {
  font-style: normal;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,.7);
}
.emp-bigquote-card cite span { font-weight: 400; color: rgba(255,255,255,.5); }
@media (max-width: 760px) { .emp-bigquote-grid { grid-template-columns: 1fr; } .emp-bigquote-photo { display: none; } }

/* Testimonials header */
.emp-testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  gap: var(--space-4);
}
.emp-testi-header h2 { font-family: var(--font-serif); font-weight: 400; color: var(--color-navy); margin: var(--space-2) 0 0; font-size: clamp(24px,3vw,40px); }

/* Gallery head */
.emp-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  gap: var(--space-4);
}
.emp-gallery-head h2 { font-family: var(--font-serif); font-weight: 400; color: var(--color-navy); margin: var(--space-2) 0 0; font-size: clamp(24px,3vw,40px); }

/* ── Hero cover foto (vervangt logo in hero) ── */
.emp-hero-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}
.emp-hero-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
}

/* ── Logo op witte achtergrond in Wie zijn we ── */
.emp-wie-logo {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  margin-bottom: var(--space-2);
}
.emp-wie-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* ── Archive: foto over kleur-achtergrond ── */
.emp-feat-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.emp-card-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.emp-feat-thumb { position: relative; }
.emp-card-thumb { position: relative; }

/* ── Team sectie — grotere tekst, beter leesbaar ── */
.emp-team { padding: clamp(56px,7vw,96px) 0; background: var(--color-cream); }
.emp-team .eyebrow { display: block; margin-bottom: var(--space-3); }
.emp-team h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px,4vw,56px);
  font-weight: 400;
  color: var(--color-navy);
  margin: 0 0 var(--space-10);
  line-height: 1.1;
}
.emp-team-grid {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  align-items: flex-start;
}
.emp-team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
  width: 100px;
}
.emp-team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.emp-team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.emp-team-initials { color: #fff; font-weight: var(--fw-bold); font-size: var(--fs-xl); }
.emp-team-member strong {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  line-height: 1.4;
  display: block;
}
.emp-team-member span {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.4;
  display: block;
}

/* ── Archive alphabet full A-Z ── */
.emp-alphabet {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  align-items: center;
}
.emp-alphabet a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  padding: 0 4px;
}
.emp-alphabet a:hover { background: var(--color-border); color: var(--color-navy); }
.emp-alpha-active {
  background: var(--color-navy) !important;
  color: #fff !important;
  border-radius: 50% !important;
}
