/* ============ Tokens ============ */
:root {
  /* Brand rainbow (logo-derived, original palette) */
  --c-purple: #B47BB8;
  --c-blue:   #7FB8D4;
  --c-cyan:   #9DD3DF;
  --c-green:  #A6CE89;
  --c-yellow: #F3D96B;
  --c-orange: #F0A15E;
  --c-red:    #E26C5A;

  /* Ink + paper */
  --ink-900: #0E1324;
  --ink-800: #1A2138;
  --ink-700: #2B3350;
  --ink-500: #5A6388;
  --ink-400: #8A93B4;
  --ink-300: #B9C0D6;
  --ink-200: #D9DDE9;
  --ink-100: #EEF1F7;

  --paper:   #FAFBFD;
  --paper-2: #F2F5FA;

  --accent: var(--c-blue);
  --accent-soft: color-mix(in oklch, var(--accent), white 70%);

  --font-display: 'Manrope', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(14,19,36,0.04), 0 2px 8px rgba(14,19,36,0.04);
  --shadow-md: 0 4px 12px rgba(14,19,36,0.06), 0 12px 40px rgba(14,19,36,0.08);
  --shadow-lg: 0 8px 24px rgba(14,19,36,0.08), 0 24px 60px rgba(14,19,36,0.10);

  --motion: 1;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink-900);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ Layout ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--ink-400);
  display: inline-block;
}

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 251, 253, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(14,19,36,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav-logo small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-500);
  margin-bottom: -2px;
}
.nav-links {
  display: flex; gap: 4px;
  align-items: center;
}
@media (max-width: 920px) {
  .nav-links .nav-link { display: none; }
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  color: var(--ink-700);
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: var(--ink-100); color: var(--ink-900); }

.nav-cta {
  padding: 10px 18px;
  background: var(--ink-900);
  color: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  background: white;
}
.lang-switch button {
  padding: 6px 12px;
  color: var(--ink-500);
  transition: background 0.2s, color 0.2s;
}
.lang-switch button.active {
  background: var(--ink-900);
  color: white;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #E6F0F8 0%, #F2F7FB 40%, var(--paper) 100%);
}
.hero.dark {
  background: radial-gradient(ellipse 80% 60% at 30% 60%, #1A2138 0%, #0B0F1F 60%, #07091A 100%);
  color: white;
}
.hero.dark h1, .hero.dark p { color: white; }
.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-cloud {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 35%, rgba(255,255,255,0.7), transparent 40%),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.6), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.5), transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}
.hero.dark .hero-cloud { display: none; }

.hero-stars {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero.dark .hero-stars { opacity: 1; }
.hero-stars .star {
  position: absolute;
  width: 2px; height: 2px;
  background: white;
  border-radius: 50%;
  opacity: 0.6;
  animation: twinkle 4s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 220px);
  min-height: calc(100svh - 220px);
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; min-height: 0; }
}

.hero-copy h1 {
  font-size: clamp(44px, 6.8vw, 92px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 28px;
}
.hero-copy h1 .line { display: block; }
.hero-copy h1 .accent {
  background: linear-gradient(90deg,
    var(--c-purple), var(--c-blue), var(--c-cyan),
    var(--c-green), var(--c-yellow), var(--c-orange), var(--c-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: flow 12s ease-in-out infinite;
}
@keyframes flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-copy p.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero.dark .hero-copy p.lead { color: var(--ink-300); }

.hero-ctas {
  display: flex; gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
  background: var(--ink-900);
  color: white;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hero.dark .btn-primary { background: white; color: var(--ink-900); }
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--ink-200);
}
.btn-ghost:hover { background: white; }
.hero.dark .btn-ghost { color: white; border-color: rgba(255,255,255,0.25); }
.hero.dark .btn-ghost:hover { background: rgba(255,255,255,0.08); }

.hero-meta {
  margin-top: 64px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta div {
  font-size: 13px;
  color: var(--ink-500);
}
.hero-meta strong {
  display: block;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.hero.dark .hero-meta div { color: var(--ink-300); }
.hero.dark .hero-meta strong { color: white; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
}
@media (max-width: 960px) {
  .hero-visual { display: none; }
}

/* ============ Mission ============ */
.mission {
  background: var(--paper);
  position: relative;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 860px) {
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
}
.mission-grid h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  margin-top: 20px;
}
.mission-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--ink-100);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 600px) {
  .mission-values { grid-template-columns: 1fr; }
}
.value {
  background: var(--paper);
  padding: 32px;
  transition: background 0.2s;
}
.value:hover { background: white; }
.value-dot {
  width: 12px; height: 12px; border-radius: 50%;
  margin-bottom: 18px;
}
.value h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.value p {
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.55;
}

.mission-photo {
  position: relative;
  margin-top: 100px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-lg);
}
.mission-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mission-photo .caption {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  display: inline-flex;
  gap: 8px; align-items: center;
}

/* ============ Stats ============ */
.stats {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  padding: 80px 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.stat {
  border-left: 1px solid var(--ink-200);
  padding-left: 20px;
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--ink-900), var(--ink-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.4;
}

/* ============ Projects ============ */
.projects {
  background: var(--paper);
}
.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.projects-head h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  max-width: 600px;
}
.filter-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 4px;
  background: transparent;
  border-radius: 8px;
}
.filter-pill {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-500);
  background: var(--ink-100);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.filter-pill.active {
  background: var(--ink-900);
  color: white;
  box-shadow: var(--shadow-sm);
}
.filter-pill:not(.active):hover { color: var(--ink-900); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  animation: cardIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink-200);
}
.project-visual {
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.project-visual svg { width: 100%; height: 100%; display: block; }
.project-body {
  padding: 22px 24px 26px;
}
.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.project-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.project-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.project-card p {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.5;
}
.project-meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-400);
  padding-top: 16px;
  border-top: 1px solid var(--ink-100);
}

.project-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.project-types {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; gap: 6px;
  flex-wrap: wrap;
}
.type-chip {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--ink-900);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(14,19,36,0.12);
}
.project-client {
  display: flex; flex-direction: column;
  margin-bottom: 10px;
  gap: 2px;
}
.project-client-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.project-client-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
}
.project-categories {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-100);
  display: flex; gap: 6px;
  flex-wrap: wrap;
}
.cat-chip {
  display: inline-flex; align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--ink-100);
  border-radius: 999px;
  line-height: 1.4;
}
.cat-chip .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}

/* Filter pill tweaks for dot + count */
.filter-pill {
  display: inline-flex; align-items: center;
  gap: 8px;
}
.filter-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.filter-pill .count {
  font-size: 11px;
  color: var(--ink-400);
  font-weight: 600;
  margin-left: 2px;
}
.filter-pill.active .count { color: var(--ink-500); }
.filter-pills { justify-content: flex-start; }

/* ============ Events ============ */
.events {
  background: var(--paper-2);
}
.events-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.events-head h2 {
  font-size: clamp(36px, 4.4vw, 56px);
}
.event-list {
  display: flex; flex-direction: column;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
}
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--ink-100);
  transition: background 0.2s;
  cursor: pointer;
}
.event-row:last-child { border-bottom: none; }
.event-row:hover { background: var(--paper); }
.event-date {
  font-family: var(--font-display);
  font-weight: 700;
}
.event-date .day {
  display: block;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.event-date .month {
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.event-info h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.event-info .meta {
  font-size: 13px;
  color: var(--ink-500);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.event-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--ink-100);
  color: var(--ink-500);
}
/* Per-tag color overrides */
.event-tag[data-tag="Conferentie"],
.event-tag[data-tag="Conference"]  { background: oklch(90% 0.06 300); color: oklch(35% 0.10 300); }
.event-tag[data-tag="Netwerken"],
.event-tag[data-tag="Networking"]  { background: oklch(90% 0.06 220); color: oklch(35% 0.10 220); }
.event-tag[data-tag="Jobfair"],
.event-tag[data-tag="Job fair"]    { background: oklch(90% 0.07 145); color: oklch(35% 0.12 145); }
.event-tag[data-tag="Demonstratie"],
.event-tag[data-tag="Demo"]        { background: oklch(90% 0.07 50);  color: oklch(35% 0.12 50);  }
.event-tag[data-tag="Hackathon"]   { background: oklch(90% 0.07 20);  color: oklch(35% 0.12 20);  }
.event-tag[data-tag="Fieldtrip"],
.event-tag[data-tag="Field trip"]  { background: oklch(90% 0.06 170); color: oklch(35% 0.10 170); }
.event-type {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ink-100);
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.event-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink-100);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.event-row:hover .event-arrow {
  background: var(--ink-900);
  color: white;
  transform: translateX(2px);
}
.event-row.past {
  opacity: 0.55;
}
.event-row.past .event-type {
  background: transparent;
  border: 1px solid var(--ink-200);
  color: var(--ink-500);
}
.event-row.no-link {
  cursor: default;
}
.event-row.no-link:hover {
  background: white;
}
.event-row.no-link:hover .event-arrow-empty {
  background: var(--ink-100);
  transform: none;
}
.event-arrow-empty {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink-100);
  opacity: 0.4;
}
@media (max-width: 720px) {
  .event-row { grid-template-columns: 80px 1fr; gap: 16px; padding: 18px 20px; }
  .event-type, .event-arrow { display: none; }
  .event-date .day { font-size: 24px; }
}

/* ============ Contact ============ */
.contact {
  background: var(--paper);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  margin-bottom: 16px;
}
.contact-lead {
  font-size: 17px;
  color: var(--ink-500);
  margin-bottom: 32px;
  max-width: 460px;
}
.contact-info {
  display: flex; flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-row {
  display: flex; gap: 16px;
  align-items: start;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .label {
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-row .value {
  font-size: 16px;
  color: var(--ink-900);
  font-weight: 500;
}
.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
  margin-top: 24px;
  position: relative;
  border: 1px solid var(--ink-100);
}
.form {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.field {
  display: flex; flex-direction: column;
  margin-bottom: 18px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink-900);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent), white 80%);
}
.field textarea { resize: vertical; min-height: 96px; }
.field .err {
  color: var(--c-red);
  font-size: 12px;
  margin-top: 6px;
}
.field-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}
.form-submit {
  width: 100%;
  padding: 14px 20px;
  background: var(--ink-900);
  color: white;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.form-submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-success {
  padding: 20px;
  background: color-mix(in oklch, var(--c-green), white 78%);
  border: 1px solid color-mix(in oklch, var(--c-green), white 50%);
  border-radius: var(--radius-md);
  color: color-mix(in oklch, var(--c-green), black 30%);
  font-size: 14px;
  margin-top: 16px;
}

/* ============ Footer ============ */
.footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-top h4 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--ink-300); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-brand p {
  color: var(--ink-300);
  font-size: 14px;
  max-width: 320px;
  margin-top: 16px;
}
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 32px;
  font-size: 13px;
  color: var(--ink-400);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ DSH building photo (contact) ============ */
/* The row is a grid; the map sets the row height via its aspect-ratio
   against an explicit column. The square photo takes a column whose
   width equals the row's height (so 1:1). */
.map-photo-row {
  display: grid;
  /* the photo column's width is driven by --rowh, set below via container */
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
  align-items: stretch;
}
.map-photo-row .map-box {
  margin-top: 0;
  aspect-ratio: 16 / 10;
  width: 100%;
}
.dsh-photo {
  display: none; /* hidden until we can size it from the map */
}

/* Use container queries: when the map-photo-row is wide enough, show the
   photo at a fixed aspect-ratio using a known-width approach — two equal
   columns don't work because we want the square to be HEIGHT-driven.
   Solution: give the photo a fixed width = (row_width - gap) * 10/26, so
   together map (16/10) + square (1/1) fit. Row width is the parent
   contact column. We use container-type on the wrapping column. */

@media (min-width: 641px) {
  .map-photo-row {
    /* Let the photo be a fraction of the row width equal to map-height /
       (map-width + gap + photo-width). Easiest: give it a percentage that
       is the same ratio as map aspect-ratio 10/(16+10)=~0.3846. */
    grid-template-columns: 1fr 38.46%;
  }
  .dsh-photo {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ink-100);
    background: var(--paper-2);
  }
  .dsh-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* ============ About teaser (pre-contact) ============ */
.about-teaser {
  background: var(--ink-900);
  padding: 0;
}
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 72px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: opacity 0.2s;
}
.about-teaser-inner:hover { opacity: 0.88; }
.about-teaser-inner:hover .about-teaser-btn {
  gap: 16px;
}
@media (max-width: 720px) {
  .about-teaser-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 0;
  }
}
.about-teaser-text .eyebrow { margin-bottom: 16px; }
.about-teaser-title {
  font-size: clamp(32px, 4vw, 52px);
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.05;
}
.about-teaser-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  line-height: 1.6;
}
.about-teaser-cta {
  flex-shrink: 0;
}
.about-teaser-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: white;
  color: var(--ink-900);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: gap 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.about-teaser-inner:hover .about-teaser-btn {
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
}

/* ============ Mobile hamburger + drawer ============ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border: none;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--ink-100); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-hamburger { display: flex; }
}

/* Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 19, 36, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
@media (max-width: 920px) {
  .mobile-menu-overlay { display: block; pointer-events: none; }
  .mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
}

/* Drawer */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 201;
  width: min(340px, 88vw);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(14, 19, 36, 0.12);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--ink-100);
}
.mobile-menu-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink-100);
  color: var(--ink-700);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover { background: var(--ink-200); color: var(--ink-900); }

.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  gap: 2px;
  overflow-y: auto;
}
.mobile-menu-link {
  display: block;
  padding: 16px 16px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-link:hover {
  background: var(--ink-100);
  color: var(--ink-900);
}

.mobile-menu-footer {
  padding: 20px 24px 36px;
  border-top: 1px solid var(--ink-100);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu-address {
  font-size: 12px;
  color: var(--ink-400);
  margin: 0;
}

/* ============ Tweaks panel ============ */
.tweaks-panel {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 1000;
  width: 280px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  font-size: 13px;
  transform-origin: bottom right;
  animation: tweaksIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes tweaksIn {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.tweaks-panel h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  color: var(--ink-700);
  display: flex; justify-content: space-between;
}
.tweaks-panel label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-500);
  margin: 14px 0 6px;
}
.tweaks-row {
  display: flex; gap: 6px;
}
.tweaks-row button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--ink-100);
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s;
}
.tweaks-row button.active {
  background: var(--ink-900);
  color: white;
}
.color-pick {
  display: flex; gap: 6px;
}
.color-pick button {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: transform 0.15s, border-color 0.15s;
}
.color-pick button:hover { transform: scale(1.1); }
.color-pick button.active { border-color: var(--ink-900); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Motion intensity */
body[data-motion="low"] .hero-svg path { animation: none !important; }
body[data-motion="low"] .hero-copy h1 .accent { animation: none; }
body[data-motion="low"] .hero-stars .star { animation: none; }

/* ============ Over ZCS page ============ */
.nav-link.active {
  background: var(--ink-100);
  color: var(--ink-900);
}
.nav-page.scrolled {
  background: rgba(250, 251, 253, 0.92);
}

.over-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #E6F0F8 0%, #F2F7FB 50%, var(--paper) 100%);
  overflow: hidden;
}
.over-hero-cloud {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(180,123,184,0.18), transparent 45%),
    radial-gradient(circle at 80% 25%, rgba(127,184,212,0.20), transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(166,206,137,0.15), transparent 55%);
  pointer-events: none;
}
.over-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.over-hero-title {
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-top: 24px;
  text-wrap: balance;
}
.over-hero-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-700);
  margin-top: 28px;
  max-width: 720px;
}
.over-hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 36px;
}
.meta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  backdrop-filter: blur(6px);
}
.meta-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.over-h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  margin-top: 20px;
  margin-bottom: 48px;
  max-width: 720px;
}

/* Problem cards */
.over-problems {
  background: var(--paper);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; }
}
.problem-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.problem-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 24px;
}
.problem-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.problem-card p {
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.65;
}
.problem-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-100);
}
.problem-photo {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.problem-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Audience cards */
.over-audience {
  background: var(--paper-2);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.audience-grid > .reveal {
  display: flex;
  flex-direction: column;
}
.audience-grid > .reveal > .audience-card {
  flex: 1;
}
@media (max-width: 860px) {
  .audience-grid { grid-template-columns: 1fr; }
}
.audience-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.audience-card .problem-photo {
  margin-top: auto;
  padding-top: 20px;
}
.audience-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 18px;
}
.audience-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.audience-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 14px;
}
.audience-card p {
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.65;
}

/* CTA */
.over-cta-section {
  background: var(--paper);
}
.over-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 56px 48px;
  background: linear-gradient(135deg, #0E1324 0%, #1A2138 100%);
  border-radius: var(--radius-xl);
  color: white;
  position: relative;
  overflow: hidden;
}
.over-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 20%, rgba(180,123,184,0.20), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(127,184,212,0.18), transparent 45%);
  pointer-events: none;
}
@media (max-width: 720px) {
  .over-cta { grid-template-columns: 1fr; padding: 40px 28px; gap: 24px; }
}
.over-cta h2 {
  color: white;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
  position: relative;
}
.over-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  position: relative;
}
.over-cta-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  position: relative;
  justify-content: flex-end;
}
@media (max-width: 720px) {
  .over-cta-actions { justify-content: flex-start; }
}
.over-cta .btn-primary {
  background: white;
  color: var(--ink-900);
}
.over-cta .btn-ghost {
  color: white;
  border-color: rgba(255,255,255,0.25);
}
.over-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* ============ Inzet grid (Over ZCS) ============ */
.inzet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 860px) {
  .inzet-grid { grid-template-columns: 1fr; }
}
.inzet-grid > .reveal {
  display: flex;
  flex-direction: column;
}
.inzet-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}
.inzet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.inzet-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.inzet-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0;
}
.inzet-card p {
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  text-wrap: pretty;
}
.inzet-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.inzet-cta p {
  font-size: 17px;
  color: var(--ink-700);
  font-weight: 500;
  margin: 0;
}

/* ============ Team grid (Over ZCS) ============ */
.over-team {
  background: var(--paper);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  position: relative;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink-200);
}
.team-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 12px rgba(14,19,36,0.12);
}
.team-body h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.team-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-500);
}
.team-linkedin {
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ink-100);
  color: var(--ink-700);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.team-linkedin:hover {
  background: #0A66C2;
  color: white;
  transform: translateY(-1px);
}


/* ============ Vacatures ============ */
.vac-list-section {
  background: var(--paper);
  padding-top: 64px;
}
.vac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}
@media (max-width: 720px) {
  .vac-grid { grid-template-columns: 1fr; gap: 20px; }
}

.vac-card {
  display: flex; flex-direction: column;
  text-align: left;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  width: 100%;
  padding: 0;
}
.vac-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-200);
}
.vac-card-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.vac-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.vac-card:hover .vac-card-photo img { transform: scale(1.04); }
.vac-card-id {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--ink-900);
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.vac-card-body {
  padding: 22px 22px 18px;
  display: flex; flex-direction: column;
  gap: 10px;
  flex: 1;
}
.vac-card-tags {
  display: flex; gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.vac-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  text-wrap: balance;
}
.vac-card-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-500);
}
.vac-card-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--ink-100);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.vac-card-meta {
  font-size: 12.5px;
  color: var(--ink-500);
  display: flex; gap: 6px; flex-wrap: wrap;
}
.vac-card-meta strong { color: var(--ink-900); font-weight: 700; }
.vac-card-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink-100);
  color: var(--ink-700);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.vac-card:hover .vac-card-arrow {
  background: var(--ink-900);
  color: white;
  transform: translateX(2px);
}

/* Modal / detail */
.vac-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 22, 28, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: flex; justify-content: center; align-items: flex-start;
  padding: 40px 20px;
  overflow-y: auto;
  animation: vacFadeIn 0.2s ease;
}
@keyframes vacFadeIn { from { opacity: 0; } to { opacity: 1; } }
.vac-modal {
  background: white;
  width: 100%;
  max-width: 880px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  animation: vacSlideUp 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes vacSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.vac-modal-close {
  position: absolute; top: 18px; right: 18px;
  z-index: 5;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}
.vac-modal-close:hover { background: white; transform: rotate(90deg); }

.vac-modal-hero {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.vac-modal-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vac-modal-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 32px;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.88) 100%);
  color: white;
}
.vac-modal-id {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.18);
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.vac-modal-hero-overlay h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  text-wrap: balance;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}
.vac-modal-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.vac-modal-tag {
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(255,255,255,0.18);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.vac-modal-body {
  padding: 32px;
}
@media (max-width: 720px) {
  .vac-modal-body { padding: 24px 22px; }
  .vac-modal-hero-overlay { padding: 22px 22px; }
}

.vac-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink-100);
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
}
@media (max-width: 560px) {
  .vac-meta-grid { grid-template-columns: 1fr; }
}
.vac-meta-item {
  background: white;
  padding: 14px 16px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.vac-meta-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
}
.vac-meta-value {
  font-size: 14.5px;
  color: var(--ink-900);
  font-weight: 600;
}

.vac-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 24px;
  text-wrap: pretty;
}

.vac-section {
  margin-top: 28px;
}
.vac-section h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.vac-section p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 12px;
}
.vac-bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.vac-bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-700);
}
.vac-bullet-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.vac-modal-cta {
  margin-top: 36px;
  padding: 24px 26px;
  background: var(--paper-2);
  border-radius: 14px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.vac-modal-cta h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.vac-modal-cta p {
  font-size: 14.5px;
  color: var(--ink-500);
  max-width: 460px;
}

/* DSH CTA */
.vac-cta-section {
  background: var(--paper);
  padding-top: 24px;
}
.vac-cta {
  background: var(--ink-900);
  color: white;
  border-radius: 22px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.vac-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(127,184,212,0.22), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(166,206,137,0.18), transparent 50%);
  pointer-events: none;
}
@media (max-width: 720px) {
  .vac-cta { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; }
}
.vac-cta-left { position: relative; }
.vac-cta-left h2 {
  color: white;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 14px;
  line-height: 1.15;
  text-wrap: balance;
}
.vac-cta-left p {
  color: rgba(255,255,255,0.78);
  font-size: 16.5px;
  line-height: 1.55;
  max-width: 540px;
}
.vac-cta-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  position: relative;
  justify-content: flex-end;
}
@media (max-width: 720px) {
  .vac-cta-actions { justify-content: flex-start; }
}
.vac-cta .btn-primary {
  background: white;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
}
.vac-cta .btn-primary:hover {
  background: rgba(255,255,255,0.92);
}
