/* ═══════════════════════════════════════════════════
   DE MUZIEKVITRINE — Global Stylesheet
   Palette: Warm ivory · Ink · Deep teal (#2A7C6F)
   Type: Cormorant Garamond (display) + Inter (body)
═══════════════════════════════════════════════════ */

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

:root {
  --bg:          #FFFDF8;
  --bg-2:        #F5F2EC;
  --surface:     #FFFEFC;
  --border:      rgba(42,124,111,0.14);
  --border-hot:  rgba(42,124,111,0.42);

  --teal:        #2A7C6F;
  --teal-light:  #35A090;
  --teal-pale:   rgba(42,124,111,0.07);
  --teal-mid:    rgba(42,124,111,0.15);

  --ink:         #1A1A1A;
  --ink-2:       #3D3D3D;
  --ink-3:       #717171;
  --ink-4:       #ABABAB;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  999px;

  --shadow-sm: 0 1px 4px rgba(26,26,26,0.06);
  --shadow-md: 0 4px 24px rgba(26,26,26,0.09);
  --shadow-lg: 0 12px 48px rgba(26,26,26,0.12);

  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
}

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

/* Accessible keyboard focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-2);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; }

p { line-height: 1.7; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ── Layout ── */
.container {
  width: 100%; max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-xl); border: none; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.icon-match {
  width: 15px; height: 15px; flex-shrink: 0;
  stroke: currentColor;
}

.btn-primary {
  background: var(--teal); color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--teal-light); }
.btn-cta-dominant {
  padding: 0.95rem 2.25rem;
  box-shadow: 0 4px 24px rgba(42,124,111,0.35);
  font-size: 0.95rem;
}
.btn-cta-dominant:hover {
  box-shadow: 0 6px 32px rgba(42,124,111,0.45);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--border-hot);
}
.btn-secondary:hover { background: var(--teal-pale); }

.btn-ghost {
  background: transparent; color: var(--ink-2);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--border-hot); color: var(--teal); }

.btn-lg {
  font-size: 1rem;
  padding: 1rem 2.25rem;
}

/* ── Eyebrow / kicker ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal);
}
.eyebrow-line { width: 28px; height: 1px; background: var(--teal); opacity: 0.5; }

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--border-hot); box-shadow: var(--shadow-md); }

/* ── Divider ── */
.divider {
  display: flex; align-items: center; gap: 1rem;
  color: var(--ink-4); font-size: 0.75rem; letter-spacing: 0.1em;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ── Tags ── */
.tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; font-weight: 500;
  padding: 0.25rem 0.65rem;
  background: var(--teal-pale);
  border: 1px solid var(--border-hot);
  border-radius: var(--r-xl);
  color: var(--teal);
}
.musician-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 1rem;
}


/* ─────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center;
  background: rgba(255,253,248,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.scroll-progress {
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2.5px;
  background: transparent;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
  transition: width 0.1s linear;
}
.site-nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 500;
  color: var(--teal); letter-spacing: 0.05em;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--ink-3);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--teal);
  transform: scaleX(0); transition: transform 0.2s var(--ease);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ── Nav dropdown ─────────────────────────────────── */
.nav-item-dropdown {
  position: relative;
}
.nav-item-dropdown > a {
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.nav-item-dropdown > a .nav-chevron {
  width: 14px; height: 14px;
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
  stroke: var(--ink-3);
}
.nav-item-dropdown:hover > a .nav-chevron,
.nav-item-dropdown.open > a .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 236px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 300;
}
/* Transparante brug zodat hover niet "breekt" tussen link en dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-item:hover {
  background: var(--bg-2);
}
.nav-dropdown-item::after { display: none; } /* verwijder underline-effect */
.nav-dropdown-icon {
  flex-shrink: 0; width: 20px; height: 20px; text-align: center;
  margin-top: 0.1rem; display: flex; align-items: center; justify-content: center;
}
.nav-dropdown-icon svg {
  width: 16px; height: 16px;
  stroke: var(--teal); fill: none;
  flex-shrink: 0;
}
.nav-dropdown-mm .nav-dropdown-icon svg {
  stroke: var(--teal);
}
.nav-dropdown-text { display: flex; flex-direction: column; gap: 0.1rem; }
.nav-dropdown-label {
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  line-height: 1.2;
}
.nav-dropdown-desc {
  font-size: 0.73rem; color: var(--ink-4); line-height: 1.3;
}
.nav-dropdown-divider {
  height: 1px; background: var(--border);
  margin: 0.35rem 0.5rem;
}
/* N8: Badge "Direct boekbaar" bij Vaste ensembles */
.nav-dropdown-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  border: 1px solid var(--teal-mid);
  border-radius: var(--r-xl);
  padding: 0.12rem 0.45rem;
  margin-top: 0.2rem;
  line-height: 1.4;
  white-space: nowrap;
}
.nav-mobile-sub .nav-dropdown-badge {
  font-size: 0.6rem;
  padding: 0.1rem 0.4rem;
}

.nav-dropdown-item.nav-dropdown-mm {
  color: var(--teal);
}
.nav-dropdown-item.nav-dropdown-mm .nav-dropdown-label {
  color: var(--teal);
}

/* Mobile accordion */
.nav-mobile-accordion {
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav-mobile-accordion-toggle {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: auto; background: none; border: none;
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 400;
  color: var(--ink); cursor: pointer; padding: 0.65rem 0;
  transition: color 0.2s;
  margin: 0 auto;
}
.nav-mobile-accordion-toggle:hover { color: var(--teal); }
.nav-mobile-accordion-toggle .nav-chevron {
  width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s;
}
.nav-mobile-accordion-toggle.open .nav-chevron {
  transform: rotate(180deg);
}
.nav-mobile-sub {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 0.35rem 0 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav-mobile-sub.open { display: flex; }
.nav-mobile-sub a {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 500;
  color: var(--ink-2);
  padding: 0.6rem 0;
  border-bottom: none !important;
  display: flex; align-items: flex-start; gap: 0.6rem;
  min-height: 44px;
}
.nav-mobile-sub-text {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.nav-mobile-sub-label {
  font-size: 1rem; font-weight: 500; color: var(--ink-2); line-height: 1.2;
}
.nav-mobile-sub-desc {
  font-size: 0.75rem; color: var(--ink-4); line-height: 1.3; font-weight: 400;
}
.nav-mobile-sub a.nav-sub-mm .nav-mobile-sub-label { color: var(--teal); }
.nav-mobile-sub a:hover { color: var(--teal); }
.nav-mobile-sub a.nav-sub-mm { color: var(--teal); }

.nav-cta { margin-left: 1rem; }
.nav-phone {
  display: none;
  align-items: center; gap: 0.4rem;
  color: var(--ink-3); font-size: 0.75rem; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  margin-left: 0.75rem;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--teal); }
.nav-phone svg { flex-shrink: 0; }
@media (min-width: 1080px) {
  .nav-phone { display: flex; }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 0.75rem; color: var(--ink);
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: currentColor; margin: 4px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 20vh; gap: 2rem;
  z-index: 199;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--teal); }
.nav-mobile .btn { font-size: 1rem; }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ─────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg img,
.hero-bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.38);
}
.hero-bg-video { z-index: 1; }
.hero-bg-fallback { z-index: 0; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42,124,111,0.25) 0%,
    rgba(26,26,26,0.55) 60%,
    rgba(26,26,26,0.75) 100%
  );
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 760px;
}

.hero .eyebrow { color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; }
.hero .eyebrow-line { background: rgba(255,255,255,0.4); }

.hero h1 {
  color: #fff;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.8);
}
.hero h1 strong {
  font-weight: 600;
  display: block;
}

.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}
.hero-sub--mobile { display: none; }
.eyebrow--mobile { display: none; }
.orgs-pills { display: flex; }
.orgs-secondary-link { display: inline-flex; }
.orgs-cards-col { display: flex; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
}
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.hero-cta-consultant {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  margin-left: 0.25rem;
}
.hero-cta-consultant:hover { color: rgba(255,255,255,0.9); }
@media (max-width: 600px) {
  .hero-cta-consultant { margin-left: 0; width: 100%; }
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  z-index: 1;
  animation: bounce 2.5s infinite;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.hero-scroll:hover { color: rgba(255,255,255,0.75); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────────────
   PREMIUM BANNER
───────────────────────────────────────────────── */
.premium-banner {
  background: #1a3330;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.premium-banner-inner {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.premium-banner-sep { display: none; } /* replaced by border-right on items */
.premium-banner-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  min-width: 0; /* prevent flex overflow */
}
.premium-banner-item:last-child { border-right: none; }
.premium-banner-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--teal-light);
  opacity: 0.85;
}
.premium-banner-text {
  font-size: 0.82rem; font-weight: 400;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.01em;
  line-height: 1.35;
  min-width: 0;
}
/* Tablet: 2×2 grid */
@media (max-width: 900px) {
  .premium-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .premium-banner-item {
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 1.25rem;
  }
  .premium-banner-item:nth-child(2) { border-right: none; }
  .premium-banner-item:nth-child(3),
  .premium-banner-item:nth-child(4) { border-bottom: none; }
  .premium-banner-item:nth-child(4) { border-right: none; }
}
/* Mobile: stacked single column */
@media (max-width: 480px) {
  .premium-banner-inner {
    display: flex; flex-direction: column;
  }
  .premium-banner-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.85rem 1rem;
  }
  .premium-banner-item:last-child { border-bottom: none; }
  .premium-banner-text { font-size: 0.8rem; }
}

/* ─────────────────────────────────────────────────
   SOCIAL PROOF STRIP
───────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────
   REINOUT QUOTE — RUSTPAUZE TUSSEN SOCIAL PROOF EN VITRINE-KEUZE
───────────────────────────────────────────────── */
.reinout-quote-section {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reinout-quote-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  max-width: 640px;
  margin: 0 auto;
}
.reinout-quote-portrait {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover; object-position: center 15%;
  flex-shrink: 0;
  border: 2px solid var(--border-hot);
}
.reinout-quote-text {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.7;
  font-style: italic;
}
.reinout-quote-text cite {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--ink-4);
  font-weight: 600;
}

/* ─────────────────────────────────────────────────
   KENNISCENTRUM-LINKS — consistente, premium linkstijl
   voor verwijzingen naar verdiepende kenniscentrumartikelen
───────────────────────────────────────────────── */
.kc-link {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: gap 0.15s ease, color 0.15s ease;
}
.occ-links-group {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.occ-book-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.1rem;
}
.occ-book-link {
  color: var(--ink-4);
  font-size: 0.76rem;
  text-decoration: none;
  transition: color 0.15s ease;
}
.occ-book-link:hover { color: var(--teal); }
.kc-link::before {
  content: '';
  width: 13px; height: 13px;
  flex-shrink: 0;
  background: currentColor;
  opacity: 0.8;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 6c-2-1.3-5-1.7-8-1v13c3-.7 6-.3 8 1 2-1.3 5-1.7 8-1V5c-3-.7-6-.3-8 1z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 6c-2-1.3-5-1.7-8-1v13c3-.7 6-.3 8 1 2-1.3 5-1.7 8-1V5c-3-.7-6-.3-8 1z'/></svg>") center/contain no-repeat;
}
.kc-link::after { content: '→'; transition: transform 0.15s ease; }
.kc-link:hover { color: var(--teal-light); }
.kc-link:hover::after { transform: translateX(3px); }
/* Variant voor gebruik op een donkere achtergrond (bv. stadspagina's) */
.kc-link--on-dark { color: rgba(255,255,255,0.82); }
.kc-link--on-dark::before { background: rgba(255,255,255,0.82); }
.kc-link--on-dark:hover { color: #fff; }

.social-proof-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.social-proof-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
/* Root cause fix: mist basisregel, waardoor dit standaard als gewoon blok-element
   (dus zichtbaar) rendert op elk schermformaat, inclusief desktop. */
.social-proof-marquee { display: none; }
@media (max-width: 860px) {
  .social-proof-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  /* Fix: .vom-choice-grid (muzikanten.html) had geen mobiele layout —
     inline grid-template-columns:1fr auto bleef altijd 2-koloms,
     waardoor een niet-wrappende CTA-knop de pagina kon doen overlopen. */
  .vom-choice-grid {
    grid-template-columns: 1fr !important;
  }
  .vom-choice-grid > div:last-of-type {
    min-width: 0 !important;
  }
  .vom-choice-grid > div:last-of-type .btn {
    white-space: normal;
  }
  .social-proof-divider { display: none; }
}
.social-proof-divider {
  width: 1px; height: 60px;
  background: var(--border);
  margin: 0 2rem;
}
.social-proof-quote {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 0 1rem;
}
.social-proof-stars {
  color: var(--teal); font-size: 0.75rem; letter-spacing: 0.1em;
}
.social-proof-text {
  font-family: var(--font-display);
  font-size: 0.96rem; font-style: italic;
  color: var(--ink-2); line-height: 1.5; margin: 0;
}
.social-proof-author {
  font-size: 0.72rem; font-weight: 600; color: var(--ink-4);
  text-transform: uppercase; letter-spacing: 0.06em; margin: 0;
}

/* ─────────────────────────────────────────────────
   ABOUT / VALUE PROP
───────────────────────────────────────────────── */
.value-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 800px) {
  .value-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.value-text .eyebrow { margin-bottom: 1.25rem; }
.value-text h2 { margin-bottom: 1rem; }
.value-text p { color: var(--ink-3); margin-bottom: 1.5rem; }

.value-points {
  display: flex; flex-direction: column; gap: 1.1rem;
  margin-bottom: 2rem;
}
.value-point {
  display: flex; align-items: flex-start; gap: 0.85rem;
}
.value-point-marker {
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 1.5px solid var(--teal);
  position: relative;
}
.value-point-marker::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.value-point-text strong {
  display: block; font-size: 0.92rem; font-weight: 600; color: var(--ink);
  margin-bottom: 0.2rem;
}
.value-point-text span { font-size: 0.82rem; color: var(--ink-3); }

.value-image {
  position: relative;
}
.value-image-badge {
  position: absolute; bottom: -1.25rem; left: -1.25rem;
  background: var(--teal); color: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  max-width: calc(100% - 1rem);
}
@media (max-width: 480px) {
  .value-image-badge {
    left: 0.75rem; bottom: -1rem;
    padding: 0.75rem 1rem;
  }
  .value-image-badge strong { font-size: 1.5rem; }
}
.value-image-badge strong {
  display: block;
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  line-height: 1;
}
.value-image-badge span { font-size: 0.72rem; opacity: 0.8; }

/* Waarom-sectie video: enkel de video, poster-attribuut dient als fallback */
.value-image { position: relative; }
.value-video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  background: var(--bg-2);
}

/* Vertrouwens-statistieken onder de hoofdgrid */
.value-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 700px) {
  .value-trust-bar { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}
@media (max-width: 420px) {
  .value-trust-stat strong { font-size: 1.8rem; }
}
.value-trust-stat {
  text-align: center;
}
.value-trust-stat strong {
  display: block;
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 600;
  color: var(--teal); line-height: 1; margin-bottom: 0.4rem;
}
.value-trust-stat span {
  font-size: 0.78rem; color: var(--ink-3);
}

/* ─────────────────────────────────────────────────
   MATCHMAKER CTA BANNER
───────────────────────────────────────────────── */
.matchmaker-banner {
  background: linear-gradient(135deg, var(--teal) 0%, #1d5a52 100%);
  border-radius: var(--r-lg);
  padding: 3.5rem;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 2rem;
}
@media (max-width: 700px) {
  .matchmaker-banner { grid-template-columns: 1fr; padding: 2rem; }
}

.mm-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400; color: #fff; margin-bottom: 0.5rem;
}
.mm-banner-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.72);
  max-width: 480px; line-height: 1.6;
}
.mm-banner-cta {
  background: #fff; color: var(--teal);
  font-weight: 600;
  box-shadow: none;
  flex-shrink: 0;
}
.mm-banner-cta:hover { background: var(--bg-2); box-shadow: var(--shadow-md); }

/* ─────────────────────────────────────────────────
   FUNDAMENTALS — VASTE BANDS & ENSEMBLES
───────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────
   VITRINE KEUZE — TWEE GROTE KEUZEKAARTEN
───────────────────────────────────────────────── */
.vitrine-choice { background: var(--bg-2); }
.vitrine-choice-title {
  text-align: center; margin-bottom: 2.5rem;
}
.vitrine-choice-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 720px) {
  .vitrine-choice-grid { grid-template-columns: 1fr; gap: 1rem; }
}
.vitrine-choice-card {
  display: flex; flex-direction: column; gap: 1.25rem;
  padding: 2rem;
  border: 2px solid transparent;
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
}
.vitrine-choice-card--vk {
  background: linear-gradient(160deg, var(--teal-pale) 0%, var(--surface) 60%);
  border-color: var(--border-hot);
}
.vitrine-choice-card--vom {
  background: linear-gradient(160deg, #f0efec 0%, var(--surface) 60%);
  border-color: var(--border);
}
.vitrine-choice-card--vk:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.vitrine-choice-card--vom:hover {
  border-color: var(--ink-2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.vitrine-choice-header { display: flex; flex-direction: column; gap: 0.5rem; }
.vitrine-choice-badge {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.3rem 0.8rem;
  border-radius: var(--r-xl);
}
.vitrine-choice-badge--vk { background: var(--teal); color: #fff; }
.vitrine-choice-badge--vom { background: var(--ink); color: #fff; }
.vitrine-choice-name {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 500;
  color: var(--ink); line-height: 1.15; margin: 0;
}
.vitrine-choice-sub {
  font-size: 0.88rem; color: var(--ink-3); line-height: 1.55; margin: 0;
}
.vitrine-choice-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.5rem; flex: 1;
}
.vitrine-choice-bullets li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.86rem; color: var(--ink-2); line-height: 1.45;
}
.vitrine-choice-bullets li::before {
  content: '';
  flex-shrink: 0; margin-top: 0.35em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
}
.vitrine-choice-card--vom .vitrine-choice-bullets li::before {
  background: var(--ink-2);
}
.vitrine-choice-cta {
  font-size: 0.84rem; font-weight: 600; color: var(--teal);
  margin-top: auto; padding-top: 0.5rem;
}
.vitrine-choice-card--vom .vitrine-choice-cta { color: var(--ink); }
.vitrine-choice-hint {
  text-align: center; font-size: 0.84rem; color: var(--ink-3);
}
.vitrine-choice-hint a { color: var(--teal); text-decoration: underline; }

/* ─────────────────────────────────────────────────
   FUNDAMENTALS — VASTE BANDS & ENSEMBLES
───────────────────────────────────────────────── */
.fundamentals-intro {
  background: linear-gradient(180deg, var(--bg) 0%, var(--teal-pale) 100%);
  position: relative;
}

.category-badge-row {
  display: flex; justify-content: center; margin-bottom: 1.5rem;
}
.category-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}

.category-badge-fundamentals { background: var(--teal); color: #fff; }
.category-badge-kernselectie { background: #fff; color: var(--ink); border: 1px solid rgba(255,255,255,0.25); }

.kernselectie-header {
  text-align: center; max-width: 640px; margin: 0 auto 3rem;
}
.kernselectie-header h2 { margin-bottom: 1rem; }
.kernselectie-header p { color: var(--ink-3); line-height: 1.75; margin-bottom: 0.85rem; }
.kernselectie-header p:last-of-type { margin-bottom: 0; }

.kernselectie-criteria {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 3.5rem;
}
@media (max-width: 800px) {
  .kernselectie-criteria { grid-template-columns: 1fr; }
}
.kernselectie-criterium {
  background: var(--surface);
  border: 1px solid var(--border-hot);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.kernselectie-criterium:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.kernselectie-criterium-icon {
  width: 24px; height: 24px;
  margin: 0 auto 0.65rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-pale);
  border: 1px solid var(--border-hot);
  border-radius: 50%;
  color: var(--teal);
}
.kernselectie-criterium-icon svg { width: 11px; height: 11px; }
.kernselectie-criterium h4 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.5rem;
}
.kernselectie-criterium p {
  font-size: 0.85rem; color: var(--ink-3); line-height: 1.65;
}

.kernselectie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 860px) {
  /* Mobile carousel: horizontaal scrollbaar */
  #musicians-preview.kernselectie-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 0.5rem;
    /* Verberg scrollbar maar behoud functionaliteit */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  #musicians-preview.kernselectie-grid::-webkit-scrollbar {
    display: none;
  }
  #musicians-preview.kernselectie-grid .musician-card {
    flex: 0 0 80vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
}

/* ─────────────────────────────────────────────────
   KERNSELECTIE — PREMIUM MAATWERK
───────────────────────────────────────────────── */
.kernselectie-premium {
  background: linear-gradient(135deg, #1A2826 0%, #15201E 100%);
  position: relative;
  overflow: hidden;
}
.kernselectie-premium::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(42,124,111,0.25) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(42,124,111,0.18) 0%, transparent 45%);
  pointer-events: none;
}

.kernselectie-premium-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem; align-items: center;
}
@media (max-width: 900px) {
  .kernselectie-premium-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.kernselectie-premium-text h2 {
  color: #fff; margin-bottom: 1.25rem;
}
.kernselectie-premium-text p {
  color: rgba(255,255,255,0.68); line-height: 1.8;
  margin-bottom: 1.1rem; font-size: 0.95rem;
}
.kernselectie-premium-closing {
  font-family: var(--font-display);
  font-style: italic; font-size: 1.05rem !important;
  color: rgba(255,255,255,0.85) !important;
  border-left: 2px solid var(--teal-light);
  padding-left: 1rem;
  margin: 1.5rem 0 !important;
}

.btn-kernselectie {
  background: #fff; color: var(--ink);
  font-weight: 600;
}
.btn-kernselectie:hover { background: var(--teal-pale); }

.kernselectie-premium-features {
  display: flex; flex-direction: column; gap: 1.1rem;
}
.kernselectie-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  transition: background 0.2s, border-color 0.2s;
}
.kernselectie-feature:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}
.kernselectie-feature-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  color: var(--teal-light);
}
.kernselectie-feature-icon svg { width: 19px; height: 19px; }
.kernselectie-feature h4 {
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 500;
  color: #fff; margin-bottom: 0.3rem;
}
.kernselectie-feature p {
  font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6;
}

/* ─────────────────────────────────────────────────
   VITRINE OP MAAT — HOMEPAGE TEASER
───────────────────────────────────────────────── */
.vom-teaser {
  background: linear-gradient(135deg, #10201E 0%, #0B1614 100%);
}
.vom-teaser-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.vom-teaser-text { flex: 1; min-width: 260px; }
.vom-teaser-title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: #fff; margin: 0.5rem 0 0.65rem; line-height: 1.25;
}
.vom-teaser-sub {
  color: rgba(255,255,255,0.62); font-size: 0.9rem;
  line-height: 1.65; margin: 0;
}
.vom-teaser-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; flex-shrink: 0;
}
.vom-teaser-ghost {
  color: rgba(255,255,255,0.75) !important;
  border-color: rgba(255,255,255,0.25) !important;
}
.vom-teaser-ghost:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,0.55) !important;
}

/* ─────────────────────────────────────────────────
   PHOTO PLACEHOLDERS
   Eenvoudig vervangbaar: zodra een foto beschikbaar is,
   vervang het volledige .photo-placeholder-blok door
   <img src="..." alt="..." loading="lazy"> met dezelfde
   klassen (photo-placeholder-sm / -lg / -dark) voor
   consistente afmetingen.
───────────────────────────────────────────────── */
.photo-placeholder {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(
    135deg,
    var(--bg-2) 0px, var(--bg-2) 10px,
    var(--surface) 10px, var(--surface) 20px
  );
  border: 1.5px dashed var(--border-hot);
  border-radius: var(--r-md);
  overflow: hidden;
  flex-shrink: 0;
}
.photo-placeholder-sm {
  width: 100%; height: 110px;
  margin-bottom: 1rem;
}
.kernselectie-feature .photo-placeholder-sm {
  width: 64px; height: 64px;
  margin-bottom: 0;
}
.photo-placeholder-lg {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.photo-placeholder-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-4);
  background: var(--surface);
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.kernselectie-feature .photo-placeholder-label {
  display: none; /* icoon-formaat te klein voor leesbaar label */
}
.photo-placeholder-dark {
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 10px,
    rgba(255,255,255,0.06) 10px, rgba(255,255,255,0.06) 20px
  );
  border-color: rgba(255,255,255,0.25);
}
.photo-placeholder-dark .photo-placeholder-label {
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.15);
}

/* ─────────────────────────────────────────────────
   MUSICIANS GRID
───────────────────────────────────────────────── */
.section-header {
  text-align: center; margin-bottom: 3rem;
}
.section-header .eyebrow { margin-bottom: 1rem; justify-content: center; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--ink-3); max-width: 520px; margin: 0 auto; }

.musicians-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.musician-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
  display: flex;
  flex-direction: column;
}
.musician-card:hover {
  border-color: var(--border-hot);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.musician-card-img {
  position: relative;
  width: 100%; height: 200px;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.musician-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}

.musician-card-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.musician-card-cat {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.35rem;
}
.musician-card-name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.4rem;
}
.musician-card-desc {
  font-size: 0.82rem; color: var(--ink-3);
  line-height: 1.5; margin-bottom: 1rem;
}
.musician-card-tags {
  display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem;
}
.musician-card-actions {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto;
}
.musician-card-actions .btn {
  flex: 1; justify-content: center;
  font-size: 0.8rem; padding: 0.6rem 1rem;
  white-space: normal; text-align: center; min-width: 0;
}

/* ── Filter bar ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.filter-btn {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* ─────────────────────────────────────────────────
   OCCASIONS
───────────────────────────────────────────────── */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .occasions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .occasions-grid { grid-template-columns: 1fr; } }

.occasion-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.occasion-card-bg {
  position: absolute; inset: 0;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.4s var(--ease);
}
.occasion-card:hover .occasion-card-bg { transform: scale(1.05); }
.occasion-card-placeholder {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--teal-pale) 100%);
}
.occasion-placeholder-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal);
  background: var(--surface);
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-xl);
  border: 1px dashed var(--border-hot);
  z-index: 1;
}
.occasion-card-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.occasion-card:hover .occasion-card-bg img { transform: scale(1.05); }

.occasion-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.78) 0%, rgba(26,26,26,0.1) 60%);
}
.occasion-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  color: #fff;
}
.occasion-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 500; color: #fff;
  margin-bottom: 0.2rem;
}
.occasion-card-content p {
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
}

/* ─────────────────────────────────────────────────
   B2B / MUZIEKCONSULTANCY
───────────────────────────────────────────────── */
.b2b-section { background: var(--bg-2); }

.b2b-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: start;
}
@media (max-width: 860px) {
  .b2b-grid { grid-template-columns: 1fr; gap: 2.25rem; }
}

.b2b-text h2 { margin-bottom: 1rem; }
.b2b-text > p { color: var(--ink-3); margin-bottom: 1.5rem; }

.b2b-audiences {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2rem;
}
.b2b-audience-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.8rem; font-weight: 500; color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--border-hot);
  border-radius: var(--r-xl);
  padding: 0.45rem 0.9rem;
}
.b2b-audience-tag::before {
  content: '';
  width: 14px; height: 14px; flex-shrink: 0;
  background-color: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.b2b-services {
  display: flex; flex-direction: column; gap: 1rem;
}
.b2b-service-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.b2b-service-card:hover { border-color: var(--border-hot); box-shadow: var(--shadow-sm); }
.b2b-service-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-pale);
  border: 1px solid var(--border-hot);
  border-radius: var(--r-md);
  color: var(--teal);
}
.b2b-service-icon svg { width: 19px; height: 19px; }
.b2b-service-card h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.3rem;
}
.b2b-service-card p {
  font-size: 0.82rem; color: var(--ink-3); line-height: 1.6;
}

/* ─────────────────────────────────────────────────
   MUZIEKCONSULTANT STRIP
───────────────────────────────────────────────── */
.consultant-strip-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .consultant-strip-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .consultant-strip-portrait figure img {
    max-height: 320px;
    height: 320px;
  }
}
@media (max-width: 860px) {
  .consultant-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.consultant-strip-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.85rem;
}
.consultant-strip-text p:not(.eyebrow) {
  color: var(--ink-3); line-height: 1.75; font-size: 0.96rem;
}
.consultant-strip-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.consultant-pillar {
  display: flex; align-items: center; gap: 0.65rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 0.85rem 1rem;
  font-size: 0.84rem; font-weight: 500; color: var(--ink-2);
}
.consultant-pillar svg {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--teal);
}
.consultant-strip-cta {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
@media (max-width: 860px) {
  .consultant-strip-cta { grid-column: 1; }
}

/* ─────────────────────────────────────────────────
   PROCESS STEPS
───────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
}

.process-step { text-align: center; }
.process-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal-pale); border: 1px solid var(--border-hot);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  color: var(--teal); margin: 0 auto 1rem;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.process-step:hover .process-step-num {
  background: var(--teal); color: #fff;
  transform: scale(1.06);
}
.process-step h4 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.4rem;
}
.process-step p { font-size: 0.82rem; color: var(--ink-3); line-height: 1.6; }

/* ─────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
}
.testimonial-card:hover {
  border-color: var(--border-hot);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.testimonial-stars {
  color: var(--teal); font-size: 0.9rem; margin-bottom: 0.85rem;
  letter-spacing: 0.1em;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 400; font-style: italic;
  color: var(--ink-2); line-height: 1.65; margin-bottom: 1.1rem;
}
.testimonial-name {
  font-size: 0.84rem; font-weight: 600; color: var(--ink);
}
.testimonial-role { font-size: 0.74rem; color: var(--ink-4); margin-top: 0.1rem; }

/* ─────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────── */
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:hover {
  border-color: var(--border-hot);
  box-shadow: var(--shadow-sm);
}
.faq-item.open {
  border-color: var(--border-hot);
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex; align-items: center; gap: 1rem;
  width: 100%;
  padding: 1.35rem 1.5rem;
  min-height: 44px;
  cursor: pointer;
  background: none; border: none; text-align: left;
  font-family: var(--font-body);
  font-weight: 500; font-size: 0.92rem; color: var(--ink);
  transition: color 0.2s;
}
.faq-item.open .faq-question { color: var(--teal); }
.faq-question:hover { color: var(--teal); }

.faq-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-num::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-hot);
  transition: background 0.2s, transform 0.2s;
}
.faq-item.open .faq-num::before {
  background: var(--teal);
  transform: scale(1.15);
}

.faq-question-text { flex: 1; line-height: 1.45; }

.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 300; color: var(--ink-4);
  transition: transform 0.3s var(--ease), color 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--teal); }

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-item.open .faq-answer-wrap { grid-template-rows: 1fr; }

.faq-answer {
  overflow: hidden;
  min-height: 0;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem 4.25rem;
  font-size: 0.88rem; color: var(--ink-3); line-height: 1.75;
}

/* Two-column FAQ for full FAQ page */
.faq-columns {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
}
@media (max-width: 760px) {
  .faq-columns { grid-template-columns: 1fr; }
}

.faq-category { margin-bottom: 3rem; }
.faq-category-head {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.faq-category-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-pale); border: 1px solid var(--border-hot);
  border-radius: var(--r-md);
  font-size: 1.1rem;
}
.faq-category-head h2 {
  font-size: 1.25rem; font-weight: 500; color: var(--ink);
}

/* ─────────────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-info .eyebrow { margin-bottom: 1.25rem; }
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p { color: var(--ink-3); margin-bottom: 2rem; }

.contact-details {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-detail {
  display: flex; align-items: center; gap: 0.75rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--teal-pale); border: 1px solid var(--border-hot);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-detail a { color: var(--teal); text-decoration: none; font-size: 0.88rem; }
.contact-detail a:hover { text-decoration: underline; }

/* Contact form */
.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
}
.form-group {
  display: flex; flex-direction: column; gap: 0.3rem;
  margin-bottom: 1rem;
}
/* ── Swamba audio preview player ── */
.audio-preview-player {
  margin: 1.5rem 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: transparent;
  position: relative;
  cursor: pointer;
  aspect-ratio: 16/9;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.audio-preview-player .audio-visual {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.audio-play-circle {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 32px rgba(0,0,0,0.3);
  transition: transform .2s ease;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
/* ── Contactformulier: inklapbare VOM-veldgroepen (mobiel dichtgevouwen
   via het open-attribuut + laadscript, zie contact.html) ── */
.vom-optional-hint { font-weight: 400; font-size: 0.7rem; color: var(--ink-4); text-transform: none; letter-spacing: 0; }
.vom-field-group summary {
  cursor: pointer; list-style: none;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 0.5rem;
}
.vom-field-group summary::-webkit-details-marker { display: none; }
.vom-field-group[open] summary { margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   STRUCTURELE FIX — horizontale overflow op mobiel
   Root cause: grid-/flex-items krijgen standaard min-width:auto,
   waardoor eigen inhoud (tabellen, lange tekst) ze breder kan maken
   dan hun kolom toelaat. Enkel op mobiel; overschrijft geen enkele
   bestaande, bewuste min-width elders (die wint altijd op specificiteit
   via haar eigen klasse-selector). Zie: Layout Integrity Audit, 19/07/2026.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  body * { min-width: 0; }
}

/* Punt 2: audio-play-circle groter + pulse op touch */
@media (max-width: 640px) {
  .audio-preview-player { aspect-ratio: 3/2; }
  .audio-play-circle { width: 72px; height: 72px; }
}
@media (hover: none) {
  .audio-play-circle { position: relative; }
  .audio-play-circle::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    animation: pulse-ring 2.2s ease-out infinite;
  }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.85); opacity: 0.7; }
  70%  { transform: scale(1.4);  opacity: 0; }
  100% { transform: scale(1.4);  opacity: 0; }
}

.audio-play-circle:hover { transform: scale(1.08); }
.audio-play-circle.playing .play-arrow { display: none; }
.audio-play-circle.playing .pause-bars { display: flex; }
.pause-bars {
  display: none;
  gap: 3px;
  align-items: center;
  height: 16px;
}
.pause-bars span {
  display: block; width: 3px; height: 100%;
  background: var(--teal); border-radius: 2px;
}
.audio-preview-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.35); padding: .3rem .7rem;
  border-radius: var(--r-xl);
  position: relative; z-index: 2;
}
.audio-preview-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.15); z-index: 3;
}
.audio-preview-progress {
  height: 100%; width: 0; background: var(--teal);
  transition: width 0.5s linear;
}
/* Muzikanten-pagina: audio-badge */
.media-badge-audio {
  position: absolute; bottom: 0.5rem; left: 0.5rem;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  border-radius: var(--r-xl); padding: 0.2rem 0.55rem;
  font-size: 0.7rem; font-weight: 600; color: var(--ink-2);
  display: flex; align-items: center; gap: 0.3rem;
  pointer-events: none;
}

/* ── Gestijlde formuliervalidatie ── */
.field-invalid {
  border-color: #d94f4f !important;
  background: #fff8f8;
}
.field-invalid:focus {
  outline-color: #d94f4f;
  box-shadow: 0 0 0 3px rgba(217,79,79,0.12);
}
.form-error-msg {
  font-size: 0.75rem;
  color: #d94f4f;
  font-weight: 500;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.form-error-msg::before {
  content: '⚠';
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── VOM formulier sectie-headers ── */
.vom-section-header {
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.vom-section-header:first-child { margin-top: 0; }
.vom-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}

.form-group label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 0.7rem 0.9rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  color: var(--ink); font-family: var(--font-body); font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--border-hot);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo-text {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
  color: #fff; margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  margin-bottom: 1rem; font-family: var(--font-body);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.75rem; }
.footer-bottom a { color: rgba(255,255,255,0.55); }

/* ─────────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────────── */
.bg-surface { background: var(--bg-2); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────
   STICKY MOBILE CTA
───────────────────────────────────────────────── */
@media (max-width: 640px) {
  body { padding-bottom: 72px; }
}

/* Vitrine-pagina's sticky CTA (desktop + mobiel) */
.vitrine-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 0.85rem 1.5rem;
  padding-bottom: calc(0.85rem + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.vitrine-sticky-cta.visible { transform: translateY(0); }
.vitrine-sticky-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; max-width: 860px; margin: 0 auto;
}
.vitrine-sticky-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
@media (max-width: 580px) { .vitrine-sticky-label { display: none; } }
.vitrine-sticky-actions {
  display: flex; gap: 0.6rem; align-items: center;
}
.vitrine-sticky-secondary {
  color: rgba(255,255,255,0.7) !important;
  border-color: rgba(255,255,255,0.2) !important;
  font-size: 0.82rem;
}
.vitrine-sticky-secondary:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,0.5) !important;
}

/* ─────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-in {
  animation: fadeInUp 0.6s var(--ease) both;
}

[data-anim] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-anim].visible {
  opacity: 1; transform: translateY(0);
}
/* Veiligheidsfallback: als .js-ready niet op body staat na 3s → alles tonen */
body:not(.js-ready) [data-anim] {
  animation: revealFallback 0.4s 3s forwards;
}
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────────
   RESPONSIVE TWEAKS
   → Opgenomen in het MOBILE OPTIMALISATIE blok onderaan
───────────────────────────────────────────────── */

/* ═══════════════════════════════════════════════════
   MOBILE OPTIMALISATIE — max-width: 640px
   Design filosofie: premium, rustig, conversiegericht.
   Elk element heeft meer ruimte dan strikt noodzakelijk —
   witruimte IS het designelement op mobiel.
═══════════════════════════════════════════════════ */

@media (max-width: 640px) {

  /* ── BASIS: ADEMRUIMTE ───────────────────────────
     De container heeft meer zijmarges voor een
     verzorgde, premium look (geen "bijna vol scherm"). */
  .container { padding: 0 1.35rem; }
  html { scroll-padding-top: 60px; }

  /* ── HERO: video uitschakelen op mobiel ──────────
     Bespaart laadtijd/CPU op precies het kwetsbaarste
     toestel; de statische .hero-bg-fallback (poster)
     blijft gewoon zichtbaar. */
  .hero-bg-video { display: none; }
  .hero-bg-fallback {
    animation: hero-slow-zoom 22s ease-in-out infinite alternate;
  }
  @keyframes hero-slow-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
  }
  .hero-sub--desktop { display: none; }
  .hero-sub--mobile { display: block; }
  .eyebrow--desktop { display: none; }
  .eyebrow--mobile { display: inline-flex; }

  /* ── KERNWAARDEN-BALK: horizontaal swipebaar i.p.v.
     vijf items die anders in één rij samengeperst
     worden (flex:1 zonder wrap op een smal scherm). ── */
  .premium-banner-inner {
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .premium-banner-inner::-webkit-scrollbar { display: none; }
  .premium-banner-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
    padding: 1.1rem 1.25rem;
  }

  /* ── 'Meer dan een bookingbureau' verbergen op mobiel:
     herhaalt vooral wat sectie 4/6/7 al toonden. Blijft
     zichtbaar op desktop (en straks met video). ── */
  .consultant-strip { display: none; }

  /* ── Kernwaardenbalk vervangen door reviews op mobiel (Homepage Review & Optimalisatie) ── */
  #trust-bar { display: none; }

  /* ── Volledige mobiele volgorde: reviews → Reinout-quote → Twee formules →
     Vitrine Kernselectie → Vitrine Op Maat → Zo werkt het → rest ongewijzigd.
     VOM-teaser (eerder verborgen) krijgt hier een eigen, bedoelde plek terug. ── */
  #mobile-reorder-wrap { display: flex; flex-direction: column; }
  #mobile-reorder-wrap [aria-label="Wat klanten zeggen"]  { order: 1; }
  #mobile-reorder-wrap #reinout-quote-mobile               { order: 2; }
  #mobile-reorder-wrap .vitrine-choice                      { order: 3; }
  #mobile-reorder-wrap #vitrine-kernselectie-home           { order: 4; }
  #mobile-reorder-wrap #vitrine-op-maat-home                { order: 5; display: block; }
  #mobile-reorder-wrap [aria-labelledby="process-heading"]  { order: 6; }
  #mobile-reorder-wrap [aria-labelledby="mm-heading"]       { order: 7; }
  #mobile-reorder-wrap [aria-labelledby="orgs-heading"]     { order: 8; }
  #mobile-reorder-wrap [aria-labelledby="kennis-heading"]   { order: 9; }
  #mobile-reorder-wrap [aria-labelledby="faq-heading"]      { order: 10; }
  #mobile-reorder-wrap [aria-labelledby="contact-cta-heading"] { order: 11; }

  /* ── Fix 4: ensemble-kaartbeschrijving inkorten op mobiel (visueel, tekst blijft intact in de HTML) ── */
  .musician-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ── Fix 5: eigen, subtiele +/− indicator i.p.v. de standaard browser-chevron, enkel op mobiel ── */
  .orgs-details summary { pointer-events: none; }
  .orgs-details summary::after { display: none; }
  .orgs-pills, .orgs-secondary-link, .orgs-cards-col { display: none; }
  .contact-cities-block { display: none; }
  #orgs-heading { font-size: clamp(1.6rem, 6.5vw, 2rem); }
  .orgs-grid { grid-template-columns: 1fr !important; }
  .orgs-details summary { text-align: center; }
  .orgs-details summary .eyebrow { justify-content: center; }
  .orgs-text-col { text-align: center; }
  .orgs-text-col p { max-width: 34ch; margin-left: auto; margin-right: auto; }
  .orgs-details summary h2 { max-width: 20ch; margin-left: auto; margin-right: auto; }

  /* ── Homepage Review & Optimalisatie: mobiel-only reviews-marquee ── */
  .social-proof-inner { display: none; }
  .social-proof-marquee { display: block; overflow: hidden; margin-top: 0; }
  .social-proof-marquee-track {
    display: flex; width: max-content;
    animation: proof-scroll 28s linear infinite;
  }
  .social-proof-marquee .social-proof-quote { width: 78vw; flex-shrink: 0; padding: 0 1.25rem; }
  @keyframes proof-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── Reinout-quote (rustpauze-sectie, enkel mobiel) ── */
  #reinout-quote-mobile { display: block; padding-top: 1.75rem; padding-bottom: 1.75rem; }
  .reinout-quote-card { flex-direction: column; align-items: center; text-align: center; }

  /* ── Subtiele achtergrondafwisseling tussen secties, geen harde overgangen ── */
  .social-proof-strip { background: var(--bg-2); }
  .vitrine-choice { background: var(--bg-2); }
  #vitrine-kernselectie-home { background: var(--bg); }

  /* ── TYPOGRAFIE ──────────────────────────────────
     Meer regelhoogte = rustiger lezen.
     Kleinere koppen = minder gedrongen. */
  h1 { font-size: clamp(1.85rem, 7.5vw, 2.4rem); line-height: 1.2; }
  .hero h1 { margin-bottom: 1.75rem; }
  h2 { font-size: clamp(1.45rem, 6vw, 1.9rem);   line-height: 1.25; }
  h3 { font-size: clamp(1.15rem, 5vw, 1.45rem);  line-height: 1.3; }
  h4 { font-size: 1rem; line-height: 1.4; }

  p  { font-size: 0.95rem; line-height: 1.75; }
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.14em; }
  .hero .eyebrow { letter-spacing: 0.04em; gap: 0.4rem; }
  .hero .eyebrow-line { width: 16px; }

  /* ── SECTIES ─────────────────────────────────────
     Asymmetrisch ritme: meer ruimte boven dan onder
     geeft de pagina een natuurlijke, ontspannen flow. */
  .section    { padding: 3.5rem 0 3rem; }
  .section-sm { padding: 2.25rem 0 2rem; }

  /* ── NAVIGATIE ───────────────────────────────────
     56px nav-hoogte = compacter dan desktop, maar
     touch-target voor hamburger blijft 44px. */
  .site-nav      { height: 56px; }
  .nav-inner     { padding: 0 1.25rem; }
  .nav-logo img  { height: 30px; }
  .nav-logo-text { font-size: 1.2rem; }
  .nav-toggle    { padding: 0.6rem; min-width: 44px; min-height: 44px; }
  .nav-lang-wrap { display: none; } /* Globe op mobiel: in mobiel-menu */

  /* Mobiel menu — groot en comfortabel */
  .nav-mobile {
    top: 56px;
    gap: 0;
    padding: 2rem 1.5rem 2.5rem;
  }
  .nav-mobile a {
    font-size: 1.45rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: block;
  }
  .nav-mobile a:last-of-type { border-bottom: none; }
  .nav-mobile .btn {
    display: flex;
    font-size: 1.2rem;
    font-weight: 700;
    background: #1F5F54;
    color: #fff;
    min-height: 52px;
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 0.75rem;
  }
  /* Punt 4: verfijnde CTA — standaard teal i.p.v. een zwaardere, afwijkende tint */
  .nav-mobile .nav-mobile-cta {
    background: var(--teal);
    font-weight: 500;
  }
  /* Punt 5: duidelijkere scheiding, taalwisselaar lager in visuele prioriteit */
  .nav-mobile-lang {
    padding-top: 1.75rem;
    margin-top: 1.75rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    opacity: 0.7;
  }
  /* Punt 3: subtiele, merkeigen welkomsttekst bovenaan het menu */
  .nav-mobile-welcome {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--teal); text-align: center; margin-bottom: 1.5rem; opacity: 0.85;
  }
  /* Punt 1: markeer de huidige pagina in het menu */
  .nav-mobile-current { color: var(--teal) !important; font-weight: 500; }

  /* ── HERO ────────────────────────────────────────
     Minder hoogte = CTA sneller bereikbaar.
     Tekst lager gepositioneerd = meer lucht boven. */
  .hero {
    min-height: 75vh;
    padding: 5.5rem 0 4rem;
    display: flex;
    align-items: flex-end; /* tekst onderaan gecentreerd */
  }
  .hero-content { padding-bottom: 1.5rem; }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px; /* ruime touch target */
    font-size: 0.95rem;
  }
  .hero-ctas .btn-ghost {
    min-height: 44px;
    font-size: 0.85rem;
    opacity: 0.85;
  }
  .hero-scroll { display: none; }

  /* ── PREMIUM BANNER ──────────────────────────────
     Één kolom op heel kleine schermen, 2×2 op normaal.
     Meer padding per item = rustiger. */
  .premium-banner { padding: 0; }
  .premium-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .premium-banner-sep { display: none; }
  .premium-banner-item {
    padding: 1rem 0.9rem;
    gap: 0.55rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    justify-content: flex-start;
  }
  .premium-banner-item:nth-child(even) { border-right: none; }
  .premium-banner-item:nth-child(3),
  .premium-banner-item:nth-child(4)    { border-bottom: none; }
  .premium-banner-icon { width: 16px; height: 16px; flex-shrink: 0; }
  .premium-banner-text { font-size: 0.79rem; line-height: 1.4; }

  /* ── VITRINE KEUZEKAARTEN ────────────────────────
     Ruime padding + luchtige gap = premium aanvoelen. */
  .vitrine-choice        { padding: 2.75rem 0; }
  .vitrine-choice-title  { font-size: 1.45rem; margin-bottom: 1.75rem; }
  .vitrine-choice-grid   { grid-template-columns: 1fr; gap: 1.1rem; margin-bottom: 1.25rem; }
  .vitrine-choice-card   { padding: 1.75rem 1.5rem; gap: 1.1rem; }
  .vitrine-choice-badge  { font-size: 0.65rem; padding: 0.3rem 0.75rem; }
  .vitrine-choice-name   { font-size: 1.3rem; margin-bottom: 0.35rem; }
  .vitrine-choice-sub    { font-size: 0.87rem; line-height: 1.65; margin-bottom: 0.1rem; }
  .vitrine-choice-bullets { gap: 0.5rem; }
  .vitrine-choice-bullets li { font-size: 0.84rem; line-height: 1.55; }
  .vitrine-choice-hint   { font-size: 0.82rem; line-height: 1.65; margin-top: 0.5rem; }
  .vitrine-choice-cta    { min-height: 48px; }

  /* ── VITRINE OP MAAT TEASER ──────────────────────
     Meer padding + grotere tussenmarge. */
  .vom-teaser-inner   { flex-direction: column; gap: 1.75rem; padding: 0.5rem 0; }
  .vom-teaser-title   { font-size: 1.45rem; line-height: 1.25; }
  .vom-teaser-sub     { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.85); }
  .vom-teaser-actions { width: 100%; flex-direction: column; gap: 0.75rem; }
  .vom-teaser-actions .btn { width: 100%; justify-content: center; min-height: 48px; }

  /* ── MUSICANT KAARTEN ────────────────────────────
     Grotere foto = meer emotionele impact.
     Royale body padding = premium gevoel. */
  .kernselectie-grid    { gap: 1.25rem; }
  .musician-card-img    { height: 210px; }
  .musician-card-body   { padding: 1.25rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
  .musician-card-name   { font-size: 1.15rem; }
  .musician-card-role   { font-size: 0.78rem; }
  .musician-card-desc   { font-size: 0.85rem; line-height: 1.65; margin: 0.6rem 0 1rem; }
  .musician-card-actions          { flex-direction: column; gap: 0.6rem; }
  .musician-card-actions .btn     { width: 100%; justify-content: center; min-height: 48px; }

  /* ── MATCHMAKER BANNER ───────────────────────────
     Volledig gestapeld, ruime padding, CTA prominent. */
  .matchmaker-banner {
    padding: 2.25rem 1.5rem;
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: var(--r-lg);
  }
  .mm-banner-title { font-size: 1.35rem; line-height: 1.3; }
  .mm-banner-sub   { font-size: 0.87rem; line-height: 1.7; }
  .mm-banner-cta   { width: 100%; justify-content: center; min-height: 52px; }

  /* ── GELEGENHEDEN ────────────────────────────────
     Grotere gap tussen de kaarten. */
  .occasions-grid             { grid-template-columns: 1fr; gap: 1.1rem; }
  .occasion-card-content      { padding: 1.1rem 1.25rem 1.35rem; }
  .occasion-card-content h3   { font-size: 1.1rem; }
  .occasion-card-content p    { font-size: 0.84rem; line-height: 1.65; }

  /* ── B2B-SECTIE ──────────────────────────────────
     Service cards meer ruimte. */
  .b2b-services       { gap: 0.9rem; }
  .b2b-service-card   { padding: 1.15rem 1.25rem; gap: 0.85rem; }
  .b2b-service-icon   { width: 36px; height: 36px; flex-shrink: 0; }
  .b2b-service-title  { font-size: 0.95rem; }
  .b2b-service-desc   { font-size: 0.83rem; line-height: 1.6; }
  .b2b-audiences      { gap: 0.45rem; margin-top: 0.6rem; }
  .b2b-audience-tag   { font-size: 0.77rem; padding: 0.4rem 0.8rem; }

  /* ── VALUE SECTIE ────────────────────────────────
     Video en tekst gestapeld, meer marge. */
  .value-grid            { gap: 2.25rem; }
  .value-image-badge     { left: 0.75rem; bottom: -0.5rem; padding: 0.65rem 0.9rem; }
  .value-image-badge strong { font-size: 1.5rem; }
  .value-trust-bar       { margin-top: 2.75rem; padding-top: 2.25rem; gap: 2rem; }
  .value-trust-stat      { gap: 0.25rem; }
  .value-trust-stat strong { font-size: 1.9rem; }
  .value-trust-stat span { font-size: 0.74rem; }

  /* ── PROCESS STEPS ───────────────────────────────
     Horizontale layout per stap: getal | titel + tekst */
  .process-steps     { grid-template-columns: 1fr; gap: 0; }
  .process-step {
    text-align: left;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 1rem;
    align-items: flex-start;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--border);
  }
  .process-step:last-child { border-bottom: none; }
  .process-step-num  {
    margin: 0;
    width: 44px; height: 44px;
    font-size: 1.1rem;
    flex-shrink: 0;
    grid-row: 1 / 3;
  }
  .process-step h4   { font-size: 0.97rem; margin-bottom: 0.3rem; }
  .process-step p    { font-size: 0.83rem; line-height: 1.65; margin: 0; }

  /* ── TESTIMONIALS ────────────────────────────────
     Ruimere gap + meer kaartpadding. */
  .testimonials-grid  { grid-template-columns: 1fr; gap: 1.1rem; }
  .testimonial-card   { padding: 1.5rem 1.35rem; }
  .testimonial-stars  { margin-bottom: 0.65rem; }
  .testimonial-quote  { font-size: 0.94rem; line-height: 1.7; }
  .testimonial-author { font-size: 0.8rem; margin-top: 0.85rem; }

  /* ── FAQ ─────────────────────────────────────────
     Meer ruimte tussen items, groter touch target. */
  .faq-list     { gap: 0.75rem; }
  .faq-item     { border-radius: var(--r-md); overflow: hidden; }
  .faq-question {
    padding: 1.15rem 1.25rem;
    font-size: 0.9rem;
    gap: 0.85rem;
    min-height: 56px; /* comfortabel touch target */
    line-height: 1.45;
  }
  .faq-answer-inner {
    padding: 0.25rem 1.25rem 1.35rem 1.25rem;
    font-size: 0.86rem;
    line-height: 1.75;
  }
  .faq-columns { grid-template-columns: 1fr; }

  /* ── CONTACT FORMULIER ───────────────────────────
     Royale padding + voldoende inputhoogte. */
  .contact-form          { padding: 1.5rem 1.35rem; border-radius: var(--r-lg); }
  .form-group            { gap: 0.4rem; }
  .form-group label      { font-size: 0.71rem; letter-spacing: 0.08em; }
  .form-group input,
  .form-group select,
  .form-group textarea   {
    font-size: 1rem; /* voorkomt iOS auto-zoom */
    padding: 0.9rem 1rem;
    border-radius: var(--r-md);
    min-height: 52px;
  }
  .form-group textarea   { min-height: 120px; }
  .form-row              { grid-template-columns: 1fr; gap: 0; }
  .form-submit           { min-height: 52px; font-size: 0.97rem; }
  .form-reassure         { font-size: 0.78rem; margin-top: 0.85rem; }

  /* ── FOOTER ──────────────────────────────────────
     Meer witruimte tussen kolommen en links. */
  .site-footer    { padding: 3rem 0 2rem; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
  .footer-brand   { max-width: 100%; }
  .footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 0.75rem; }
  .footer-col h4  { font-size: 0.7rem; margin-bottom: 1rem; }
  .footer-col ul  { gap: 0.7rem; }
  .footer-col a   { font-size: 0.87rem; }
  .footer-bottom  {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding-top: 1.35rem;
    font-size: 0.79rem;
  }

  /* Vitrine pagina sticky CTA */
  .vitrine-sticky-cta    { padding: 0.7rem 1.25rem; }
  .vitrine-sticky-inner  { gap: 0.65rem; }
  .vitrine-sticky-actions { width: 100%; }
  .vitrine-sticky-actions .btn { flex: 1; justify-content: center; font-size: 0.85rem; min-height: 44px; }

  /* ── VITRINE SWITCHER ────────────────────────────
     Groter touch target, verberg subtitel. */
  .vitrine-switcher        { gap: 0.6rem; }
  .vitrine-switcher-btn    { font-size: 0.8rem; padding: 0.65rem 1rem; min-height: 44px; }
  .vitrine-switcher-sub    { display: none; }

  /* ── SECTION HEADERS ─────────────────────────────
     Meer marge onder eyebrow, voor een luxueuze flow. */
  .section-header        { margin-bottom: 2rem; }
  .section-header .eyebrow { margin-bottom: 0.75rem; }
  .section-header h2     { margin-bottom: 0.9rem; }
  .section-header p      { font-size: 0.9rem; line-height: 1.75; }

  /* ── KNOPPEN ALGEMEEN ────────────────────────────
     Touch-vriendelijk: minimaal 44px hoogte. */
  .btn    { min-height: 46px; padding: 0.75rem 1.4rem; }
  .btn-lg { min-height: 52px; padding: 0.85rem 1.75rem; font-size: 0.97rem; }
  .btn-sm { min-height: 40px; }

  /* ── RESULT STICKY CTA (Matchmaker) ─────────────
     Voorkomt dat sticky bar te hoog is op mobiel. */
  .result-sticky-cta     { padding: 0.7rem 1rem; }
  .result-sticky-btn     { font-size: 0.85rem; min-height: 44px; }
  .result-sticky-call    { font-size: 0.82rem; padding: 0.6rem 0.9rem; }
  #screen-result         { padding-bottom: 80px; }

  /* Punt 1: contact-form padding reduceren op mobiel */
  .contact-form { padding: 1.5rem; }
  /* Punt 3: form inputs touch-target op mobiel */
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 44px;
  }
  .form-group textarea {
    min-height: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-fallback { animation: none; }
  .social-proof-marquee-track { animation: none; }
}

/* ── KLEINE TELEFOONS (max-width: 380px) ────────────
   Extra compressie voor iPhone SE, kleine Androids. */
@media (max-width: 380px) {
  .container          { padding: 0 1.1rem; }
  h1                  { font-size: 1.75rem; }
  h2                  { font-size: 1.35rem; }
  .vitrine-choice-card { padding: 1.35rem 1.1rem; }
  .btn                { min-height: 44px; padding: 0.7rem 1.2rem; font-size: 0.85rem; }
  .btn-lg             { min-height: 50px; padding: 0.8rem 1.4rem; font-size: 0.9rem; }
  .testimonial-card   { padding: 1.25rem 1.1rem; }
  .contact-form       { padding: 1.25rem 1.1rem; }
  .hero               { min-height: 80vh; padding: 4.5rem 0 3rem; }
  .musician-card-img  { height: 190px; }
  /* Punt 3: card-acties stapelen op heel kleine schermen */
  .musician-card-actions {
    flex-direction: column;
    gap: 0.4rem;
  }
  .musician-card-actions .btn {
    width: 100%;
  }
}

/* Punt 2: modus-switcher stapelen op heel kleine schermen */
@media (max-width: 400px) {
  #contact-mode-switcher {
    flex-direction: column !important;
    gap: 0.4rem !important;
  }
  #contact-mode-switcher .btn {
    font-size: 0.78rem;
  }
}

/* ── Punt 1+2: Filterbar mobiel — horizontaal scrollbaar ── */
@media (max-width: 640px) {
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    margin: 0 -1.35rem 1.25rem;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex-shrink: 0;
    min-height: 44px;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

/* ── TABLET (641px – 860px) ──────────────────────────
   Lichte aanpassingen — desktop-layout bewaard. */
@media (min-width: 641px) and (max-width: 860px) {
  .section                    { padding: 4rem 0; }
  .hero                       { padding: 6rem 0 4rem; }
  .vitrine-choice-grid        { gap: 1rem; }
  .vitrine-choice-card        { padding: 1.75rem; }
  .occasions-grid             { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid          { grid-template-columns: repeat(2, 1fr); }
  .footer-grid                { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .matchmaker-banner          { padding: 2.5rem 2rem; }
  .process-steps              { grid-template-columns: repeat(2, 1fr); }
  .b2b-services               { grid-template-columns: repeat(2, 1fr); }
  .musician-card-actions .btn { font-size: 0.88rem; }
}


/* ─────────────────────────────────────────────────
   TAALWISSELAAR
───────────────────────────────────────────────── */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
}
.lang-switch-btn {
  background: transparent; border: 1px solid transparent;
  border-radius: var(--r-sm); color: var(--ink-4);
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.5rem; cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
  line-height: 1;
}
.lang-switch-btn:hover { color: var(--ink); border-color: var(--border); }
.lang-switch-btn--active {
  color: var(--teal); border-color: var(--border-hot);
  background: var(--teal-pale);
}
.lang-switch-sep {
  color: var(--ink-4); font-size: 0.65rem; padding: 0 1px; user-select: none;
}
/* Witte variant voor donkere achtergronden */
.lang-switcher--light .lang-switch-btn { color: rgba(255,255,255,0.45); }
.lang-switcher--light .lang-switch-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.lang-switcher--light .lang-switch-btn--active { color: #fff; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); }
.lang-switcher--light .lang-switch-sep { color: rgba(255,255,255,0.25); }

/* ─────────────────────────────────────────────────
   GLOBE TAALWISSELAAR — nav dropdown
───────────────────────────────────────────────── */
.nav-lang-wrap {
  position: relative;
}
.nav-lang-btn {
  display: flex; align-items: center; gap: 0.35rem;
  background: transparent; border: none;
  border-radius: var(--r-xl); padding: 0.35rem 0.65rem;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--ink-3); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.nav-lang-btn:hover { border-color: var(--teal); color: var(--teal); }
.nav-lang-current { min-width: 1.5ch; }
.nav-lang-dropdown {
  position: absolute; top: calc(100% + 0.5rem); right: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  min-width: 148px; overflow: hidden;
  opacity: 0; transform: translateY(-6px);
  pointer-events: none; transition: opacity .18s, transform .18s;
  z-index: 200;
}
.nav-lang-dropdown.open {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.nav-lang-opt {
  display: flex; align-items: center; gap: 0.6rem;
  width: 100%; background: transparent; border: none;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  color: var(--ink-2); padding: 0.6rem 0.9rem; cursor: pointer;
  transition: background .15s, color .15s; text-align: left;
}
.nav-lang-opt span { font-weight: 400; color: var(--ink-4); font-size: 0.75rem; }
.nav-lang-opt:hover { background: var(--bg-2); color: var(--teal); }
.nav-lang-opt.active { color: var(--teal); }
@media (max-width: 860px) { .nav-lang-wrap { display: none; } }

/* Proefmigratie: directe, statische taallinks (geen dropdown, geen JS) */
.nav-lang-static {
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--ink-4); text-decoration: none;
  padding: 0.35rem 0.4rem; transition: color .15s;
}
.nav-lang-static:hover { color: var(--teal); }
.nav-lang-static--active { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* Mobiel: taalwisselaar onderaan mobile menu */
.nav-mobile-lang {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1rem 0 0; margin-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.nav-mobile-lang .nav-lang-opt {
  color: var(--ink-3); font-size: 0.88rem;
  padding: 0.5rem 0;
  min-height: 44px;
}
.nav-mobile-lang .nav-lang-opt:hover { color: var(--teal); background: transparent; }

/* ─────────────────────────────────────────────────
   VITRINE OP MAAT — PRAKTIJKCASES
───────────────────────────────────────────────── */
.vom-cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) {
  .vom-cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .vom-cases-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 900px) {
  .vom-cases-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
.vom-case {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.vom-case:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.vom-case-img {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.vom-case-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s;
}
.vom-case:hover .vom-case-img img { transform: scale(1.03); }
.vom-case-tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: rgba(26,26,26,0.72);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.65rem; border-radius: 999px;
}
.vom-case-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.vom-case-body h3 {
  font-size: 1.05rem; font-weight: 600; color: var(--ink);
  line-height: 1.35; margin: 0;
}
.vom-case-dl { display: flex; flex-direction: column; gap: 0.65rem; }
.vom-case-row { display: grid; grid-template-columns: 72px 1fr; gap: 0.5rem; }
.vom-case-dt {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--teal); padding-top: 0.15rem;
}
.vom-case-dd { font-size: 0.83rem; color: var(--ink-3); line-height: 1.65; }
.vom-case-result .vom-case-dd {
  font-style: italic; color: var(--ink-2); font-size: 0.82rem;
}
@media (max-width: 480px) {
  .vom-case-row { grid-template-columns: 1fr; gap: 0.15rem; }
  .vom-case-body { padding: 1.1rem; }
}

/* ─────────────────────────────────────────────────
   FAQ — branding logo in Over-sectie
───────────────────────────────────────────────── */
.faq-brand-logo {
  margin: -0.5rem 0 1rem;
}

/* ═══════════════════════════════════════════════════════
   MOBILE UX UPGRADE — carrousel, grid, filter, sticky
   Uitsluitend mobiel (max-width: 640px)
   Desktop volledig ongewijzigd.
═══════════════════════════════════════════════════════ */

/* ── 1. HERO H1 — regelafbreking optimaliseren op mobiel ── */
@media (max-width: 640px) {
  .hero-h1-br { display: none; } /* Verwijder harde <br> — laat tekst natuurlijk wrappen */
  .hero h1 em  { display: block; } /* "écht past" op eigen regel */
  .hero h1 strong { display: block; } /* "bij uw moment." op eigen regel */
}

/* ── 2. MUZIKANTKAARTEN — horizontale swipeable carrousel ── */
@media (max-width: 640px) {
  /* Wrapper wordt scroll-container */
  #musicians-preview.kernselectie-grid {
    display: flex !important;
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* iOS momentum scroll */
    gap: 1rem;
    padding: 0.25rem 1.35rem 1.25rem; /* zijmarges = container-padding */
    margin: 0 -1.35rem;              /* trek buiten container voor edge-to-edge */
    scrollbar-width: none;           /* Firefox */
    -ms-overflow-style: none;        /* IE/Edge */
    /* Geen data-anim op individuele kaarten in carrousel-modus */
  }
  #musicians-preview.kernselectie-grid::-webkit-scrollbar { display: none; } /* Chrome/Safari */

  #musicians-preview.kernselectie-grid .musician-card {
    flex: 0 0 78vw;      /* 78% van schermbreed: preview van volgende kaart */
    max-width: 300px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: var(--r-lg);
    overflow: hidden;
    /* Reset data-anim voor kaarten in carrousel — altijd zichtbaar */
    opacity: 1 !important;
    transform: none !important;
  }

  #musicians-preview.kernselectie-grid .musician-card-img {
    height: 200px;
    border-radius: 0; /* foto vult hele breedte */
  }
  #musicians-preview.kernselectie-grid .musician-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  #musicians-preview.kernselectie-grid .musician-card-body {
    padding: 1.1rem 1.15rem 1.35rem;
  }
  #musicians-preview.kernselectie-grid .musician-card-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  #musicians-preview.kernselectie-grid .musician-card-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    font-size: 0.85rem;
  }

  /* Scroll-indicator: stippeltjes onder de carrousel */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 0.9rem;
    padding-bottom: 0.25rem;
  }
  .carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.25s, transform 0.25s;
    /* Touch target vergroot via padding */
    padding: 10px;
    margin: -10px;
    box-sizing: content-box;
    cursor: pointer;
  }
  .carousel-dot.active {
    background: var(--teal);
    transform: scale(1.3);
  }

  /* Hint-tekst: "Swipe →" */
  .carousel-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--ink-4);
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
  }
  .carousel-hint svg { opacity: 0.5; }
}

/* Op desktop: carrousel-hint verbergen */
.carousel-dots,
.carousel-hint { display: none; }

/* ── 3. GELEGENHEDEN — 2×3 grid op mobiel ── */
@media (max-width: 640px) {
  .occasions-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }
  .occasion-card {
    aspect-ratio: 4/5; /* iets hoger dan breed = meer fotosurface */
    border-radius: var(--r-md);
  }
  .occasion-card-content {
    padding: 0.75rem 0.8rem 0.9rem !important;
  }
  .occasion-card-content h3 {
    font-size: 0.92rem !important;
    font-weight: 600;
    line-height: 1.3;
  }
  .occasion-card-content p {
    display: none; /* subtekst verbergen in 2-koloms grid — te krap */
  }
  .occasion-card-icon {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
}

/* ── 4. STICKY CTA — alle pagina's op mobiel ── */
@media (max-width: 640px) {

  /* Universele sticky bar — werkt op alle pagina's */
  .mobile-sticky-offer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(26,26,26,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 0.8rem 1.25rem calc(0.8rem + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
  }
  .mobile-sticky-offer.visible {
    transform: translateY(0);
  }
  .mobile-sticky-offer.hidden-by-form {
    transform: translateY(100%);
  }
  .mobile-sticky-offer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
  }
  .mobile-sticky-offer-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    text-transform: uppercase;
  }
  .mobile-sticky-offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: var(--r-xl);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.15rem;
    white-space: nowrap;
    text-decoration: none;
    min-height: 44px;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .mobile-sticky-offer-btn:hover { background: var(--teal-light); }

  /* ── Structurele vereenvoudiging (root cause fix): label + knop moesten
     samen passen — bij lange knoptekst kon dit nooit gegarandeerd lukken.
     Enkel de knop overblijft, breedte:100% kan per definitie niet overflowen. ── */
  .mobile-sticky-offer-label { display: none; }
  .mobile-sticky-offer-inner { max-width: none; }
  .mobile-sticky-offer-btn { width: 100%; }
  .vk-teaser-cta2 { white-space: normal; text-align: center; line-height: 1.3; }

  /* Voeg padding-bottom toe aan body zodat content niet achter de bar verdwijnt */
  body.has-mobile-sticky { padding-bottom: 72px; }
}

/* Desktop: verberg de mobile sticky bar volledig */
@media (min-width: 641px) {
  .mobile-sticky-offer { display: none !important; }
}

/* ── 5. FAQ FILTER op mobiel ── */
@media (max-width: 640px) {
  .faq-filter-bar {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 0 0.75rem;
    margin-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .faq-filter-bar::-webkit-scrollbar { display: none; }
  .faq-filter-btn {
    flex-shrink: 0;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ink-2);
    padding: 0.5rem 1.1rem;
    cursor: pointer;
    min-height: 40px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
  }
  .faq-filter-btn.active {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-pale);
  }
  .faq-filter-btn:hover:not(.active) {
    border-color: var(--border-hot);
    color: var(--ink);
  }
  /* FAQ items verbergen als filter actief */
  .faq-category[data-hidden="true"] { display: none; }
  /* Punt 2: CTA-block padding op mobiel */
  .faq-cta-block { padding: 1.75rem 1.25rem !important; }
}

/* Desktop: geen filter-bar */
@media (min-width: 641px) {
  .faq-filter-bar { display: none; }
}

/* ═══════════════════════════════════════════════════
   BLUR-UP LAZY LOADING
   Techniek: kleine Base64-placeholder wordt geladen
   en vervaagt naar de volledige afbeelding zodra die
   binnenkomt. Geeft instant feedback op trage verbindingen.
   
   Desktop: ook actief (Core Web Vitals verbetering)
   Mobiel: primaire use case
═══════════════════════════════════════════════════ */
.blur-up {
  filter: blur(8px);
  transform: scale(1.02); /* voorkomt blauwe randen */
  transition: filter 0.45s ease, transform 0.45s ease;
  will-change: filter, transform;
}
.blur-up.loaded {
  filter: blur(0);
  transform: scale(1);
}
/* Zorg dat de container geen overflow toont tijdens schalen */
.musician-card-img,
.musician-detail-img {
  overflow: hidden;
}

/* ══════════════════════════════════════
   MEDIA: Video Lightbox & Ensemble Media
══════════════════════════════════════ */

/* Video play overlay op kaarten */
.musician-card-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.musician-card-media img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.musician-card-media:hover img { transform: scale(1.04); }
.media-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,26,26,0.28);
  opacity: 0; transition: opacity .25s ease;
  cursor: pointer; border: none; padding: 0;
}
.musician-card-media:hover .media-play-btn,
.musician-card-media:focus-within .media-play-btn { opacity: 1; }
.play-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform .2s ease, background .2s ease;
}
.media-play-btn:hover .play-icon {
  transform: scale(1.12);
  background: #fff;
}
.play-icon svg { margin-left: 3px; }

/* Detail: media preview blok */
.ensemble-media {
  margin: 1.5rem 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  position: relative;
  cursor: pointer;
  aspect-ratio: 16/9;
  max-width: 100%;
}
.ensemble-media-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: opacity .3s ease;
}
.ensemble-media:hover .ensemble-media-thumb { opacity: 0.6; }
.ensemble-media-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem;
}
.ensemble-play-circle {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 32px rgba(0,0,0,0.3);
  transition: transform .2s ease;
}
.ensemble-media:hover .ensemble-play-circle { transform: scale(1.1); }
.ensemble-play-circle svg { margin-left: 4px; }
.ensemble-media-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.35); padding: .3rem .7rem;
  border-radius: var(--r-xl);
}
.ensemble-media-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem;
  background: linear-gradient(135deg, var(--ink) 0%, #2d2d2d 100%);
}
.ensemble-media-placeholder-icon {
  font-size: 2.5rem; opacity: .35;
}
.ensemble-media-placeholder-text {
  font-size: .78rem; color: rgba(255,255,255,.4);
  font-family: var(--font-body); text-align: center; padding: 0 1rem;
  line-height: 1.5;
}
.ensemble-media-request {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; color: var(--teal-light); font-weight: 500;
  background: rgba(42,124,111,0.15); border-radius: var(--r-xl);
  padding: .3rem .75rem; margin-top: .25rem;
}

/* Lightbox */
.media-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,10,10,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.media-lightbox.active {
  opacity: 1; pointer-events: all;
}
.media-lightbox-inner {
  position: relative;
  width: 100%; max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  transform: scale(0.95);
  transition: transform .25s ease;
}
.media-lightbox.active .media-lightbox-inner { transform: scale(1); }
.media-lightbox iframe {
  width: 100%; height: 100%; border: none; display: block;
}
.media-lightbox-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 2rem; text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}
.media-lightbox-placeholder h3 {
  color: #fff; font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 400;
}
.media-lightbox-placeholder p {
  color: rgba(255,255,255,.55); font-size: .9rem; max-width: 380px; line-height: 1.6;
}
.media-lightbox-placeholder .placeholder-icon { font-size: 3rem; opacity: .4; }
.lightbox-close {
  position: absolute; top: -3rem; right: 0;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.12);
  border: none; border-radius: 50%;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
  font-size: 1.1rem;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

/* Ensemble quote blok */
.ensemble-quote-block {
  margin: 1.25rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--bg-2);
  border-left: 2px solid var(--teal);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.ensemble-quote-block p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 0.5rem;
}
.ensemble-quote-block cite {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  display: block;
}
.ensemble-quote-block p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.02rem; color: var(--ink-2); line-height: 1.6;
  margin: 0 0 .4rem;
}
.ensemble-quote-block cite {
  font-size: .74rem; color: var(--ink-4);
  font-style: normal; font-weight: 500;
}

/* Media beschikbaarheids-badge op kaart */
.media-badge {
  position: absolute; bottom: .6rem; left: .6rem;
  background: rgba(10,10,10,.72);
  color: #fff; font-size: .65rem; font-weight: 600;
  padding: .25rem .6rem; border-radius: var(--r-xl);
  display: flex; align-items: center; gap: .3rem;
  letter-spacing: .05em; backdrop-filter: blur(4px);
}

/* Responsive */
@media (max-width: 600px) {
  .media-lightbox { padding: 1rem; }
  .media-lightbox-inner { border-radius: var(--r-md); }
  .lightbox-close { top: -2.5rem; }
}

/* ── Occasion pills (homepage strip) ── */
.occasion-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  color: var(--ink-2); padding: 0.4rem 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.occasion-pill:hover {
  border-color: var(--teal); color: var(--teal);
  background: var(--teal-pale);
}

/* ── Occasion pill hover-tooltip ── */
.occ-pill-wrap {
  position: relative;
  display: inline-block;
}
.occ-pill-wrap .occ-pill-preview {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 0.73rem;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-md);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 100;
  text-align: center;
  max-width: 220px;
  white-space: normal;
}
.occ-pill-wrap .occ-pill-preview::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
}
.occ-pill-wrap:hover .occ-pill-preview,
.occ-pill-wrap:focus-within .occ-pill-preview {
  opacity: 1;
}
@media (hover: none) {
  .occ-pill-wrap .occ-pill-preview { display: none; }
}

/* ── Ensemble-tags pills (VK kaarten) ── */
.ensemble-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.ensemble-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-pale);
  border: 1px solid var(--border-hot);
  border-radius: var(--r-xl);
  padding: 0.2rem 0.55rem;
  white-space: nowrap;
  line-height: 1.4;
}


/* ── Concept C: actieve pagina-indicatie ── */
.nav-links a[aria-current="page"] { color: var(--teal); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-mobile a[aria-current="page"],
.nav-mobile-accordion-toggle[aria-current="page"] { color: var(--teal); }

/* ── Concept C: kale dropdown-items ── */
.nav-dropdown-item .nav-dropdown-label { font-weight: 500; }
.nav-dropdown-item { padding: 0.6rem 0.85rem; }

/* ── Skip-link: standaard accessibility-patroon, off-screen tot toetsenbordfocus ── */
.skip-link {
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: 9999;
  transform: translateY(-120%);
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 1.1rem;
  border-radius: 0 0 var(--r-md) 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
