@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=JetBrains+Mono:wght@400;500&family=Noto+Sans:wght@300;400;500&display=swap');

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

html {
  scroll-behavior: smooth;
}

:root {
  --navy:    #222B5B;
  --pink:    #C22757;
  --white:   #ffffff;
  --light:   #f4f5f9;
  --text:    #333333;
  --mono:    'JetBrains Mono', monospace;
  --display: 'Poppins', sans-serif;
  --body:    'Noto Sans', sans-serif;
}

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* SECTION LABELS — monospace prefix above headings */
.section-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 0.07em;
  margin-bottom: 0.55rem;
  opacity: 0.85;
}

/* NAV */
nav {
  background: var(--white);
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(34, 43, 91, 0.08);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo-icon {
  height: 34px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav ul a {
  color: var(--navy);
  text-decoration: none;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 400;
  opacity: 0.6;
  transition: opacity 0.15s;
}

nav ul a:hover {
  opacity: 1;
}

.nav-cta {
  background: transparent !important;
  color: var(--pink) !important;
  opacity: 1 !important;
  padding: 0.38rem 1rem;
  border: 1.5px solid var(--pink) !important;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.85rem !important;
  transition: background 0.15s, color 0.15s !important;
}

.nav-cta:hover {
  background: var(--pink) !important;
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 1rem 1.2rem;
  }

  .nav-hamburger {
    display: flex;
  }

  #navMenu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }

  #navMenu.nav-open {
    display: flex;
  }

  #navMenu li a {
    display: block;
    padding: 0.65rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-cta {
    display: inline-block;
    margin-top: 0.4rem;
  }
}

/* HERO */
.hero {
  position: relative;
  background: url('images/team.jpg') center top / cover no-repeat;
  color: var(--white);
  padding: 7rem 2rem 6rem;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(34, 43, 91, 0.82);
}

/* Subtle technical grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  margin-bottom: 1.6rem;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.28rem 0.75rem;
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--pink);
}

/* Blinking terminal cursor */
.cursor {
  animation: blink 1.1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.78;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 0.82rem 1.9rem;
  border-radius: 2px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn:hover {
  background: #a81f47;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  margin-left: 0.75rem;
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.65);
}

/* Tech stack tag strip in hero */
.hero-stack {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}

.hero-stack span {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.22rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: color 0.15s, border-color 0.15s;
}

.hero-stack span:hover {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.22);
}

/* FACTS STRIP */
.facts-strip {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.facts-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.6rem 2.5rem;
  flex: 1;
}

.fact-number {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.fact-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.fact-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .facts-inner {
    gap: 0;
    flex-wrap: wrap;
  }
  .fact {
    padding: 1.2rem 1.5rem;
    flex: 1 1 45%;
  }
  .fact-divider {
    display: none;
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger voor kaarten binnen een grid */
.cards .card:nth-child(1) { transition-delay: 0.05s; }
.cards .card:nth-child(2) { transition-delay: 0.1s; }
.cards .card:nth-child(3) { transition-delay: 0.15s; }
.cards .card:nth-child(4) { transition-delay: 0.2s; }
.cards .card:nth-child(5) { transition-delay: 0.25s; }
.cards .card:nth-child(6) { transition-delay: 0.3s; }

.team-cards .team-card:nth-child(1) { transition-delay: 0.05s; }
.team-cards .team-card:nth-child(2) { transition-delay: 0.12s; }
.team-cards .team-card:nth-child(3) { transition-delay: 0.19s; }

/* NAV SCROLL STATE */
nav {
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

nav.scrolled {
  box-shadow: 0 2px 16px rgba(34, 43, 91, 0.1);
  border-bottom-color: rgba(34, 43, 91, 0.13);
}

/* SERVICES */
.services {
  padding: 5.5rem 2rem;
  background-color: var(--light);
  background-image: radial-gradient(circle, rgba(34, 43, 91, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header h2 {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: 3px;
  padding: 1.8rem;
  border: 1px solid rgba(34, 43, 91, 0.08);
  border-left: 3px solid var(--pink);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194, 39, 87, 0.04) 0%, rgba(34, 43, 91, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(34, 43, 91, 0.14), 0 2px 8px rgba(194, 39, 87, 0.1);
  border-color: rgba(194, 39, 87, 0.35);
}

.card:hover::after {
  opacity: 1;
}

/* Monospace category label above card title */
.card-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--pink);
  letter-spacing: 0.07em;
  margin-bottom: 0.55rem;
  opacity: 0.75;
}

.card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #555;
  font-weight: 300;
}

/* FOTO CENTRAAL — full-width strip */
.photogrid-section {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}

.photo-center {
  width: 100%;
  max-width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(0.65) saturate(0.7);
}


/* MISSION */
.mission {
  background: var(--navy);
  color: var(--white);
  padding: 5.5rem 2rem;
  position: relative;
}

/* Subtle technical grid on dark sections */
.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.mission > * {
  position: relative;
}

.mission-intro {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.mission-intro img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 3px;
  filter: brightness(0.7) saturate(0.65);
}

@media (max-width: 768px) {
  .mission-intro {
    grid-template-columns: 1fr;
  }

  .mission-intro img {
    display: none;
  }
}

.mission-intro-text {
  text-align: center;
}

.mission-intro-text h2 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--white);
}

.mission-intro-text p {
  line-height: 1.85;
  opacity: 0.75;
  font-weight: 300;
  font-size: 0.95rem;
}

.mission-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.mission-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--white);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.75rem;
  text-decoration: none;
  border-bottom: 1.5px solid var(--pink);
  padding-bottom: 0.1rem;
  letter-spacing: 0.05em;
  transition: opacity 0.15s;
}

.mission-link:hover {
  opacity: 0.65;
}

.mission-block h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.mission-block p {
  line-height: 1.85;
  opacity: 0.75;
  font-weight: 300;
  font-size: 0.9rem;
}

/* TEAM */
.team {
  padding: 5.5rem 2rem;
  background: var(--white);
}

.team-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.team-header h2 {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: var(--light);
  border-radius: 3px;
  padding: 2.2rem;
  text-align: center;
  border: 1px solid rgba(34, 43, 91, 0.07);
  border-top: 3px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-top-color 0.22s ease, background 0.22s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(34, 43, 91, 0.12), 0 2px 8px rgba(194, 39, 87, 0.08);
  border-top-color: var(--pink);
  background: var(--white);
}

.avatar-photo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.2rem;
  border: 2px solid var(--pink);
  filter: grayscale(15%);
}

.team-card h3 {
  font-family: var(--display);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.team-card .role {
  font-family: var(--mono);
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.team-card p:last-child {
  font-size: 0.87rem;
  line-height: 1.7;
  color: #666;
  font-weight: 300;
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: var(--mono);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.15s;
  z-index: 50;
  line-height: 1;
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--pink);
  border-color: var(--pink);
}

/* FOOTER */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0A66C2;
  color: var(--white);
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  transition: background 0.15s;
}

.linkedin-btn:hover {
  background: #004182;
}

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.78rem;
  font-family: var(--mono);
  border-top: 1px solid rgba(255,255,255,0.04);
  letter-spacing: 0.03em;
}

footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

footer a:hover {
  color: var(--white);
}

/* ============================================================
   WERKEN BIJ
   ============================================================ */

/* HERO */
.wb-hero {
  position: relative;
  background: url('images/team.jpg') center 10% / cover no-repeat;
  color: var(--white);
  padding: 8rem 2rem;
  text-align: center;
}

.wb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(34, 43, 91, 0.82);
}

.wb-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.wb-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.wb-hero-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.07em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.28rem 0.75rem;
  border-radius: 2px;
}

.wb-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.3rem;
  letter-spacing: -0.03em;
}

.wb-hero h1 span {
  color: var(--pink);
}

.wb-hero p {
  font-size: 1.05rem;
  opacity: 0.78;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  font-weight: 300;
}

/* WAAROM */
.wb-waarom {
  padding: 5.5rem 2rem;
  background-color: var(--light);
  background-image: radial-gradient(circle, rgba(34, 43, 91, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
}

.wb-waarom .services-header {
  margin-bottom: 3.5rem;
}

/* CULTUUR */
.wb-cultuur {
  background: var(--navy);
  color: var(--white);
  padding: 5.5rem 2rem;
  position: relative;
}

.wb-cultuur::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.wb-cultuur > * {
  position: relative;
}

.wb-cultuur-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.wb-cultuur-text .section-label {
  color: var(--pink);
}

.wb-cultuur-text h2 {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.3rem;
  color: var(--white);
}

.wb-cultuur-text p {
  line-height: 1.85;
  opacity: 0.75;
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 0.92rem;
}

.wb-cultuur-foto img {
  width: 100%;
  border-radius: 3px;
  object-fit: cover;
  max-height: 420px;
  filter: brightness(0.75) saturate(0.7);
}

/* WAT WE ZOEKEN */
.wb-zoeken {
  background: var(--navy);
  color: var(--white);
  padding: 5.5rem 2rem;
  position: relative;
}

.wb-zoeken::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.wb-zoeken > * {
  position: relative;
}

.wb-zoeken-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wb-zoeken-inner .section-label {
  display: block;
  text-align: center;
  color: var(--pink);
}

.wb-zoeken h2 {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 0.75rem;
}

.wb-zoeken-intro {
  text-align: center;
  opacity: 0.72;
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 300;
  font-size: 0.95rem;
}

.wb-eisen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
}

.wb-eis {
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  padding: 1.8rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--pink);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.wb-eis::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194, 39, 87, 0.06) 0%, rgba(255,255,255,0.03) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.wb-eis:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25), 0 2px 8px rgba(194, 39, 87, 0.15);
  border-color: rgba(255,255,255,0.14);
}

.wb-eis:hover::after {
  opacity: 1;
}

.wb-eis--plus {
  border-left-color: rgba(255,255,255,0.2);
}

.wb-eis-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--pink);
  color: var(--white);
  border-radius: 2px;
  padding: 0.18rem 0.6rem;
  margin-bottom: 0.8rem;
}

.wb-eis-label--plus {
  background: rgba(255,255,255,0.12);
}

.wb-eis h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.wb-eis p {
  font-size: 0.87rem;
  line-height: 1.7;
  opacity: 0.75;
  font-weight: 300;
}

/* Stagger voor wb-eisen */
.wb-eisen .wb-eis:nth-child(1) { transition-delay: 0.05s; }
.wb-eisen .wb-eis:nth-child(2) { transition-delay: 0.1s; }
.wb-eisen .wb-eis:nth-child(3) { transition-delay: 0.15s; }
.wb-eisen .wb-eis:nth-child(4) { transition-delay: 0.2s; }
.wb-eisen .wb-eis:nth-child(5) { transition-delay: 0.25s; }
.wb-eisen .wb-eis:nth-child(6) { transition-delay: 0.3s; }

/* VACATURES */
.wb-vacatures {
  padding: 5.5rem 2rem;
  background: var(--white);
}

.wb-vacatures .section-label {
  display: block;
  text-align: center;
}

.wb-vacatures h2 {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.75rem;
}

.wb-vacatures-intro {
  text-align: center;
  color: #666;
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 300;
  font-size: 0.92rem;
}

.wb-vacature-lijst {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 800px;
  margin: 0 auto;
}

.wb-vacature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light);
  border-radius: 3px;
  padding: 1.4rem 1.8rem;
  border: 1px solid rgba(34, 43, 91, 0.07);
  border-left: 3px solid var(--pink);
}

.wb-vacature--open {
  border-left-color: var(--navy);
}

.wb-vacature-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.wb-vacature-info h3 {
  width: 100%;
  font-family: var(--display);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.wb-loading {
  text-align: center;
  padding: 2rem;
  color: #999;
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.wb-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-family: var(--mono);
  background: var(--white);
  color: #666;
  border-radius: 2px;
  padding: 0.18rem 0.6rem;
  margin-right: 0.4rem;
  border: 1px solid rgba(34, 43, 91, 0.08);
}

/* CONTACT PATRIEK */
.wb-contact-patriek {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 2rem auto 0;
  background: var(--light);
  border-radius: 3px;
  padding: 1.4rem 1.8rem;
  border: 1px solid rgba(34, 43, 91, 0.07);
  border-left: 3px solid var(--navy);
}

.wb-contact-patriek img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
  flex-shrink: 0;
  filter: grayscale(10%);
}

.wb-contact-naam {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.1rem;
  letter-spacing: -0.01em;
}

.wb-contact-rol {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--pink);
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
}

.wb-contact-patriek p:last-of-type {
  font-size: 0.87rem;
  color: #666;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  font-weight: 300;
}

.wb-linkedin {
  margin-bottom: 0;
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(34, 43, 91, 0.75);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.modal--open {
  display: flex;
}

.modal--cvviz {
  background: var(--white);
  border-radius: 3px;
  width: calc(100vw - 2rem);
  height: calc(100vh - 2rem);
  max-width: 1200px;
  max-height: 920px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-top: 3px solid var(--pink);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.4rem 1.8rem 1.2rem;
  border-bottom: 1px solid rgba(34, 43, 91, 0.08);
  flex-shrink: 0;
}

.modal-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--pink);
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
  opacity: 0.85;
}

.modal-header h2 {
  font-family: var(--display);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: color 0.15s;
}

.modal-close:hover {
  color: var(--navy);
}

.modal-meta {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: #888;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.6rem 1.8rem;
  font-size: 0.88rem;
  line-height: 1.8;
  color: #444;
  white-space: pre-line;
  font-family: var(--sans, sans-serif);
}

.modal--compact {
  height: auto;
  max-height: none;
}

.modal--compact .modal-body {
  padding-bottom: 0;
}

.modal-footer {
  padding: 1rem 1.8rem;
  border-top: 1px solid rgba(34, 43, 91, 0.08);
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 600px) {
  .modal--cvviz {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
}

/* Responsive */
@media (max-width: 700px) {
  .wb-cultuur-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wb-vacature {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* CONTACT SECTION */
.contact-section {
  background: var(--light);
  padding: 5rem 2rem;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.contact-inner > p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Override HubSpot form styles */
#hs-contact-form .hs-form fieldset {
  max-width: 100% !important;
}

#hs-contact-form .hs-form .hs-input,
#hs-contact-form .hs-form textarea {
  font-family: var(--body) !important;
  font-size: 0.88rem !important;
  color: var(--text) !important;
  background: var(--white) !important;
  border: 1px solid rgba(34, 43, 91, 0.2) !important;
  border-radius: 6px !important;
  padding: 0.65rem 0.85rem !important;
  width: 100% !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color 0.15s !important;
}

#hs-contact-form .hs-form .hs-input:focus,
#hs-contact-form .hs-form textarea:focus {
  border-color: var(--navy) !important;
}

#hs-contact-form .hs-form label {
  font-family: var(--body) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  color: var(--navy) !important;
  margin-bottom: 0.3rem !important;
}

#hs-contact-form .hs-form .hs-button {
  font-family: var(--display) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 0.7rem 1.8rem !important;
  cursor: pointer !important;
  letter-spacing: 0.03em !important;
  transition: background 0.2s !important;
}

#hs-contact-form .hs-form .hs-button:hover {
  background: var(--pink) !important;
}

#hs-contact-form .hs-form .hs-error-msgs {
  font-size: 0.78rem !important;
  color: var(--pink) !important;
  list-style: none !important;
  padding: 0 !important;
  margin-top: 0.2rem !important;
}

#hs-contact-form .submitted-message {
  font-family: var(--body) !important;
  color: var(--navy) !important;
  font-size: 0.9rem !important;
  padding: 1rem !important;
  background: var(--white) !important;
  border-radius: 6px !important;
  border: 1px solid rgba(34, 43, 91, 0.15) !important;
}
