/* Verbonden Ondernemers — warm lokaal, minder brutalist */

:root {
  --vo-black: #1a1a1a;
  --vo-ink: #2a2826;
  --vo-paper: #f6f3ee;
  --vo-paper-2: #ebe6de;
  --vo-white: #fffdfa;
  --vo-muted: #6b6560;
  --vo-line: #d4cdc4;
  --vo-accent: #d65a3a;
  --vo-accent-hover: #bf4d30;
  --vo-blue: #2d5a8a;
  --vo-yellow: #f0e6c8;
  --vo-lime: #e8efd4;
  --vo-border: 1px solid var(--vo-line);
  --vo-shadow: 0 4px 20px rgba(26, 26, 26, 0.08);
  --vo-shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --vo-radius: 12px;
  --vo-radius-sm: 8px;
  --vo-font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --vo-font-body: "Instrument Sans", system-ui, sans-serif;
  --vo-container: 1180px;
  --vo-narrow: 680px;
  --vo-header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.vo-body {
  margin: 0;
  font-family: var(--vo-font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--vo-ink);
  background: var(--vo-paper);
  -webkit-font-smoothing: antialiased;
}

body.vo-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 20% 0%, rgba(214, 90, 58, 0.04), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(45, 90, 138, 0.04), transparent 45%);
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--vo-ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
a:hover { color: var(--vo-accent); }

.vo-skip {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 8px 16px; background: var(--vo-accent); color: var(--vo-white);
  font-weight: 700;
}
.vo-skip:focus { left: 16px; top: 16px; }

.vo-container { width: min(100% - 28px, var(--vo-container)); margin-inline: auto; }
.vo-container--narrow { width: min(100% - 28px, var(--vo-narrow)); margin-inline: auto; }

/* Label / eyebrow */
.vo-label,
.vo-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  background: var(--vo-yellow);
  border: var(--vo-border);
  border-radius: 999px;
  box-shadow: none;
}
.vo-label--dark { background: var(--vo-lime); }

/* Header */
.vo-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--vo-white);
  border-bottom: var(--vo-border);
}
.vo-header__inner {
  min-height: var(--vo-header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.vo-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.vo-logo__badge {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  font-family: var(--vo-font-display);
  font-weight: 700; font-size: 0.85rem;
  background: var(--vo-accent);
  color: var(--vo-white);
  border: var(--vo-border);
  border-radius: var(--vo-radius-sm);
  box-shadow: var(--vo-shadow-sm);
  transform: none;
}
.vo-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.vo-logo__text strong {
  font-family: var(--vo-font-display);
  font-size: 0.95rem; font-weight: 800;
}
.vo-logo__text small {
  font-size: 0.75rem; font-weight: 600; color: var(--vo-muted);
}

.vo-nav { display: none; gap: 4px; }
@media (min-width: 900px) { .vo-nav { display: flex; } }
.vo-nav a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; color: var(--vo-ink);
  border: 1px solid transparent;
  border-radius: var(--vo-radius-sm);
  transition: background 0.2s, border-color 0.2s;
}
.vo-nav a:hover {
  background: var(--vo-paper);
  border-color: var(--vo-line);
  color: var(--vo-ink);
}
.vo-nav__n {
  font-size: 0.65rem; font-weight: 600;
  color: var(--vo-muted);
}

.vo-header__actions { display: flex; align-items: center; gap: 8px; }
.vo-header__actions .vo-btn--outline { display: none; }
@media (min-width: 768px) { .vo-header__actions .vo-btn--outline { display: inline-flex; } }

.vo-nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 7px;
  width: 44px; height: 44px; padding: 0;
  border: var(--vo-border); background: var(--vo-white); cursor: pointer;
  border-radius: var(--vo-radius-sm);
  box-shadow: var(--vo-shadow-sm);
}
@media (min-width: 900px) { .vo-nav-toggle { display: none; } }
.vo-nav-toggle__bar {
  display: block; width: 20px; height: 2px; margin-inline: auto;
  background: var(--vo-ink);
}
.vo-nav-toggle[aria-expanded="true"] { background: var(--vo-paper); }

.vo-mobile-nav a span { color: var(--vo-muted); font-size: 0.75rem; }

/* Buttons */
.vo-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  font-family: inherit; font-weight: 600; font-size: 0.92rem;
  text-decoration: none; cursor: pointer;
  border: var(--vo-border);
  border-radius: var(--vo-radius-sm);
  box-shadow: var(--vo-shadow-sm);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.vo-btn:hover { transform: translateY(-1px); box-shadow: var(--vo-shadow); color: inherit; }
.vo-btn:active { transform: none; box-shadow: var(--vo-shadow-sm); }
.vo-btn--sm { padding: 8px 14px; font-size: 0.82rem; }
.vo-btn--lg { padding: 16px 24px; font-size: 1rem; }

.vo-btn--accent,
.vo-btn--primary {
  background: var(--vo-accent); color: var(--vo-white);
}
.vo-btn--accent:hover,
.vo-btn--primary:hover { background: var(--vo-accent-hover); color: var(--vo-white); }

.vo-btn--outline,
.vo-btn--secondary,
.vo-btn--ghost {
  background: var(--vo-white); color: var(--vo-ink);
}
.vo-btn--outline:hover,
.vo-btn--secondary:hover,
.vo-btn--ghost:hover { background: var(--vo-paper); color: var(--vo-ink); }

.vo-btn--paper {
  background: var(--vo-white); color: var(--vo-ink);
}
.vo-btn--paper:hover { background: var(--vo-paper); color: var(--vo-ink); }

/* Hero */
.vo-hero {
  position: relative;
  padding: clamp(32px, 6vw, 56px) 0 clamp(48px, 8vw, 80px);
  background: var(--vo-white);
  border-bottom: var(--vo-border);
  overflow: hidden;
}

.vo-hero__kernen {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.vo-hero__kern {
  padding: 6px 14px;
  font-size: 0.82rem; font-weight: 500;
  background: var(--vo-paper);
  border: var(--vo-border);
  border-radius: 999px;
  color: var(--vo-muted);
}

.vo-hero__grid {
  display: grid; gap: 32px; align-items: start;
}
@media (min-width: 960px) {
  .vo-hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: 40px; }
}

.vo-hero__title {
  font-family: var(--vo-font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-transform: none;
}
.vo-hero__title-accent {
  display: inline;
  background: linear-gradient(transparent 60%, var(--vo-yellow) 60%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.vo-hero__lead {
  font-size: 1.1rem; color: var(--vo-muted);
  max-width: 46ch; margin: 0 0 28px;
}
.vo-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.vo-hero__board {
  padding: 24px;
  background: var(--vo-paper);
  border: var(--vo-border);
  border-radius: var(--vo-radius);
  box-shadow: var(--vo-shadow-sm);
}
.vo-board__title {
  margin: 0 0 16px;
  font-family: var(--vo-font-display);
  font-weight: 700; font-size: 1.1rem;
  text-transform: none;
}
.vo-stats--board {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin: 0 0 20px;
  border: var(--vo-border);
  border-radius: var(--vo-radius-sm);
  background: var(--vo-white);
  overflow: hidden;
}
.vo-stat {
  padding: 16px 12px;
  text-align: center;
  border-right: var(--vo-border);
}
.vo-stat:last-child { border-right: none; }
.vo-stat dt {
  margin: 0;
  font-size: 0.7rem; font-weight: 600;
  text-transform: none; letter-spacing: 0;
  color: var(--vo-muted);
}
.vo-stat dd {
  margin: 6px 0 0;
  font-family: var(--vo-font-display);
  font-size: 1.75rem; font-weight: 700; line-height: 1;
}
.vo-board__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.vo-board__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600;
}
.vo-board__list svg { flex-shrink: 0; color: var(--vo-accent); }

/* Sections */
.vo-section { padding: clamp(48px, 8vw, 88px) 0; }
.vo-section--tiles { background: var(--vo-paper); }
.vo-section--featured { background: var(--vo-white); border-top: var(--vo-border); }
.vo-section__head { max-width: 560px; margin-bottom: 32px; }
.vo-section__head h2 {
  font-family: var(--vo-font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0; text-transform: none;
}
.vo-section__head--row {
  max-width: none;
  display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between; gap: 16px;
}
.vo-link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; text-decoration: none;
  padding: 8px 14px;
  border: var(--vo-border);
  border-radius: var(--vo-radius-sm);
  background: var(--vo-white);
  box-shadow: var(--vo-shadow-sm);
}
.vo-link-arrow:hover { box-shadow: var(--vo-shadow); color: var(--vo-ink); }

/* Tiles */
.vo-tiles { display: grid; gap: 16px; }
@media (min-width: 768px) { .vo-tiles { grid-template-columns: repeat(3, 1fr); } }

.vo-tile {
  position: relative;
  display: flex; flex-direction: column;
  min-height: 220px;
  padding: 24px;
  text-decoration: none; color: inherit;
  border: var(--vo-border);
  border-radius: var(--vo-radius);
  box-shadow: var(--vo-shadow-sm);
  background: var(--vo-white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.vo-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--vo-shadow);
  color: inherit;
}
.vo-tile--discover { background: var(--vo-white); }
.vo-tile--work { background: var(--vo-lime); }
.vo-tile--agenda { background: var(--vo-blue); color: var(--vo-white); }
.vo-tile--agenda .vo-tile__go { color: rgba(255,255,255,0.9); }

.vo-tile__num {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--vo-font-display);
  font-size: 2rem; font-weight: 700; line-height: 1;
  opacity: 0.12;
}
.vo-tile__icon {
  display: flex; margin-bottom: 16px;
  color: var(--vo-accent);
}
.vo-tile--agenda .vo-tile__icon { color: var(--vo-yellow); }
.vo-tile h3 {
  font-family: var(--vo-font-display);
  font-size: 1.35rem; font-weight: 700;
  text-transform: none;
  margin: 0 0 8px;
}
.vo-tile p { margin: 0 0 auto; font-size: 0.95rem; opacity: 0.85; padding-bottom: 16px; }
.vo-tile__go { font-weight: 700; font-size: 0.88rem; }

/* Cards */
.vo-grid { display: grid; gap: 20px; }
.vo-grid--2 { grid-template-columns: 1fr; }
.vo-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .vo-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .vo-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.vo-card {
  background: var(--vo-white);
  border: var(--vo-border);
  border-radius: var(--vo-radius);
  box-shadow: var(--vo-shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.vo-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--vo-shadow);
}
.vo-card__link { display: block; text-decoration: none; color: inherit; height: 100%; }
.vo-card__media {
  aspect-ratio: 16/10;
  background: var(--vo-paper-2);
  border-bottom: var(--vo-border);
  overflow: hidden;
}
.vo-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.vo-card__placeholder {
  height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--vo-muted); opacity: 0.4;
}
.vo-card__body { padding: 18px 20px 22px; }
.vo-card__eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 2px 8px;
  font-size: 0.68rem; font-weight: 800;
  text-transform: none; letter-spacing: 0.05em;
  background: var(--vo-yellow);
  border: 2px solid var(--vo-line);
}
.vo-card__title {
  font-family: var(--vo-font-display);
  font-size: 1.15rem; font-weight: 800;
  margin: 0 0 8px; line-height: 1.2;
}
.vo-card__excerpt { font-size: 0.88rem; color: var(--vo-muted); margin: 0 0 10px; }
.vo-card__meta { font-size: 0.8rem; font-weight: 600; margin: 0; }

/* CTA strip */
.vo-cta-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--vo-black);
  color: var(--vo-white);
  border: var(--vo-border);
  box-shadow: var(--vo-shadow);
}
.vo-cta-strip h2 {
  font-family: var(--vo-font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; text-transform: uppercase;
  line-height: 1.05; margin: 0 0 12px;
}
.vo-cta-strip p { margin: 0; opacity: 0.8; max-width: 46ch; }

/* Legacy CTA panel (other pages) */
.vo-cta-panel {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--vo-black); color: var(--vo-white);
  border: var(--vo-border); box-shadow: var(--vo-shadow);
}
.vo-cta-panel h2 {
  font-family: var(--vo-font-display);
  font-weight: 700; text-transform: uppercase;
  margin: 0 0 12px;
}
.vo-cta-panel p { margin: 0; opacity: 0.85; max-width: 48ch; }
.vo-cta-panel .vo-btn--primary { background: var(--vo-accent); color: var(--vo-white); }

/* Page hero */
.vo-page-hero {
  padding: clamp(36px, 6vw, 64px) 0;
  background: var(--vo-white);
  border-bottom: var(--vo-border);
}
.vo-page-hero--compact h1 {
  font-family: var(--vo-font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 12px; line-height: 1;
}
.vo-page-hero__lead { font-size: 1.05rem; color: var(--vo-muted); margin: 0; max-width: 52ch; }

/* Directory */
.vo-directory { display: grid; gap: 24px; }
@media (min-width: 1024px) { .vo-directory { grid-template-columns: 300px 1fr; } }
.vo-filters__form {
  display: flex; flex-direction: column; gap: 14px;
  padding: 20px;
  background: var(--vo-white);
  border: var(--vo-border);
  box-shadow: var(--vo-shadow-sm);
}
.vo-field { display: flex; flex-direction: column; gap: 6px; }
.vo-field span, .vo-field legend {
  font-size: 0.75rem; font-weight: 800;
  text-transform: none; letter-spacing: 0.04em;
}
.vo-field input, .vo-field select, .vo-field textarea, .vo-input {
  padding: 12px 14px;
  border: var(--vo-border);
  font: inherit; background: var(--vo-paper);
  width: 100%;
}
.vo-field input:focus, .vo-field select:focus, .vo-field textarea:focus, .vo-input:focus {
  outline: 3px solid var(--vo-accent);
  outline-offset: 0;
}
.vo-field-row { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 480px) { .vo-field-row { grid-template-columns: 1fr 72px 72px; } }
.vo-field--sm { max-width: 120px; }
.vo-map {
  height: 260px;
  border: var(--vo-border);
  box-shadow: var(--vo-shadow-sm);
  background: var(--vo-paper-2);
  z-index: 1;
}
.vo-empty { text-align: center; color: var(--vo-muted); padding: 48px 24px; font-weight: 600; }

/* Forms */
.vo-form {
  background: var(--vo-white);
  border: var(--vo-border);
  box-shadow: var(--vo-shadow);
  padding: 28px;
}
.vo-form__steps { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.vo-form__step {
  padding: 8px 14px;
  border: var(--vo-border);
  background: var(--vo-paper);
  font: inherit; font-size: 0.82rem; font-weight: 700;
  cursor: pointer;
}
.vo-form__step.is-active { background: var(--vo-accent); color: var(--vo-white); }
.vo-form__panel h2 {
  font-family: var(--vo-font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: 1.4rem; margin: 0 0 20px;
}
.vo-form__panel .vo-field { margin-bottom: 14px; }
.vo-form__nav { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.vo-checkbox { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; margin-bottom: 10px; font-size: 0.92rem; }
.vo-checkbox input { margin-top: 4px; accent-color: var(--vo-accent); }
.vo-checkbox-grid { display: grid; gap: 8px; grid-template-columns: 1fr; }
@media (min-width: 480px) { .vo-checkbox-grid { grid-template-columns: 1fr 1fr; } }

.vo-notice {
  padding: 16px 20px; margin-bottom: 20px;
  border: var(--vo-border);
  box-shadow: var(--vo-shadow-sm);
  font-weight: 600;
}
.vo-notice--success { background: var(--vo-lime); }

/* Listings */
.vo-list { display: flex; flex-direction: column; gap: 12px; }
.vo-list-item {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px;
  background: var(--vo-white);
  border: var(--vo-border);
  box-shadow: var(--vo-shadow-sm);
  text-decoration: none; color: inherit;
  transition: transform 0.12s, box-shadow 0.12s;
}
.vo-list-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--vo-shadow);
  color: inherit;
}
.vo-list-item__title {
  font-family: var(--vo-font-display);
  font-weight: 700; font-size: 1.1rem;
  margin: 0 0 4px;
}
.vo-list-item__meta { font-size: 0.85rem; color: var(--vo-muted); margin: 0; }

.vo-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.68rem; font-weight: 800;
  text-transform: none; letter-spacing: 0.04em;
  border: 2px solid var(--vo-line);
  background: var(--vo-yellow);
}
.vo-badge--partner { background: var(--vo-accent); color: var(--vo-white); border-color: var(--vo-line); }
.vo-badge--pending { background: var(--vo-paper-2); }
.vo-badge--publish { background: var(--vo-lime); }

.vo-listing-toolbar { margin-bottom: 20px; }

/* Single bedrijf */
.vo-single-hero {
  padding: clamp(36px, 6vw, 64px) 0;
  background: var(--vo-white);
  border-bottom: var(--vo-border);
}
.vo-single-hero__grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 768px) { .vo-single-hero__grid { grid-template-columns: 1fr auto; } }
.vo-single-hero h1 {
  font-family: var(--vo-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; text-transform: uppercase;
  margin: 0 0 12px; line-height: 1.05;
}
.vo-single-hero__lead { font-size: 1.05rem; color: var(--vo-muted); margin: 0 0 20px; }
.vo-single-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.vo-single-hero__logo {
  max-width: 260px;
  border: var(--vo-border);
  box-shadow: var(--vo-shadow);
}
.vo-single-grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .vo-single-grid { grid-template-columns: 1fr 280px; } }
.vo-info-card {
  padding: 20px;
  background: var(--vo-paper);
  border: var(--vo-border);
  box-shadow: var(--vo-shadow-sm);
}
.vo-info-card h2 {
  font-family: var(--vo-font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: 1rem; margin: 0 0 14px;
}
.vo-info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 0.92rem; font-weight: 500; }
.vo-info-list a { text-decoration: none; font-weight: 700; }

/* Account */
.vo-account__block { margin-bottom: 32px; padding-bottom: 24px; border-bottom: var(--vo-border); }
.vo-account__block h2 { font-family: var(--vo-font-display); font-weight: 800; text-transform: uppercase; margin: 0 0 14px; }
.vo-account-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.vo-account-list__item {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 16px;
  background: var(--vo-white);
  border: var(--vo-border);
  box-shadow: var(--vo-shadow-sm);
}
.vo-account-list__actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.vo-account-list__item--stack { flex-direction: column; align-items: stretch; }
.vo-account-list--stack .vo-account-list__item { flex-direction: column; align-items: stretch; }
.vo-account-list__meta { font-size: 0.85rem; color: var(--vo-muted); margin: 4px 0 0; }
.vo-account-list__body { margin-top: 10px; font-size: 0.92rem; }
.vo-account-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: var(--vo-border);
}
.vo-account-tabs__link {
  padding: 8px 14px;
  font-size: 0.85rem; font-weight: 700;
  text-decoration: none; color: var(--vo-black);
  border: var(--vo-border); border-radius: var(--vo-radius-sm);
  background: var(--vo-white);
}
.vo-account-tabs__link.is-active,
.vo-account-tabs__link:hover {
  background: var(--vo-accent); color: var(--vo-white); border-color: var(--vo-accent);
}
.vo-account__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.vo-account__head h2 { margin: 0; }
.vo-account-stats { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 20px; }
.vo-account-stats li { font-size: 0.92rem; }
.vo-account__logout { margin-top: 24px; }
.vo-form--panel { padding: 20px; background: var(--vo-paper); border: var(--vo-border); margin-bottom: 20px; }
.vo-form--compact .vo-form__title { font-size: 1rem; margin: 0 0 12px; font-family: var(--vo-font-display); font-weight: 800; }
.vo-form__hint { font-size: 0.88rem; color: var(--vo-muted); margin: 0 0 12px; }
.vo-divider { border: 0; border-top: var(--vo-border); margin: 24px 0; }
.vo-field--inline { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.vo-badge--status-geaccepteerd { background: #d4edda; }
.vo-badge--status-afgewezen { background: #f8d7da; }
.vo-badge--status-bekeken { background: #fff3cd; }
.vo-badge--status-nieuw { background: var(--vo-yellow); }
.vo-badge--muted { opacity: 0.75; font-weight: 600; }

/* Footer */
.vo-footer {
  padding: 40px 0 28px;
  background: var(--vo-black);
  color: var(--vo-white);
  border-top: var(--vo-border);
}
.vo-main { min-height: calc(100vh - var(--vo-header-h) - 180px); }
.vo-footer__grid { display: grid; gap: 24px; margin-bottom: 28px; }
@media (min-width: 768px) { .vo-footer__grid { grid-template-columns: 1fr auto; align-items: start; } }
.vo-footer__name {
  font-family: var(--vo-font-display);
  font-size: 1.1rem; font-weight: 800;
  text-transform: none;
  margin: 0 0 6px;
}
.vo-footer__tagline { margin: 0; opacity: 0.65; font-size: 0.88rem; }
.vo-footer__nav { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.vo-footer__nav a {
  color: var(--vo-white); text-decoration: none;
  font-weight: 700; font-size: 0.88rem;
  opacity: 0.75;
}
.vo-footer__nav a:hover { opacity: 1; color: var(--vo-yellow); }
.vo-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem; opacity: 0.55;
}

.vo-maker {
  margin-bottom: 24px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--vo-radius);
  background: rgba(255,255,255,0.04);
  text-align: center;
}
.vo-maker__label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.55;
}
.vo-maker__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--vo-white);
  transition: opacity 0.2s;
}
.vo-maker__link:hover { opacity: 0.9; color: var(--vo-white); }
.vo-maker__logo {
  width: min(180px, 70vw);
  height: auto;
  display: block;
}
.vo-maker__text {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.85;
}

.vo-segment-note { margin-top: 28px; font-size: 0.92rem; color: var(--vo-muted); text-align: center; }
.vo-segment-note a { font-weight: 600; }
.vo-directory-notice { margin-bottom: 24px; }
.vo-partners { margin-bottom: 24px; padding: 20px; border: 1px solid rgba(255,255,255,0.2); }
.vo-partners__label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; opacity: 0.5; margin: 0 0 10px; }
.vo-partners__logos { display: flex; flex-wrap: wrap; gap: 12px; }
.vo-partners__logos a { color: var(--vo-white); font-weight: 700; text-decoration: none; }

/* Pillars legacy → hide if unused */
.vo-pillars, .vo-pillar, .vo-hero__visual, .vo-hero__card, .vo-hero__grain, .vo-stats:not(.vo-stats--board) { display: none; }

/* Animations */
[data-animate] { opacity: 0; transform: translateY(16px); transition: opacity 0.45s ease, transform 0.45s ease; }
[data-animate].is-visible { opacity: 1; transform: none; }

.vo-content { line-height: 1.65; }
.vo-content h2, .vo-content h3 { font-family: var(--vo-font-display); font-weight: 800; }

.vo-prose p { margin: 0 0 1em; }
.vo-prose p:last-child { margin-bottom: 0; }
.vo-prose strong { font-weight: 800; }

.vo-listing-hint {
  margin-top: 28px;
  padding: 16px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  background: var(--vo-paper);
  border: var(--vo-border);
  box-shadow: var(--vo-shadow-sm);
}
.vo-listing-hint a { font-weight: 800; color: var(--vo-black); }

.vo-contact-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 768px) {
  .vo-contact-grid { grid-template-columns: 1fr 280px; align-items: start; }
}
.vo-contact-note { margin: 16px 0 0; font-size: 0.85rem; opacity: 0.75; line-height: 1.5; }

.vo-tiles--compact { margin-top: 32px; }
.vo-tiles--compact .vo-tile { padding: 20px; }

.vo-btn--block { display: block; width: 100%; text-align: center; margin-top: 14px; }

.vo-single-evenement__image { margin: 0 0 24px; border: var(--vo-border); box-shadow: var(--vo-shadow-sm); }
.vo-single-evenement__image img { display: block; width: 100%; height: auto; }

.vo-404 { text-align: center; }
.vo-404__home { margin-top: 32px; }

.vo-card--talent .vo-card__body { padding: 20px; border: var(--vo-border); background: var(--vo-white); box-shadow: var(--vo-shadow-sm); }
.vo-card--talent .vo-card__title { margin: 0 0 6px; font-family: var(--vo-font-display); font-weight: 700; }

.vo-badge {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--vo-accent);
  background: rgba(214, 90, 58, 0.1);
  border: 1px solid rgba(214, 90, 58, 0.25);
  border-radius: 999px;
}
.vo-badge--offerte { color: var(--vo-blue); background: rgba(45, 90, 138, 0.08); border-color: rgba(45, 90, 138, 0.2); }

.vo-offerte {
  margin-top: 40px;
  padding: 28px;
  background: var(--vo-paper);
  border: var(--vo-border);
  border-radius: var(--vo-radius);
}
.vo-offerte h2 {
  font-family: var(--vo-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.vo-offerte__lead { margin: 0 0 20px; color: var(--vo-muted); font-size: 0.95rem; }
.vo-offerte-hint { font-size: 0.88rem; color: var(--vo-muted); line-height: 1.5; margin-top: 14px; }

.vo-form__row--duo {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .vo-form__row--duo { grid-template-columns: 1fr 1fr; }
}

.vo-field--check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
}
.vo-field--check input { margin-top: 3px; flex-shrink: 0; }

.vo-notice--error {
  background: #fdecea;
  border-color: #f5c2c0;
  color: #8a2f2a;
}

.vo-info-card,
.vo-form,
.vo-list-item,
.vo-cta-strip {
  border-radius: var(--vo-radius);
}

.leaflet-container { font-family: var(--vo-font-body); border: var(--vo-border); }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
  .vo-btn:hover, .vo-card:hover, .vo-tile:hover, .vo-list-item:hover { transform: none; }
}
