/* ============================================================
   THE SOURCING PARTNERS — GEDEELDE STIJL (subpagina's)
   index.html heeft een eigen inline stylesheet en gebruikt dit niet.
   ============================================================ */

/* Core Circus — primair display-lettertype (pad relatief t.o.v. dit
   bestand in /assets) */
@font-face {
  font-family: "Core Circus";
  src: url("fonts/CoreCircus.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy:      #162340;
  --navy-mid:  #1B3A4B;
  --navy-soft: #243B55;
  --zand:      #D9CFC3;
  --cream:     #F7F4F0;
  --wit:       #FFFFFF;
  --ease: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Playfair Display", Georgia, serif;
  background: var(--navy);
  color: var(--wit);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ------------------------------------------------------------
   TYPOGRAFIE-HELPERS
   ------------------------------------------------------------ */
.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  display: block;
}
.faded { opacity: 0.35; }

.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(29px, 3.8vw, 51px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-top: 14px;
}
.section-head p,
.lead {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 22px;
  opacity: 0.85;
  max-width: 760px;
}

/* ------------------------------------------------------------
   KNOPPEN (geen border-radius)
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  border-radius: 0;
  border: 1px solid currentColor;
  background: transparent;
  padding: 12px 24px;
  cursor: pointer;
  transition: opacity var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn:hover { opacity: 0.7; }
.btn .arrow { transition: transform var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--light { color: var(--wit); border-color: rgba(255, 255, 255, 0.6); }
.btn--dark  { color: var(--navy); border-color: var(--navy); }
.btn--solid { background: var(--navy); color: var(--wit); border-color: var(--navy); }
.btn--solid:hover { opacity: 1; background: var(--navy-soft); border-color: var(--navy-soft); }

/* ------------------------------------------------------------
   SECTIES
   ------------------------------------------------------------ */
.section {
  padding: var(--padding-section, clamp(40px, 4.5vw, 96px)) 48px;
  position: relative;
}
.section__inner { max-width: 1240px; margin: 0 auto; }
.section--navy     { background: var(--navy);     color: var(--wit); }
.section--navy-mid { background: var(--navy-mid);  color: var(--wit); }
.section--cream    { background: var(--cream);     color: var(--navy); }
.section--zand     { background: var(--zand);      color: var(--navy); }
.section--cream .eyebrow,
.section--zand .eyebrow { color: var(--navy-mid); }
.section--navy .eyebrow,
.section--navy-mid .eyebrow { color: var(--zand); }

/* Diagonale overgang (optioneel via .has-edge) */
.edge-top {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 70px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

/* ------------------------------------------------------------
   KAARTEN-GRID
   ------------------------------------------------------------ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border: 1px solid transparent;
  transition: transform var(--ease), background var(--ease);
}
.card--navy      { background: var(--navy);     color: var(--wit); }
.card--navy-mid  { background: var(--navy-mid);  color: var(--wit); }
.card--cream     { background: var(--cream);     color: var(--navy); border-color: rgba(22,35,64,0.18); }
.card--zand      { background: var(--zand);      color: var(--navy); }
.card--outline   { background: transparent; border-color: rgba(255,255,255,0.18); color: var(--wit); }

.card__num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 14px;
}
.card__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.card__text {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
}
.card__link {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
}
.card__link .arrow { transition: transform var(--ease); }
.card:hover .card__link .arrow,
.card__link:hover .arrow { transform: translateX(8px); }

/* ------------------------------------------------------------
   LIJSTEN / SIGNALEN / BULLETS
   ------------------------------------------------------------ */
.tick-list { list-style: none; }
.tick-list li {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  line-height: 1.6;
  padding: 14px 0 14px 28px;
  position: relative;
  border-bottom: 1px solid rgba(127, 127, 127, 0.18);
}
.tick-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0.6;
}
.tick-list li:last-child { border-bottom: 0; }

/* ------------------------------------------------------------
   TIJDLIJN (horizontale stappen)
   ------------------------------------------------------------ */
.timeline {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 20px;
}
.timeline__step {
  padding: 32px 28px;
  border-top: 2px solid currentColor;
}
.timeline__num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.timeline__text {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ------------------------------------------------------------
   GROOT STAT-BLOK
   ------------------------------------------------------------ */
.stat-block {
  padding: 42px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-block__num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(41px, 5.1vw, 71px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.stat-block__label {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 420px;
}

/* ------------------------------------------------------------
   FAQ (details/summary — geen JS nodig)
   ------------------------------------------------------------ */
.faq { max-width: 820px; margin-top: 16px; }
.faq details {
  border-bottom: 1px solid rgba(22, 35, 64, 0.18);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  transition: opacity var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; }
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { opacity: 0.7; }
.faq__body {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.85;
  padding: 0 0 24px;
  max-width: 860px;
}

/* ------------------------------------------------------------
   PRIVACY / CITAAT-BLOK
   ------------------------------------------------------------ */
.note {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  max-width: 860px;
}

/* ------------------------------------------------------------
   CTA-BAND
   ------------------------------------------------------------ */
.cta-band {
  padding: var(--padding-section, clamp(40px, 4.5vw, 96px)) 48px;
  text-align: center;
}
.cta-band h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(31px, 4.25vw, 54px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.cta-band p {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  opacity: 0.8;
  margin-top: 24px;
}

/* ------------------------------------------------------------
   TEAM
   ------------------------------------------------------------ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--navy);
  margin-bottom: 18px;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--wit);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.1em;
}
.team-card__name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 19px;
  letter-spacing: 0.02em;
}
.team-card__role {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.6;
  margin: 6px 0 14px;
}
.team-card__bio {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.85;
}
.team-card__contact {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
}
.team-card__contact a { text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------------------------------------
   CLIENT MARQUEE
   ------------------------------------------------------------ */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee__item {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 22px;
  color: rgba(22, 35, 64, 0.35);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   MAP-PLACEHOLDER
   ------------------------------------------------------------ */
.map-ph {
  background: var(--navy);
  color: var(--wit);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.8;
}

/* ------------------------------------------------------------
   FORMULIEREN
   ------------------------------------------------------------ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.form-card {
  background: var(--wit);
  border: 1px solid rgba(22, 35, 64, 0.15);
  padding: 40px;
  color: var(--navy);
}
.form-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 0.02em;
  margin: 8px 0 24px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 6px;
  opacity: 0.7;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(22, 35, 64, 0.25);
  border-radius: 0;
  padding: 12px 14px;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--navy); }
.microcopy { font-size: 13px; opacity: 0.7; margin: 6px 0 18px; }
.form-confirm {
  display: none;
  margin-top: 18px;
  padding: 16px;
  background: var(--navy);
  color: var(--wit);
  font-size: 15px;
  line-height: 1.6;
}
.form-confirm.show { display: block; }

/* ------------------------------------------------------------
   ARTIKELEN
   ------------------------------------------------------------ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--wit);
  color: var(--navy);
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(22, 35, 64, 0.12);
  transition: transform var(--ease);
}
.article-card:hover { transform: translateY(-4px); }
.article-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pill {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 4px 10px;
  background: var(--navy);
  color: var(--wit);
}
.pill--mid { background: var(--navy-mid); }
.pill--zand { background: var(--zand); color: var(--navy); }
.article-card__date {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  font-size: 12px;
  opacity: 0.6;
}
.article-card__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.article-card__teaser {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 18px;
}
.article-card__link {
  margin-top: auto;
  display: inline-flex;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
}
.article-card__link .arrow { transition: transform var(--ease); }
.article-card:hover .article-card__link .arrow { transform: translateX(6px); }

.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.featured h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 41px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 18px 0;
}

/* insight tiles (grote letter) */
.tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 32px;
  background: var(--navy-mid);
  color: var(--wit);
  transition: background var(--ease);
}
.tile:hover { background: var(--navy-soft); }
.tile__letter {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 68px;
  line-height: 0.9;
}
.tile__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 20px;
  margin-top: 16px;
}
.tile__link {
  margin-top: 12px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
}

/* ------------------------------------------------------------
   VACATURES
   ------------------------------------------------------------ */
.filter-bar {
  position: sticky;
  top: 72px;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.filter-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 8px 18px;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn.active,
.filter-btn:hover { background: var(--navy); color: var(--wit); }
.filter-search {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  padding: 10px 16px;
  border: 1px solid rgba(22, 35, 64, 0.3);
  background: var(--wit);
  color: var(--navy);
  min-width: 240px;
}
.filter-search:focus { outline: none; border-color: var(--navy); }

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.vacancy {
  background: var(--wit);
  color: var(--navy);
  border: 1px solid rgba(22, 35, 64, 0.12);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vacancy__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.badge {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 4px 10px;
}
.badge--open { background: #1f7a4d; color: #fff; }
.badge--filled { background: rgba(22,35,64,0.12); color: var(--navy); }
.vacancy__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}
.vacancy__meta { font-family: "Playfair Display", serif; font-size: 14px; opacity: 0.75; }
.vacancy__link {
  margin-top: auto;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
}
.vacancy[hidden] { display: none; }

/* ============================================================
   HERO — uniform fundament (navbar-safe), variant A (foto) / B (navy)
   ============================================================ */
.hero,
.page-hero,
.dienst-hero,
.voor-wie-hero,
section[class*="hero"] {
  min-height: 55vh;         /* consistente hero-hoogte op alle subpagina's */
  max-height: 65vh;
}
.hero {
  position: relative;
  padding-top: 72px;        /* navbar-hoogte vrijhouden — blijft 72px */
  padding-bottom: 75px;     /* 25% compacter (was 100px) */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  z-index: 1;
}
/* Variant A — met foto (background-image per pagina ingesteld) */
.hero.heeft-foto {
  background-color: var(--navy);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}
/* Variant B — zonder foto: navy gradient + één subtiel beeldmerk rechts */
.hero.geen-foto {
  background: linear-gradient(145deg, #162340 0%, #1B3A4B 55%, #162340 100%);
}
.hero.geen-foto::before {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 50vh;
  height: 50vh;
  background-image: url('beeldmerk-creme.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
/* Content altijd onderaan, gecentreerd op max-breedte */
.hero-content {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1240px;
  padding: 0 5%;
  position: relative;
  z-index: 2;
}
/* ── GEDEELDE HERO-TYPOGRAFIE (consistent op alle pagina's) ── */
.hero-eyebrow {
  font-family: "Core Circus", "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wit);
  opacity: 0.65;
  margin-bottom: 16px;
}
.hero h1,
.hero-titel {
  font-family: "Core Circus", "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.7vw, 37px);
  line-height: 1.0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 20px;
  padding: 0;
  display: block;
}
/* Ghost/gedimde subkop — vast gedimd + breekt netjes af (geen overflow) */
.hero h1 .faded,
.hero-titel-faded {
  color: #fff;
  opacity: 0.28;
  margin-top: -8px;
  margin-bottom: 28px;
  white-space: normal;
  word-break: break-word;
  max-width: 90%;
  overflow: hidden;
}
.hero__subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--wit);
  opacity: 0.88;
  max-width: 520px;
  margin-top: 18px;
}
/* Hero-intro: Cormorant italic accent onder de H1 (gedeeld) */
.hero-intro {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin-top: 16px;
}

/* ============================================================
   NAVBAR (geïnjecteerd door tsp.js)
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  background: rgba(247, 244, 240, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(22, 35, 64, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08); }
/* Over de donkere hero: transparant + crème logo + lichte tekst */
.navbar.nav-over-hero {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

/* Logo: beeldmerk + woordmerk */
.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-beeldmerk { height: 44px; width: auto; transition: all 0.3s ease; }
.navbar.scrolled .logo-beeldmerk { height: 36px; }
.logo-link:hover .logo-beeldmerk { opacity: 0.8; }
.logo-woord { display: flex; flex-direction: column; line-height: 1.1; }
.logo-the { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 13px; }
.logo-naam { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.28em; text-transform: uppercase; }
/* Standaard (lichte navbar) -> blauw beeldmerk + navy tekst */
.logo-blauw { display: block; }
.logo-creme { display: none; }
.logo-the, .logo-naam { color: #162340; }
/* Over hero -> crème beeldmerk + lichte tekst */
.navbar.nav-over-hero .logo-blauw { display: none; }
.navbar.nav-over-hero .logo-creme { display: block; }
.navbar.nav-over-hero .logo-the,
.navbar.nav-over-hero .logo-naam { color: #F7F4F0; }
/* Footer-logo: altijd licht */
.logo-link--licht .logo-the,
.logo-link--licht .logo-naam { color: #F7F4F0; }

/* Page transition overlay (B1) */
.page-transition {
  position: fixed; inset: 0; background: #162340; z-index: 99999;
  pointer-events: none; opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-transition.intrede { opacity: 1; pointer-events: all; }
.logo-link:hover svg, .logo-link:hover img {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
  transition: filter 0.4s ease;
}

/* Foto-placeholders met naam/hint (B3) */
.foto-container { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--navy); }
.team-foto { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.foto-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 24px; text-align: center; }
.placeholder-initialen { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 56px; color: rgba(255, 255, 255, 0.12); line-height: 1; margin-bottom: 8px; }
.placeholder-naam { font-family: "Playfair Display", serif; font-size: 16px; color: rgba(255, 255, 255, 0.75); font-weight: 700; }
.placeholder-functie { font-family: "Barlow Condensed", sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.40); }
.placeholder-hint { font-family: "Barlow Condensed", sans-serif; font-size: 10px; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.20); margin-top: 16px; line-height: 1.6; border: 1px dashed rgba(255, 255, 255, 0.12); padding: 8px 12px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-link {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  color: rgba(22, 35, 64, 0.75);
  padding: 8px 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: rgba(22, 35, 64, 0.6);
  transition: width 0.25s ease;
}
.nav-link:hover::after,
.nav-item.active > .nav-link::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: #162340; }
/* Over hero -> lichte nav-links */
.navbar.nav-over-hero .nav-link { color: rgba(255, 255, 255, 0.85); }
.navbar.nav-over-hero .nav-link:hover { color: #fff; }
.navbar.nav-over-hero .nav-link::after { background: rgba(255, 255, 255, 0.6); }
.nav-link:active { transform: scale(0.97); opacity: 0.7; transition: transform 0.1s, opacity 0.1s; }
.caret { font-size: 10px; opacity: 0.8; display: inline-block; transition: transform var(--ease); }

.nav-item { position: relative; }
.nav-item:hover .caret, .nav-item:focus-within .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(22, 35, 64, 0.92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 2px;
  margin-top: 0;
  padding: 18px 0 8px;            /* top-padding = onzichtbare hover-brug (geen gap) */
  min-width: 240px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  transition-delay: 0.15s;        /* vertraging bij weggaan → makkelijker naar dropdown bewegen */
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  z-index: 1010;
}
/* Onzichtbare brug zodat de muis van nav-item naar dropdown kan zonder hover te verliezen */
.dropdown::before {
  content: ""; position: absolute;
  top: -10px; left: 0; right: 0; height: 14px; background: transparent;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
  opacity: 1; pointer-events: all; visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;           /* direct tonen bij hover */
}
.dropdown a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 20px;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  pointer-events: all;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.15s, background 0.15s, padding-left 0.15s, border-left-color 0.15s;
}
.dropdown a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  padding-left: 26px;
  border-left-color: rgba(255, 255, 255, 0.3);
}
.nav-cta {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #162340;
  padding: 10px 22px;
  border: 1px solid rgba(22, 35, 64, 0.35);
  background: linear-gradient(135deg, rgba(22,35,64,0.06) 0%, rgba(22,35,64,0.02) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.nav-cta:hover {
  background: linear-gradient(135deg, rgba(22,35,64,0.12) 0%, rgba(22,35,64,0.04) 100%);
  border-color: rgba(22, 35, 64, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.nav-cta:active { transform: translateY(0) scale(0.98); box-shadow: none; }
@keyframes ripple { to { transform: scale(2.5); opacity: 0; } }

/* Over hero -> lichte CTA */
.navbar.nav-over-hero .nav-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
}
.navbar.nav-over-hero .nav-cta:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.06) 100%);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 28px; height: 22px;
  position: relative;
  background: none; border: none; padding: 0; cursor: pointer;
  z-index: 1030;
}
.nav-toggle span {
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background: var(--wit);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.navbar.nav-open .nav-toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.navbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.navbar.nav-open .nav-toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.nav-links__cta { display: none; }
.nav-backdrop { display: none; }

/* ============================================================
   FOOTER (geïnjecteerd door tsp.js)
   ============================================================ */
.footer {
  background: var(--navy);
  color: var(--wit);
  padding: 50px 48px 48px;   /* minder witruimte boven de footer-CTA (PUNT 9/10) */
}
.footer__inner { max-width: 1240px; margin: 0 auto; }
.footer__cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-bottom: 42px;
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer__cta h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(27px, 3.4vw, 44px);
  line-height: 1.0;
  letter-spacing: 0.02em;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 36px;
}
.footer__brand p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 18px;
  max-width: 380px;
}
.footer__col h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--zand);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 11px; }
.footer__col a {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  transition: opacity var(--ease);
}
.footer__col a:hover { opacity: 0.7; }
.footer__news form { display: flex; margin-top: 16px; border: 1px solid rgba(255,255,255,0.3); max-width: 360px; }
.footer__news input {
  flex: 1; min-width: 0;
  background: transparent; border: 0;
  padding: 12px 14px;
  color: var(--wit);
  font-family: "Playfair Display", serif;
  font-size: 14px;
}
.footer__news input::placeholder { color: rgba(255,255,255,0.5); }
.footer__news input:focus { outline: none; }
.footer__news button {
  flex: none;
  background: var(--wit); color: var(--navy);
  border: 0; padding: 0 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 12px; cursor: pointer;
  transition: opacity var(--ease);
}
.footer__news button:hover { opacity: 0.7; }
.footer__news p { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 10px; max-width: 320px; line-height: 1.6; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Playfair Display", serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__bottom a { text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   PREMIUM: reveal, cursor, loader
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal:nth-child(4) { transition-delay: 0.36s; }
.reveal:nth-child(5) { transition-delay: 0.48s; }
.reveal:nth-child(6) { transition-delay: 0.60s; }

@media (min-width: 1025px) { * { cursor: none; } }
.cursor {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  position: fixed; left: 0; top: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(22, 35, 64, 0.4);
  border-radius: 50%;
  position: fixed; left: 0; top: 0;
  pointer-events: none; z-index: 9998;
  transition: left 0.12s ease, top 0.12s ease, transform 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 1024px) { .cursor, .cursor-ring { display: none; } }

.page-loader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease 0.3s;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
/* Laadscherm: TSP-beeldmerk i.p.v. het oude SVG-icoon; geen rotatie, subtiele pulse */
.page-loader svg { display: none; }
.page-loader::before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  background: url('/assets/beeldmerk-creme.png') center / contain no-repeat;
  animation: tsp-pulse 1.5s ease-in-out infinite;
}
@keyframes tsp-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid,
  .vacancy-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 48px 24px; }
  .cta-band { padding: 44px 24px; }
  .footer { padding: 54px 24px 32px; }

  .navbar { padding: 16px 20px; }
  .navbar.scrolled { padding: 12px 20px; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .navbar.nav-light.scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .nav-toggle { display: block; }
  .logo { position: relative; z-index: 1030; }

  .nav-links {
    position: fixed; top: 0; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 88px 24px 32px;
    background: rgba(22, 35, 64, 0.95);
    -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    max-height: 100vh; overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1020;
  }
  .navbar.nav-open .nav-links { transform: translateY(0); }
  .nav-links > li { border-bottom: 1px solid rgba(255,255,255,0.12); }
  /* Donker paneel -> witte links/CTA, ongeacht navbar-staat */
  .nav-link { display: flex; justify-content: space-between; width: 100%; padding: 16px 0; font-size: 18px; color: rgba(255,255,255,0.9); }
  .navbar.nav-over-hero .nav-link { color: rgba(255,255,255,0.9); }
  .nav-link::after { display: none; }
  .nav-links__cta .nav-cta { color: #fff; border-color: rgba(255,255,255,0.35); background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)); }

  .dropdown {
    position: static; transform: none; display: none;
    opacity: 1; pointer-events: auto; min-width: 0;
    background: transparent; border: 0; border-radius: 0; box-shadow: none;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    padding: 0 0 10px;
  }
  .nav-item.open .dropdown { display: block; }
  .nav-item.open .caret { transform: rotate(180deg); }
  .dropdown a { padding: 10px 0 10px 14px; font-size: 15px; white-space: normal; border-left: 0; }
  .dropdown a:hover { padding-left: 18px; background: transparent; }

  .navbar > .nav-cta { display: none; }
  .nav-links__cta { display: block; border-bottom: 0; margin-top: 24px; }
  .nav-links__cta .nav-cta { display: flex; width: 100%; justify-content: center; }

  .nav-backdrop {
    display: block; position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 990;
  }
  .navbar.nav-open ~ .nav-backdrop { opacity: 1; visibility: visible; }

  .card-grid, .card-grid--2, .card-grid--4,
  .team-grid, .article-grid, .vacancy-grid,
  .form-grid, .featured, .timeline,
  .footer__cta, .footer__top {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
  .footer__brand { grid-column: auto; }
  .filter-bar { top: 64px; }
}

/* ---- Hamburger-kleur (navy op licht, wit over hero / bij open menu) ---- */
.nav-toggle span { background: var(--navy); }
.navbar.nav-over-hero .nav-toggle span,
.navbar.nav-open .nav-toggle span { background: var(--wit); }

/* ---- FIX 3 — subtiel crème-beeldmerk als accent in donkere secties + footer ---- */
.section--navy, .section--navy-mid, .footer { position: relative; overflow: hidden; }
.section--navy::after,
.section--navy-mid::after,
.footer::after {
  content: "";
  position: absolute;
  right: -80px; bottom: -80px;
  width: 420px; height: 420px;
  background-image: url('beeldmerk-creme.png');
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.05; pointer-events: none; z-index: 0;
}
.section--navy > *, .section--navy-mid > *, .footer > * { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  * { cursor: auto !important; }
  .cursor, .cursor-ring { display: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   CORE CIRCUS — primair display- & navigatielettertype
   (staat als laatste zodat het eerdere font-families overschrijft)
   ============================================================ */
h1, h2,
.eyebrow,
.section-head h2, .cta h2, .footer__cta-head h2, .cases__head h2,
.hero h1, .hero-titel, .hero-titel-faded,
.nav-link, .nav-cta, .logo-naam,
.btn, .btn-outline,
.stat-waarde, .stat__num, .stat-block__num, .approach__stat,
.card-tag, .insight-cat, .pill,
.card__title, .card-titel, .service__title, .edition__title, .insight-titel, .tile__title {
  font-family: "Core Circus", "Barlow Condensed", sans-serif;
}
.logo-naam { font-weight: 400; letter-spacing: 0.32em; }

/* ============================================================
   RESPONSIVE PASS v2 — mobiel / tablet / desktop
   (staat als laatste; overschrijft eerdere breakpoints)
   ============================================================ */

/* ── Viewport-basis ── */
*, *::before, *::after { box-sizing: border-box; }
body { overflow-x: hidden; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; }

/* ── Fluid spacing-tokens (aanvullend) ── */
:root {
  --padding-x: clamp(20px, 5vw, 80px);
  --padding-section: clamp(30px, 3.4vw, 72px);   /* 25% compacter (was 40/4.5vw/96) */
  --gap-grid: clamp(24px, 4vw, 60px);
  --navbar-h: 72px;
}

/* ── Fluid typografie ── */
h2 { font-size: clamp(19px, 2.7vw, 37px); line-height: 1.08; }
h3 { font-size: clamp(18px, 2vw, 28px); }
.eyebrow { font-size: clamp(9px, 0.9vw, 12px); letter-spacing: 0.2em; }
.hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; }
.stat-waarde, .stat__num, .stat-block__num, .approach__stat { font-size: clamp(24px, 3.4vw, 44px); }

/* ── NAVBAR collapse → tablet + mobiel (≤1024px) ── */
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .navbar > .nav-cta { display: none; }
  .logo { position: relative; z-index: 1030; }
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 88px 24px 32px;
    background: rgba(22, 35, 64, 0.97);
    -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    max-height: 100vh; overflow-y: auto;
    transform: translateY(-100%); transition: transform 0.3s ease;
    z-index: 1020;
  }
  .navbar.nav-open .nav-links { transform: translateY(0); }
  .nav-links > li { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .nav-link { display: flex; justify-content: space-between; width: 100%; padding: 16px 0; font-size: 18px; color: rgba(255, 255, 255, 0.9); }
  .navbar.nav-over-hero .nav-link { color: rgba(255, 255, 255, 0.9); }
  .nav-link::after { display: none; }
  .dropdown {
    position: static; transform: none; display: none; opacity: 1; pointer-events: auto; visibility: visible;
    min-width: 0; background: transparent; border: 0; box-shadow: none;
    -webkit-backdrop-filter: none; backdrop-filter: none; padding: 0 0 10px;
    transition-delay: 0s;
  }
  .dropdown::before { display: none; }
  .nav-item.open .dropdown { display: block; }
  .nav-item.open .caret { transform: rotate(180deg); }
  .dropdown a { padding: 10px 0 10px 14px; font-size: 15px; white-space: normal; border-left: 0; }
  .navbar > .nav-cta { display: none; }
  .nav-links__cta { display: block; border-bottom: 0; margin-top: 24px; }
  .nav-links__cta .nav-cta { display: flex; width: 100%; justify-content: center; color: #fff; border-color: rgba(255, 255, 255, 0.35); background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)); }
  .nav-backdrop {
    display: block; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5);
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; z-index: 990;
  }
  .navbar.nav-open ~ .nav-backdrop { opacity: 1; visibility: visible; }
}

/* ── Subpagina-hero op tablet/mobiel ── */
@media (max-width: 1024px) {
  .hero { min-height: 54vh; }
}
@media (max-width: 768px) {
  .hero { min-height: 46.5svh; padding-left: 6%; padding-right: 6%; background-attachment: scroll !important; }
  .hero h1, .hero-titel, .hero-titel-faded { font-size: clamp(16px, 5.4vw, 25px) !important; line-height: 1.02 !important; }
}

/* ── Grids: 3→2 op tablet, →1 op mobiel ── */
@media (max-width: 1024px) {
  .card-grid, .article-grid, .vacancy-grid, .vacature-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .card-grid, .card-grid--2, .card-grid--4,
  .article-grid, .vacancy-grid, .vacature-grid,
  .team-grid, .form-grid { grid-template-columns: 1fr !important; }
}

/* ── Footer stack op mobiel ── */
@media (max-width: 640px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cta { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Contact (contact.html) — extra zekerheid ── */
@media (max-width: 768px) {
  .contact-grid, .contact-blokken { grid-template-columns: 1fr !important; }
  .contact-blok-vol { grid-column: 1 !important; }
  .contact-foto-wrap { position: static !important; }
  .contact-foto { aspect-ratio: 16/9 !important; }
  .kantoren-grid { grid-template-columns: 1fr !important; }
}

/* ── Vacatures-grid (vacatures.html) ── */
@media (max-width: 1024px) { .vacature-grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 640px) {
  .vacature-grid { grid-template-columns: 1fr !important; }
  .vacature-card { aspect-ratio: 4 / 3 !important; }
}

/* ── Geen hover-transform op touch-devices ── */
@media (hover: none) {
  .card:hover, .card--navy:hover, .vacature-card:hover,
  .insight-card:hover, .team-card:hover, .tile:hover {
    transform: none !important; box-shadow: none !important;
  }
}

/* ============================================================
   DIENST-DETAIL — gedeelde compacte componenten
   (gebruikt door alle diensten-detailpagina's; body.dienst-detail)
   ============================================================ */

/* Minder witruimte op detailpagina's */
body.dienst-detail .section,
body.dienst-detail .cta-band {
  padding-top: clamp(28px, 3vw, 48px);
  padding-bottom: clamp(28px, 3vw, 48px);
}

.titel-faded       { color: rgba(22, 35, 64, 0.40); }
.titel-faded-licht { color: rgba(255, 255, 255, 0.35); }

/* Intro: 2 kolommen (tekst + stats links, italic quote rechts) */
.dd-intro {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 41px;
  max-width: 1240px; margin: 0 auto; align-items: start;
}
.dd-intro .intro-body {
  font-family: "Playfair Display", serif; font-size: 16px; line-height: 1.75;
  color: rgba(22, 35, 64, 0.72); margin-top: 18px; max-width: 520px;
}
.dd-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.dd-stat { border-top: 1px solid rgba(22, 35, 64, 0.15); padding-top: 16px; }
.dd-stat .num {
  font-family: "Core Circus", "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 3.4vw, 36px); color: var(--navy); line-height: 1;
}
.dd-stat .label {
  font-family: "Barlow Condensed", sans-serif; font-size: 12.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(22, 35, 64, 0.55); margin-top: 6px;
}
.dd-quote {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: clamp(24px, 2.8vw, 36px); line-height: 1.3;
  color: var(--navy); border-left: 2px solid var(--zand); padding-left: 26px;
}

/* Feature-grid (navy): dichte 1px-rasterlijnen */
.dd-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 32px;
  background: rgba(255, 255, 255, 0.06);
}
.dd-kaart { background: var(--navy-mid); padding: 28px 26px; }
.dd-kaart .ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 16px;
}
.dd-kaart h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.dd-kaart p {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Playfair Display", serif; font-size: 14px; line-height: 1.6;
}

/* Tijdlijn: 3 stappen horizontaal met haarlijn */
.dd-tijdlijn {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 27px;
  margin-top: 32px; position: relative;
}
.dd-tijdlijn::before {
  content: ""; position: absolute; top: 22px; left: 8%; right: 8%;
  height: 1px; background: rgba(22, 35, 64, 0.18); z-index: 0;
}
.dd-stap { position: relative; z-index: 1; padding: 24px 0 0; }
.dd-num {
  width: 58px; height: 58px; background: var(--navy); color: #fff;
  font-family: "Core Circus", "Barlow Condensed", sans-serif; font-size: 22px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.dd-fase {
  font-family: "Barlow Condensed", sans-serif; font-size: 12.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(22, 35, 64, 0.5); margin-bottom: 6px;
}
.dd-stap-titel { font-family: "Playfair Display", serif; font-weight: 700; font-size: 18px; color: var(--navy); }

/* Werkwijze + verwachting (cream) */
.dd-werkwijze {
  display: grid; grid-template-columns: 1fr 1fr; gap: 41px;
  max-width: 1240px; margin: 0 auto; align-items: start;
}
.dd-wstap { display: flex; gap: 14px; margin-top: 22px; }
.dd-wstap .ico {
  flex: 0 0 auto; width: 58px; height: 58px; border-radius: 50%;
  background: rgba(22, 35, 64, 0.06);
  display: flex; align-items: center; justify-content: center; font-size: 25px;
}
.dd-wstap h3 { font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.dd-wstap p { font-family: "Playfair Display", serif; font-size: 14px; line-height: 1.6; color: rgba(22, 35, 64, 0.68); }
.dd-verwacht { background: var(--navy); padding: 36px 32px; }
.dd-verwacht h3 { color: #fff; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; }
.dd-verwacht ul { list-style: none; margin: 0; padding: 0; }
.dd-verwacht li {
  position: relative; padding-left: 26px; margin-bottom: 14px;
  font-family: "Playfair Display", serif; font-size: 15px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.dd-verwacht li::before { content: "→"; position: absolute; left: 0; color: var(--zand); }

/* Deliverables-grid ("Wat u kunt verwachten") */
.verwacht-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #E0D9CF;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 32px;
}
.verwacht-item {
  padding: 28px 32px;
  border-right: 1px solid #E0D9CF;
  border-bottom: 1px solid #E0D9CF;
  background: #FAFAF8;
}
.verwacht-item:nth-child(even) {
  border-right: none;
}
.verwacht-full {
  grid-column: 1 / -1;
  border-right: none;
  border-bottom: none;
  background: #1B3A4B;
}
.verwacht-full .verwacht-label {
  color: rgba(255,255,255,0.55);
}
.verwacht-full .verwacht-body {
  color: rgba(255,255,255,0.88);
}
.verwacht-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2E75B6;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.verwacht-body {
  font-size: 14px;
  line-height: 1.7;
  color: #444444;
}
.verwacht-noot {
  font-size: 12px;
  color: #888;
  font-style: italic;
  margin-top: 16px;
  padding-left: 4px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .verwacht-grid {
    grid-template-columns: 1fr;
  }
  .verwacht-item:nth-child(even) {
    border-right: none;
  }
  .verwacht-item {
    border-right: none;
  }
}

/* CTA-knop cream */
.cta-knop {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); color: var(--navy);
  font-family: "Core Circus", "Barlow Condensed", sans-serif;
  font-size: 14px; letter-spacing: 0.08em; padding: 16px 32px;
  text-decoration: none; transition: transform 0.2s ease, opacity 0.2s ease;
}
.cta-knop:hover { transform: translateY(-2px); opacity: 0.92; }

@media (max-width: 1024px) { .dd-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .dd-intro, .dd-werkwijze { grid-template-columns: 1fr; gap: 31px; }
  .dd-stats { grid-template-columns: 1fr; }
  .dd-grid { grid-template-columns: 1fr; }
  .dd-tijdlijn { grid-template-columns: 1fr; gap: 20px; }
  .dd-tijdlijn::before { display: none; }
  .dd-quote { border-left: 0; padding-left: 0; margin-top: 8px; }
}

/* ============================================================
   FEE-MODELLEN GRID + TSP-TAGLINE (uit de flyer)
   ============================================================ */
#modellen { scroll-margin-top: 90px; }
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.model-card {
  background: #F7F4F0;
  border: 0.5px solid #E0D9CF;
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
}
.model-card.featured {
  background: #1B3A4B;
  border-color: #1B3A4B;
  color: white;
}
.model-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2E75B6;
  color: white;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.model-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2E75B6;
  margin-bottom: 6px;
  display: block;
}
.model-card.featured .model-label { color: #C9B99A; }
.model-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1B3A4B;
  margin-bottom: 8px;
}
.model-card.featured .model-title { color: white; }
.model-ideal {
  font-size: 0.82rem;
  color: #6B6357;
  font-style: italic;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E0D9CF;
}
.model-card.featured .model-ideal {
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.15);
}
.model-features { list-style: none; padding: 0; margin: 0 0 24px 0; }
.model-features li {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  padding: 7px 0;
  border-bottom: 1px solid #E0D9CF;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.model-card.featured .model-features li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.1);
}
.model-features li::before {
  content: "\2713";
  color: #C9B99A;
  font-weight: 700;
  flex-shrink: 0;
}
.model-features li:last-child { border-bottom: none; }
.model-cta {
  display: block;
  text-align: center;
  padding: 10px 16px;
  border: 1px solid #1B3A4B;
  border-radius: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1B3A4B;
  text-decoration: none;
  transition: all 0.2s;
}
.model-card.featured .model-cta { border-color: white; color: white; }
.model-cta:hover { background: #1B3A4B; color: white; }
.model-card.featured .model-cta:hover { background: rgba(255,255,255,0.15); }
.model-noot {
  font-size: 12px;
  color: #888;
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .model-grid { grid-template-columns: 1fr; }
}

.tsp-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
  color: #1B3A4B;
  border-left: 2px solid #C9B99A;
  padding: 16px 24px;
  margin: 40px 0;
  line-height: 1.65;
}

/* ============================================================
   ROTERENDE HERO-TAGLINE (subpagina's, donkere hero — witte tekst)
   ============================================================ */
.hero-tagline {
  display: grid;
  margin-top: 22px;
  max-width: 620px;
}
.hero-tagline-item {
  grid-area: 1 / 1;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.80);
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero-tagline-item.active { opacity: 1; pointer-events: auto; }
.hero-tagline-item em {
  font-style: normal;
  color: var(--zand);
  font-size: 0.85em;
  letter-spacing: 0.04em;
}
.hero-tagline-prom {
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
}
@media (prefers-reduced-motion: reduce) {
  .hero-tagline-item { transition: none; }
}

/* ============================================================
   ZOEKFUNCTIE — compact pill in stijl van de outline CTA-knop
   ============================================================ */
.nav-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.nav-search-pill {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 4px;
  padding: 7px 12px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  width: 38px;
  overflow: hidden;
  background: transparent;
  height: 38px;
}
.nav-search-pill:not(.expanded) .nav-search-input {
  width: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.nav-search-pill:not(.expanded) .nav-search-clear-btn {
  display: none;
}
.nav-search-pill.expanded {
  width: 220px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}
.navbar.scrolled .nav-search-pill {
  border-color: rgba(27,58,75,0.45);
}
.navbar.scrolled .nav-search-pill.expanded {
  background: rgba(27,58,75,0.05);
  border-color: rgba(27,58,75,0.65);
}
.nav-search-icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.2s;
  line-height: 1;
}
.nav-search-icon-btn:hover {
  color: white;
}
.navbar.scrolled .nav-search-icon-btn {
  color: rgba(27,58,75,0.75);
}
.navbar.scrolled .nav-search-icon-btn:hover {
  color: #1B3A4B;
}
.nav-search-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: white;
  padding: 0 6px;
  width: 150px;
  transition: all 0.28s ease;
  opacity: 1;
}
.nav-search-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.navbar.scrolled .nav-search-input {
  color: #1B3A4B;
}
.navbar.scrolled .nav-search-input::placeholder {
  color: rgba(27,58,75,0.35);
}
.nav-search-clear-btn {
  background: none;
  border: none;
  padding: 0 0 0 4px;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.2s;
  line-height: 1;
}
.nav-search-clear-btn:hover {
  color: rgba(255,255,255,0.9);
}
.navbar.scrolled .nav-search-clear-btn {
  color: rgba(27,58,75,0.4);
}
.nav-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 340px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(27,58,75,0.16);
  border: 1px solid #E0D9CF;
  padding: 8px;
  display: none;
  z-index: 9999;
  max-height: 400px;
  overflow-y: auto;
}
.nav-search-dropdown.visible {
  display: block;
}
.search-result-item {
  display: block;
  padding: 11px 14px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.15s;
  border-bottom: 1px solid #F0EBE3;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover {
  background: #F7F4F0;
}
.search-result-tag {
  font-size: 0.60rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2E75B6;
  font-weight: 700;
  margin-bottom: 3px;
  display: block;
}
.search-result-title {
  font-size: 0.87rem;
  font-weight: 500;
  color: #1B3A4B;
  margin-bottom: 3px;
  line-height: 1.3;
}
.search-result-excerpt {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nav-search-empty {
  font-size: 0.82rem;
  color: #888;
  text-align: center;
  padding: 20px;
  margin: 0;
}
@media (max-width: 768px) {
  .nav-search-wrap {
    display: none;
  }
}

/* Teamkaart — extra contactregels (telefoon/e-mail onder de naam) */
.team-contact-detail {
  display: block;
  font-size: 0.82rem;
  color: #6B6357;
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s;
}
.team-contact-detail:hover {
  color: #1B3A4B;
}

/* ============================================================
   DISCIPLINE-HUB LANDINGSPAGINA'S + nav/persona-uitbreidingen
   (finance/tax/legal/interim/executive-search/talent-risk-scan)
   ============================================================ */
/* Variant B — navy hero zonder foto */
.hero--navy {
  background: linear-gradient(160deg, #1B3A4B 0%, #15303E 60%, #122733 100%);
}
.hero-contextband {
  margin-top: 22px; font-family: "Core Circus", "Barlow Condensed", sans-serif;
  font-size: 13px; letter-spacing: 0.03em; color: rgba(255,255,255,0.65); line-height: 1.9;
}
.hero-contextband a { color: rgba(255,255,255,0.82); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
.hero-contextband a:hover { color: #fff; border-bottom-color: #fff; }

/* Marktcontext — 2 kolommen */
.markt-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.markt-tekst p { font-family: "Playfair Display", serif; font-size: 16px; line-height: 1.8; color: rgba(22,35,64,0.82); margin: 0 0 18px; }
.markt-tekst p:last-child { margin-bottom: 0; }
.markt-blok { background: #1B3A4B; color: #fff; border-radius: 10px; padding: 32px; }
.markt-blok p { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.45; margin: 0; color: #fff; }
.markt-stats { display: flex; gap: 24px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.markt-stat { display: flex; flex-direction: column; }
.markt-stat b { font-family: "Core Circus", "Barlow Condensed", sans-serif; font-size: 22px; color: #C9B99A; line-height: 1; }
.markt-stat span { font-family: "Barlow Condensed", sans-serif; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* Splitsingskaarten — opdrachtgever / kandidaat */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-card { border-radius: 12px; padding: 40px; display: flex; flex-direction: column; }
.split-card--navy { background: #1B3A4B; color: #fff; }
.split-card--cream { background: #F7F4F0; color: #1B3A4B; border: 1px solid #E0D9CF; }
.split-card .eyebrow { color: #C9B99A; }
.split-card--cream .eyebrow { color: #2E75B6; }
.split-card h3 { font-family: "Core Circus", "Barlow Condensed", sans-serif; font-weight: 400; font-size: clamp(22px, 2.4vw, 28px); margin: 10px 0 14px; }
.split-card--navy h3 { color: #fff; }
.split-card p { font-family: "Playfair Display", serif; font-size: 15px; line-height: 1.7; margin: 0 0 24px; }
.split-card--navy p { color: rgba(255,255,255,0.8); }
.split-card--cream p { color: rgba(22,35,64,0.72); }
.split-link { margin-top: auto; font-family: "Core Circus", "Barlow Condensed", sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; }
.split-card--navy .split-link { color: #C9B99A; }
.split-card--cream .split-link { color: #2E75B6; }
.split-link:hover { opacity: 0.75; }

/* Live vacatures (client-side hub) */
.hub-vac-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.hub-vac-card { display: block; background: #fff; border: 1px solid rgba(22,35,64,0.10); border-radius: 6px; padding: 22px 24px; text-decoration: none; color: inherit; transition: box-shadow 0.2s, border-color 0.2s; }
.hub-vac-card:hover { box-shadow: 0 4px 20px rgba(22,35,64,0.10); border-color: rgba(46,117,182,0.30); }
.hub-vac-titel { font-family: "Core Circus", "Barlow Condensed", sans-serif; font-size: 16px; color: #1B3A4B; margin-bottom: 8px; }
.hub-vac-meta { font-family: "Playfair Display", serif; font-size: 13px; color: rgba(22,35,64,0.6); display: flex; flex-wrap: wrap; gap: 14px; }
.hub-vac-leeg, .bewijs-leeg { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 18px; color: rgba(22,35,64,0.7); }
.hub-vac-leeg a, .bewijs-leeg a { color: inherit; }
.hub-link { font-family: "Core Circus", "Barlow Condensed", sans-serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #2E75B6; text-decoration: none; display: inline-block; margin-top: 24px; }
.hub-link:hover { color: #1B3A4B; }

/* FAQ-blok (zichtbaar + FAQPage JSON-LD) */
.faq-blok { max-width: 820px; }
.faq-item { border-bottom: 1px solid rgba(22,35,64,0.12); padding: 22px 0; }
.faq-item:first-child { border-top: 1px solid rgba(22,35,64,0.12); }
.faq-q { font-family: "Core Circus", "Barlow Condensed", sans-serif; font-weight: 400; font-size: 18px; color: #1B3A4B; margin: 0 0 10px; }
.faq-a { font-family: "Playfair Display", serif; font-size: 15px; line-height: 1.7; color: rgba(22,35,64,0.78); margin: 0; }

/* Gerelateerde content — 3 linkkaarten */
.related-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { background: #F7F4F0; border: 1px solid #E0D9CF; border-radius: 10px; padding: 28px; text-decoration: none; color: #1B3A4B; font-family: "Core Circus", "Barlow Condensed", sans-serif; font-size: 17px; transition: transform 0.2s, border-color 0.2s; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.related-card:hover { transform: translateY(-3px); border-color: rgba(46,117,182,0.4); }

/* Bewijs-rijen (persona-pagina's) */
.bewijs-rij { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(22,35,64,0.08); text-decoration: none; color: #1B3A4B; transition: padding-left 0.2s; }
.bewijs-rij:hover { padding-left: 8px; }
.bewijs-rij-titel { font-family: "Core Circus", "Barlow Condensed", sans-serif; font-size: 15px; }
.bewijs-rij-meta { font-family: "Playfair Display", serif; font-size: 13px; color: rgba(22,35,64,0.5); display: flex; gap: 24px; align-items: center; }

/* Interne kruislinks */
.discipline-snelkoppelingen { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 24px; }
.discipline-snelkoppelingen a, .kruislink-disciplines a { font-family: "Core Circus", "Barlow Condensed", sans-serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #2E75B6; text-decoration: none; }
.discipline-snelkoppelingen a:hover, .kruislink-disciplines a:hover { color: #1B3A4B; }
.artikel-kruislink { display: inline-block; margin-top: 28px; font-family: "Core Circus", "Barlow Condensed", sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #2E75B6; text-decoration: none; }
.artikel-kruislink:hover { color: #1B3A4B; }

@media (max-width: 860px) {
  .markt-grid, .split-grid, .hub-vac-list, .related-cards { grid-template-columns: 1fr; }
  .bewijs-rij-meta { gap: 14px; }
}

/* ── Voor-wie tweekolomsdropdown ── */
.dropdown-tweekol { display: flex; gap: 0; min-width: 480px; }
.dropdown-kolom { flex: 1; padding: 8px 0; }
.dropdown-kolom-rechts { border-left: 1px solid rgba(255,255,255,0.10); padding-left: 24px; }
.dropdown-label { font-family: "Core Circus", "Barlow Condensed", sans-serif; font-size: 9px; letter-spacing: 0.25em; color: rgba(255,255,255,0.35); margin: 0 0 12px; padding: 0 20px; }
.dropdown-kolom-rechts a { color: rgba(255,255,255,0.70); font-style: italic; font-family: "Cormorant Garamond", serif; font-size: 16px; }
.dropdown-kolom-rechts a:hover { color: #fff; }

/* ── Vacatures dropdown divider ── */
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 6px 20px; }

/* Tweekolomsdropdown — mobiel stapelen */
@media (max-width: 768px) {
  .dropdown-tweekol { flex-direction: column; min-width: 0; gap: 0; }
  .dropdown-kolom-rechts { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.10); margin-top: 4px; padding-top: 8px; }
  .dropdown-label { padding-left: 0; }
}
