@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ============================================================
   TSP — vacatures.css
   Stylesheet voor de gegenereerde /vacatures/ pagina's
   (overzicht + detail). Zelfstandig: eigen fonts/tokens.
   Huisstijl: navy #1B3A4B · accent #2E75B6 · cream #F7F4F0
   ============================================================ */

@font-face {
  font-family: "Core Circus";
  src: url("../fonts/CoreCircus.woff2") format("woff2");
  font-display: swap;
}

:root {
  --navy: #1B3A4B;        /* kaart / accenten */
  --navy-deep: #162340;   /* hero / footer / knoppen */
  --accent: #2E75B6;      /* accent blue */
  --cream: #F7F4F0;
  --wit: #FFFFFF;
  --line: rgba(22, 35, 64, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy-deep);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.eyebrow {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 12px;
  color: var(--accent); margin: 0 0 10px;
}

/* ── HERO ── (hero-foto met donkere gradient-overlay, zoals de homepage) */
.vac-hero {
  background: linear-gradient(
    to bottom,
    rgba(27,58,75,0.72) 0%,
    rgba(27,58,75,0.55) 100%
  ), url('/assets/hero-bg.png') center/cover no-repeat;
  color: var(--wit);
  padding: 128px 5% 72px;   /* extra top-ruimte vrij van de fixed navbar */
}
.vac-hero-inner { max-width: 1200px; margin: 0 auto; }
.vac-hero h1 {
  font-family: "Core Circus", "Barlow Condensed", sans-serif; font-weight: 400;
  font-size: clamp(34px, 5vw, 56px); line-height: 1; margin: 0 0 14px;
}
.vac-hero-count {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: clamp(18px, 2vw, 22px); color: rgba(255,255,255,0.8); margin: 0;
}

/* ── TOOLBAR (filters + zoeken) ── */
.vac-toolbar {
  position: sticky; top: 72px; z-index: 20;   /* blijft onder de fixed navbar plakken */
  background: var(--cream); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 16px 5%;
}
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 9px 18px;
  background: transparent; color: var(--navy-deep); border: 1px solid var(--line);
  cursor: pointer; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-btn:hover { background: rgba(22,35,64,0.06); }
.filter-btn.active { background: var(--navy-deep); color: var(--wit); border-color: var(--navy-deep); }
.vac-search-wrap { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.vac-select {
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.06em; color: var(--navy-deep);
  background-color: var(--cream); border: 1px solid var(--line); border-radius: 3px;
  padding: 9px 32px 9px 14px; cursor: pointer; line-height: 1.2;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231B3A4B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  transition: border-color 0.2s ease;
}
.vac-select:hover { border-color: rgba(22,35,64,0.30); }
.vac-select:focus { outline: none; border-color: var(--accent); }
#vac-search {
  border: none; border-bottom: 1px solid var(--line); background: transparent;
  padding: 8px 0; font-family: "Playfair Display", serif; font-size: 15px;
  color: var(--navy-deep); min-width: 220px;
}
#vac-search:focus { outline: none; border-bottom-color: var(--accent); }
#vac-search::placeholder { color: rgba(22,35,64,0.45); }
.vac-count { font-family: "Barlow Condensed", sans-serif; font-size: 13px; letter-spacing: 0.06em; color: rgba(22,35,64,0.55); white-space: nowrap; }

/* ── GRID (2-koloms, rustig) ── */
.vac-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

/* ── KAART (licht, witte kaart met subtiele rand) ── */
.vac-card {
  background: #FFFFFF;
  border: 1px solid rgba(22,35,64,0.10);
  border-radius: 4px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.vac-card:hover {
  box-shadow: 0 4px 24px rgba(22,35,64,0.10);
  border-color: rgba(46,117,182,0.30);
}
.vac-card-link { display: block; padding: 28px 32px; color: inherit; }

/* Header: logo-blok (48x48) links + discipline-tag rechts */
.vac-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.vac-logo {
  position: relative; width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 4px; overflow: hidden; background: var(--navy);
}
.vac-logo-fallback {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: 0.06em; color: var(--wit);
}
.vac-logo-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; background: var(--wit); padding: 6px;
}

/* Discipline-tag pill — lichte tint per discipline, navy tekst */
.tag {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 11px;
  border-radius: 3px; white-space: nowrap;
}
.tag-cat { background: #E3EEF7; color: var(--navy); }
.vac-card[data-category="Finance"] .tag-cat { background: #E3EEF7; color: var(--navy); }
.vac-card[data-category="Tax"]     .tag-cat { background: #ECEAE5; color: var(--navy); }
.vac-card[data-category="Legal"]   .tag-cat { background: #E6E9EF; color: var(--navy); }

/* Tagline (optioneel, alleen indien gevuld) */
.vac-card-tagline {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 16px;
  color: var(--navy); border-left: 3px solid var(--accent); padding-left: 12px;
  margin: 14px 0 10px;
}

/* Titel */
.vac-card-title {
  font-family: "Core Circus", "Barlow Condensed", sans-serif; font-weight: 400;
  font-size: 18px; line-height: 1.25; letter-spacing: 0.01em;
  color: var(--navy); margin: 16px 0 6px;
}

/* Bedrijf (of "Vertrouwelijk via TSP") */
.vac-card-company {
  font-family: "Cormorant Garamond", serif; font-style: normal;
  font-size: 13px; color: rgba(22,35,64,0.55); margin: 0;
}

/* Meta-rij */
.vac-card-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.vac-card-meta-item {
  font-family: "Playfair Display", serif; font-size: 13px;
  color: rgba(22,35,64,0.60); white-space: nowrap;
}

/* Footer */
.vac-card-foot {
  border-top: 1px solid rgba(22,35,64,0.08);
  margin-top: 20px; padding-top: 16px;
  display: flex; justify-content: flex-end;
}
.vac-card-cta {
  font-family: "Core Circus", "Barlow Condensed", sans-serif; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
  transition: color 0.2s ease;
}
.vac-card:hover .vac-card-cta { color: var(--navy); }

/* ── LEEG ── */
.vac-empty { grid-column: 1 / -1; text-align: center; padding: 60px 0; }
.vac-empty h2 { font-family: "Core Circus", "Barlow Condensed", sans-serif; font-weight: 400; color: var(--navy-deep); }
.vac-empty p { max-width: 520px; margin: 12px auto 24px; color: rgba(22,35,64,0.7); }

/* ── KNOP ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-deep); color: var(--wit);
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; font-size: 13px; padding: 14px 28px; transition: background 0.2s ease;
}
.btn-primary:hover { background: var(--accent); }

/* ── FOOTER ── */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); text-align: center; padding: 32px 5%; font-family: "Barlow Condensed", sans-serif; letter-spacing: 0.04em; font-size: 14px; }

/* ============================================================
   DETAILPAGINA
   ============================================================ */
.breadcrumb { padding: 0; margin: 0 0 18px; font-family: "Barlow Condensed", sans-serif; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(22,35,64,0.55); }
.breadcrumb a:hover { color: var(--accent); }

/* ── Twee-koloms detail-layout ── */
.vac-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 32px 48px;   /* top vrij van de fixed navbar (72px) */
  align-items: start;
}
.vac-detail-main { min-width: 0; }
.vac-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 900px) {
  .vac-detail-grid { grid-template-columns: 1fr; }
  .vac-sidebar { position: static; }
}

/* ── Sidebar: contactpersoon ── */
/* ── Sidebar: contactpersoon (rustig crème vlak) ── */
.vac-sidebar-contact {
  background: #F7F4F0;
  border-radius: 10px;
  border: 1px solid #E0D9CF;
  padding: 24px;
  color: #1B3A4B;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}
.vac-sidebar-contact .sidebar-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B6357;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E0D9CF;
}
.contact-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid #E0D9CF;
  display: block;
  margin: 0 auto 4px;
}
.contact-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1B3A4B;
  margin-bottom: 8px;
  text-align: center;
}
.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #6B6357;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s;
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  white-space: normal;
}
.contact-detail:hover { color: #1B3A4B; }
.btn-contact-primary {
  display: block;
  text-align: center;
  background: #1B3A4B;
  color: white;
  padding: 11px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-top: 4px;
}
.btn-contact-primary:hover {
  background: #2E75B6;
}
.vac-detail-head { border-bottom: 1px solid var(--line); padding-bottom: 28px; margin-bottom: 28px; }
.vac-detail-tags { display: flex; gap: 8px; margin-bottom: 16px; }
.vac-detail h1 { font-family: "Core Circus", "Barlow Condensed", sans-serif; font-weight: 400; font-size: clamp(28px, 4vw, 44px); line-height: 1.05; color: var(--navy-deep); margin: 0 0 8px; }
.vac-detail-org { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 20px; color: rgba(22,35,64,0.7); margin: 0 0 22px; }
/* Meta-blok: rustig crème vlak, consistent met het contactblok */
.vac-meta-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  background: #F7F4F0;
  border-radius: 10px;
  border: 1px solid #E0D9CF;
  overflow: hidden;
  margin: 24px 0 32px;
}
.vac-meta-item {
  padding: 18px 22px;
  border-right: 1px solid #E0D9CF;
  position: relative;
  background: transparent;
}
.vac-meta-item:last-child { border-right: none; }
.vac-meta-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: #1B3A4B;
  opacity: 0.25;
}
.vac-meta-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B6357;
  font-weight: 700;
  margin-bottom: 8px;
}
.vac-meta-value {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1B3A4B;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .vac-meta-block {
    grid-template-columns: 1fr 1fr;
  }
  .vac-meta-item:nth-child(2n) {
    border-right: none;
  }
  .vac-meta-item {
    border-bottom: 1px solid #E0D9CF;
  }
  .vac-meta-item:last-child {
    border-bottom: none;
  }
}
.vac-summary p { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(19px, 2.2vw, 24px); line-height: 1.5; color: #1B3A4B; margin: 0 0 36px; }
.vac-description { margin-bottom: 36px; }
.vac-description h2, .vac-cta h2 { font-family: "Core Circus", "Barlow Condensed", sans-serif; font-weight: 400; font-size: 24px; color: var(--navy-deep); margin: 0 0 14px; }
.vac-description-body { font-size: 16px; line-height: 1.8; color: rgba(22,35,64,0.82); }
.vac-description-body p { font-size: 16px; line-height: 1.8; color: rgba(22,35,64,0.82); margin: 0 0 16px; }
.vac-description-body ul, .vac-description-body ol { margin: 0 0 16px; padding-left: 22px; }
.vac-description-body li { margin: 0 0 8px; }
.vac-description-body strong, .vac-description-body b { color: var(--navy-deep); font-weight: 700; }
.vac-description-body a { color: var(--accent); text-decoration: underline; }
.vac-description-body h2, .vac-description-body h3, .vac-description-body h4 {
  font-family: "Playfair Display", serif; font-weight: 700; color: var(--navy-deep);
  font-size: 18px; line-height: 1.3; margin: 24px 0 10px;
}
.vac-description-body img { margin: 16px 0; }
.vac-description-body :first-child { margin-top: 0; }
.vac-description-body :last-child { margin-bottom: 0; }
.vac-cta { background: var(--navy); color: var(--wit); padding: 36px 32px; }
.vac-cta h2 { color: var(--wit); }
.vac-cta p { color: rgba(255,255,255,0.82); margin: 0 0 20px; }
.vac-cta .btn-primary { background: var(--cream); color: var(--navy-deep); }
.vac-cta .btn-primary:hover { background: var(--accent); color: var(--wit); }
.vac-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.vac-discretie {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  font-style: italic;
}
.vac-privacy { margin-top: 16px; }
.vac-privacy small { color: rgba(255,255,255,0.6); font-size: 12.5px; }
.vac-privacy a { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .vac-grid { grid-template-columns: 1fr; padding: 28px 6% 56px; }
  .vac-hero { padding: 104px 6% 48px; }
  .vac-toolbar { position: static; }
}

/* ============================================================
   SITE-NAVIGATIE + FOOTER
   Overgenomen uit index.html zodat de vacaturepagina's dezelfde
   navbar en footer als de rest van de site tonen.
   ============================================================ */
:root { --zand: #D9CFC3; --ease: 0.2s ease; }

/* ── NAVBAR ── */
.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); }
.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; flex-shrink: 0; 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; }
.logo-blauw { display: block; }
.logo-creme { display: none; }
.logo-the, .logo-naam { color: #162340; }
.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; }
.logo-link--licht .logo-the,
.logo-link--licht .logo-naam { color: #F7F4F0; }

/* Center navigatie */
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  font-family: "Playfair Display", serif; font-size: 15px;
  color: rgba(22, 35, 64, 0.75); text-decoration: none;
  padding: 8px 4px; position: relative; letter-spacing: 0.01em;
  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 { width: 100%; }
.nav-link:hover { color: #162340; }
.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); }
.caret { font-size: 10px; opacity: 0.8; display: inline-block; transition: transform var(--ease); }

/* Dropdowns (glassmorphism) */
.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: 0; padding: 18px 0 8px; min-width: 220px; 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;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  z-index: 1010;
}
.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;
}
.dropdown li { display: block; }
.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); text-decoration: none; white-space: nowrap;
  pointer-events: all; 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: white; background: rgba(255, 255, 255, 0.06); padding-left: 26px; border-left-color: rgba(255, 255, 255, 0.3); }

/* CTA-knop */
.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);
  cursor: pointer; text-decoration: none; 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 .arrow { transition: transform var(--ease); }
.nav-cta:hover .arrow { transform: translateX(3px); }
.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); }

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

/* Hamburger toggle (3 lijnen → X) */
.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(--navy-deep); border-radius: 1px; transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, background 0.3s ease; }
.navbar.nav-over-hero .nav-toggle span, .navbar.nav-open .nav-toggle span { background: var(--wit); }
.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); }

/* Outline-knop (footer CTA) */
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Playfair Display", serif; font-size: 14px; color: var(--wit);
  background: transparent; border: 1px solid var(--wit); border-radius: 0;
  padding: 10px 20px; cursor: pointer; transition: opacity var(--ease);
  white-space: nowrap; text-decoration: none;
}
.btn-outline:hover { opacity: 0.7; }
.btn-outline .arrow { transition: transform var(--ease); }
.btn-outline:hover .arrow { transform: translateX(3px); }

/* ── FOOTER ── */
.footer {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 50% 120%, rgba(65, 46, 48, 0.4) 0%, transparent 70%), var(--navy-deep);
  color: var(--wit); padding: 120px 48px 48px;
}
.footer::after {
  content: ""; position: absolute; right: -120px; bottom: -120px;
  width: 520px; height: 520px;
  background-image: url('/assets/beeldmerk-creme.png');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0.06; pointer-events: none; z-index: 0;
}
.footer > * { position: relative; z-index: 1; }
.footer__inner { max-width: 1240px; margin: 0 auto; }
.footer__cta { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding-bottom: 64px; margin-bottom: 56px; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.footer__cta-head h2 { font-family: "Playfair Display", serif; font-weight: 700; text-transform: none; letter-spacing: -0.01em; font-size: 46px; line-height: 1.0; margin: 0; }
.h2-faded { opacity: 0.35; font-weight: 400; }
.footer__cta-head .btn-outline { margin-top: 28px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.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: 20px; 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: 0 0 20px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 12px; }
.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-inline { display: flex; border-bottom: 1px solid rgba(255, 255, 255, 0.25); padding-bottom: 8px; gap: 12px; margin-top: 14px; max-width: 320px; }
.footer__news-inline input { background: none; border: none; color: #fff; font-family: "Playfair Display", serif; font-size: 14px; flex: 1; outline: none; }
.footer__news-inline input::placeholder { color: rgba(255, 255, 255, 0.35); }
.footer__news-inline button { background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; }
.footer__news-inline button:hover { opacity: 1; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 26px; margin-top: 8px; }
.footer__bottom p, .footer__bottom a { font-family: "Playfair Display", serif; font-size: 13px; color: rgba(255, 255, 255, 0.6); margin: 0; }
.footer__bottom-mid { color: rgba(255, 255, 255, 0.5); font-size: 13px; }
.footer__linkedin { color: #fff; opacity: 0.7; transition: opacity 0.2s; display: inline-flex; }
.footer__linkedin:hover { opacity: 1; }

/* ── NAV + FOOTER RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer { padding: 90px 32px 40px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .navbar.scrolled { padding: 0 20px; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .nav-toggle { display: block; }
  .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.92);
    -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    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; align-items: center; 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; 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; min-height: 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; 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; }
  .footer__cta { grid-template-columns: 1fr; gap: 28px; }
  .footer__cta-head h2 { font-size: 36px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ── Tweekolomsdropdown + vacatures-dropdown (gedeeld met tsp.css) ── */
.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: "Barlow Condensed", sans-serif; font-weight: 700; 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; }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 6px 20px; padding: 0; list-style: none; }
@media (max-width: 768px) {
  .dropdown-tweekol { flex-direction: column; min-width: 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; }
}

/* ── Discipline-snelkoppelingen boven het filter ── */
.discipline-snelkoppelingen { display: flex; flex-wrap: wrap; gap: 24px; max-width: 1100px; margin: 0 auto; padding: 28px 24px 0; }
.discipline-snelkoppelingen a { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); text-decoration: none; }
.discipline-snelkoppelingen a:hover { color: var(--navy-deep); }
