/* Shared styles for all ACA sub-pages — Odessa direction (navy + chartreuse + cream)
   Mobile-first responsive: basis = mobiel, daarna md: >=768px en lg: >=1024px */
:root {
  --navy: #0B1420;
  --midnight: #0A1828;
  --ink: #0A1828;
  --paper: #F2F2EE;
  --cream: #F2F2EE;
  --accent: #CCFF00;        /* chartreuse */
  --accent-warm: #FFD84D;
  --accent-gold: #EFD98A;   /* zacht goud — voor eyebrows op navy + nav CTA */
  --line: rgba(255,255,255,0.12);
  --line-ink: rgba(10,24,40,0.15);
  --muted: rgba(10,24,40,0.65);
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0; background: var(--paper); color: var(--ink);
  font-family: "Inter Tight", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.serif { font-family: "Fraunces", Georgia, serif; font-weight: 400; }
.italic { font-style: italic; }
img, video { max-width: 100%; height: auto; }

/* ---------- NAV (rounded navy pill bar, inside cream body) ---------- */
.nav-wrap {
  padding: 10px 10px 0;
  /* Mobiel: vast bovenin zodat de burger meescrollt */
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: padding .25s ease;
}
/* Spacer onder de fixed nav zodat content niet verschuilt op mobiel.
   Header-hoogte ≈ logo(38) + nav-padding(8+8) + wrap-padding(10) ≈ 64px. */
body { padding-top: 64px; }
.nav-wrap.scrolled:not(.menu-open) {
  padding: 8px 10px 0;
}
.nav-wrap.scrolled:not(.menu-open) .nav {
  padding: 6px 10px 6px 14px;
  background: transparent;
  box-shadow: none;
}
.nav-wrap.scrolled:not(.menu-open) .logo img {
  height: 32px;
}
.nav-wrap.scrolled:not(.menu-open) .nav-hamburger {
  width: 34px; height: 34px; padding: 9px 7px;
}
.nav { transition: background .25s ease, box-shadow .25s ease, padding .25s ease; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px 8px 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  position: relative;
  gap: 10px;
}
.nav .logo {
  font-family: "Space Grotesk", "Inter Tight", sans-serif;
  font-weight: 700; letter-spacing: 1.5px; font-size: 11px;
  display: flex; align-items: center; gap: 8px;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
}
.nav .logo img {
  display: block;
  height: 38px; width: auto;
  transition: height .25s ease;
}
/* Mobile: only show Q logo, hide full wordmark */
.nav .logo .logo-full { display: none; }
.nav .logo .logo-q { display: block; height: 38px; width: auto; }
.nav-wrap.scrolled:not(.menu-open) .logo .logo-q { height: 32px; }
.nav .logo .dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
/* Desktop links + CTA verborgen op mobiel */
.nav .links,
.nav .cta { display: none; }

/* Hamburger (alleen op mobiel zichtbaar) — navy pill zodat-ie zichtbaar blijft op transparante balk */
.nav-hamburger {
  display: inline-flex; flex-direction: column; justify-content: space-between;
  width: 38px; height: 38px; padding: 10px 8px;
  background: var(--navy); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; cursor: pointer; flex-shrink: 0;
  transition: width .25s ease, height .25s ease, padding .25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.nav-hamburger span {
  display: block; height: 2px; width: 100%;
  background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drop-down panel */
.nav-mobile {
  display: none;
  margin: 8px 0 0;
  background: var(--navy); color: #fff;
  border-radius: 20px;
  padding: 12px;
  flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 16px; font-size: 15px; font-weight: 500;
  border-radius: 12px; color: #fff;
}
.nav-mobile a.on { background: rgba(255,255,255,.08); }
.nav-mobile .mobile-cta {
  margin-top: 6px; background: var(--accent); color: var(--navy);
  font-weight: 700; text-align: center; padding: 14px;
}

/* Desktop nav (md: >=860px) */
@media (min-width: 860px) {
  .nav-wrap {
    position: static;
    padding: 20px 20px 0;
    opacity: 1 !important;
  }
  body { padding-top: 0; }
  .nav-wrap.scrolled,
  .nav-wrap.scrolled:not(.menu-open) { padding: 20px 20px 0; }
  .nav-wrap.scrolled .nav,
  .nav-wrap.scrolled:not(.menu-open) .nav {
    padding: 16px 20px;
    background: var(--navy);
    backdrop-filter: none; -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .nav-wrap.scrolled .logo img,
  .nav-wrap.scrolled:not(.menu-open) .logo img { height: 76px; }
  .nav { padding: 16px 20px; gap: 16px; background: var(--navy); }
  .nav .logo { font-size: 13px; letter-spacing: 2px; gap: 10px; }
  .nav .logo img { height: 76px; }
  .nav .logo .logo-full { display: block; }
  .nav .logo .logo-q { display: none; }
  .nav .logo .dot { width: 28px; height: 28px; font-size: 12px; }
  .nav .links {
    display: flex; align-items: center; gap: 4px;
    background: rgba(255,255,255,.06);
    padding: 5px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.08);
  }
  .nav .links a {
    padding: 8px 12px; font-size: 12.5px; color: #fff;
    border-radius: 999px; font-weight: 500; white-space: nowrap;
  }
  .nav .links a.on { background: #000; }
  .nav .cta {
    padding: 8px 8px 8px 18px; font-size: 13px;
    background: var(--accent); color: var(--navy);
    border-radius: 999px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .nav .cta .arrow {
    width: 24px; height: 24px; border-radius: 50%;
    background: #000; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px;
  }
  .nav-hamburger, .nav-mobile { display: none !important; }
}

/* ---------- HERO CARD (dark rounded block) ---------- */
.hero-card {
  margin: 8px 12px 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.hero-card .hero-inner {
  padding: 36px 24px 44px;
  position: relative;
  min-height: auto;
}
.hero-card .eyebrow {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 16px;
}
.hero-card h1 {
  font-family: "Inter Tight", sans-serif;
  font-size: 40px; font-weight: 600; letter-spacing: -1.2px;
  line-height: 1; margin: 0 0 18px; max-width: 900px;
  text-wrap: balance;
}
.hero-card h1 .i {
  font-family: "Fraunces", serif; font-style: italic;
  font-weight: 400; color: var(--accent);
}
.hero-card p.lede {
  font-size: 15px; line-height: 1.5; opacity: 0.85;
  max-width: 560px; margin: 0 0 24px;
}
.hero-card .cta-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-card { margin: 12px 20px 40px; border-radius: 28px; }
  .hero-card .hero-inner { padding: 52px 40px 60px; min-height: 380px; }
  .hero-card .eyebrow { font-size: 12px; margin-bottom: 22px; }
  .hero-card h1 { font-size: 64px; letter-spacing: -2px; line-height: 0.98; margin-bottom: 22px; }
  .hero-card p.lede { font-size: 16px; margin-bottom: 32px; }
  .hero-card .cta-row { gap: 12px; }
}
@media (min-width: 1024px) {
  .hero-card .hero-inner { padding: 60px 56px 72px; min-height: 420px; }
  .hero-card h1 { font-size: 88px; letter-spacing: -2.5px; }
  .hero-card p.lede { font-size: 17px; line-height: 1.55; margin-bottom: 36px; }
}

/* Pill buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 10px 10px 10px 20px; border-radius: 999px;
  font-family: "Inter Tight", sans-serif; font-size: 13px;
  font-weight: 700; cursor: pointer; border: none;
  text-decoration: none;
  width: 100%;
}
.btn .arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: #000; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-ghost   { background: #fff; color: var(--navy); font-weight: 600; }
.btn-ink     { background: var(--navy); color: #fff; }
@media (min-width: 768px) {
  .btn { width: auto; gap: 12px; padding: 9px 10px 9px 22px; font-size: 14px; }
  .btn .arrow { width: 36px; height: 36px; font-size: 14px; }
}

/* ---------- GLOBAL ARROW → CHAIN-LINK ICON SWAP ----------
   Alle circular .arrow pills tonen een kettingschakel (hyperlink) icoon
   op elke viewport-grootte.
   Uitzondering: de nav Route/CTA knop → toont de diagonale pijl.
*/
.arrow {
  font-size: 0 !important;
  position: relative;
  line-height: 0;
}
.arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62%;
  height: 62%;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center;  mask-position: center;
  -webkit-mask-size: contain;     mask-size: contain;
  -webkit-mask-image: 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.2' stroke-linecap='round' stroke-linejoin='round'><path d='M10 13a5 5 0 0 0 7.07 0l3-3a5 5 0 0 0-7.07-7.07l-1.5 1.5'/><path d='M14 11a5 5 0 0 0-7.07 0l-3 3a5 5 0 0 0 7.07 7.07l1.5-1.5'/></svg>");
          mask-image: 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.2' stroke-linecap='round' stroke-linejoin='round'><path d='M10 13a5 5 0 0 0 7.07 0l3-3a5 5 0 0 0-7.07-7.07l-1.5 1.5'/><path d='M14 11a5 5 0 0 0-7.07 0l-3 3a5 5 0 0 0 7.07 7.07l1.5-1.5'/></svg>");
}

/* Pijl-uitzondering: alleen Route-knop in nav op locatie-pagina */
.nav-wrap[data-page="locatie"] .nav .cta .arrow::before,
.locatie-hero-cta .arrow::before,
.form-submit-cta .arrow::before {
  width: 55%;
  height: 55%;
  -webkit-mask-image: 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.4' stroke-linecap='round' stroke-linejoin='round'><line x1='7' y1='17' x2='17' y2='7'/><polyline points='8 7 17 7 17 16'/></svg>");
          mask-image: 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.4' stroke-linecap='round' stroke-linejoin='round'><line x1='7' y1='17' x2='17' y2='7'/><polyline points='8 7 17 7 17 16'/></svg>");
}
/* De mobile-arrow heeft geen ::before; override full sizing */
.nav-wrap[data-page="locatie"] .nav-mobile .mobile-cta .mobile-arrow {
  width: 22px; height: 22px;
}

/* Verberg nav CTA op formulier-pagina's (je bent er al) */
.nav-wrap[data-page="plan-event"] .nav .cta,
.nav-wrap[data-page="plan-business-event"] .nav .cta,
.nav-wrap[data-page="plan-event"] .nav-mobile .mobile-cta,
.nav-wrap[data-page="plan-business-event"] .nav-mobile .mobile-cta {
  display: none !important;
}
/* Zonder CTA: centreer de links-groep absoluut in de nav */
@media (min-width: 860px) {
  .nav-wrap[data-page="plan-event"] .nav,
  .nav-wrap[data-page="plan-business-event"] .nav {
    position: relative;
  }
  .nav-wrap[data-page="plan-event"] .nav .links,
  .nav-wrap[data-page="plan-business-event"] .nav .links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* Mobile CTA in the nav drop-down: rebuilt in chrome.js to use .mobile-arrow
   so we can paint the same external-link icon here. */
.nav-mobile .mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.nav-mobile .mobile-cta .mobile-arrow {
  width: 22px; height: 22px;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: 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.2' stroke-linecap='round' stroke-linejoin='round'><path d='M10 13a5 5 0 0 0 7.07 0l3-3a5 5 0 0 0-7.07-7.07l-1.5 1.5'/><path d='M14 11a5 5 0 0 0-7.07 0l-3 3a5 5 0 0 0 7.07 7.07l1.5-1.5'/></svg>");
          mask-image: 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.2' stroke-linecap='round' stroke-linejoin='round'><path d='M10 13a5 5 0 0 0 7.07 0l3-3a5 5 0 0 0-7.07-7.07l-1.5 1.5'/><path d='M14 11a5 5 0 0 0-7.07 0l-3 3a5 5 0 0 0 7.07 7.07l1.5-1.5'/></svg>");
}

/* Locatie-pagina: mobile Route knop krijgt pijl in plaats van ketting */
.nav-wrap[data-page="locatie"] .nav-mobile .mobile-cta .mobile-arrow {
  -webkit-mask-image: 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.4' stroke-linecap='round' stroke-linejoin='round'><line x1='7' y1='17' x2='17' y2='7'/><polyline points='8 7 17 7 17 16'/></svg>");
          mask-image: 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.4' stroke-linecap='round' stroke-linejoin='round'><line x1='7' y1='17' x2='17' y2='7'/><polyline points='8 7 17 7 17 16'/></svg>");
}

/* ---------- SECTIONS (cream body) ---------- */
.section {
  padding: 48px 20px; background: var(--paper); color: var(--ink);
}
.section.dark { background: var(--navy); color: #fff; }
.section-head {
  display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px;
  align-items: end;
}
@media (min-width: 768px) {
  .section { padding: 64px 40px; }
  .section-head { grid-template-columns: 180px 1fr; gap: 32px; margin-bottom: 40px; }
}
@media (min-width: 1024px) {
  .section { padding: 80px 56px; }
  .section-head { grid-template-columns: 200px 1fr; gap: 40px; margin-bottom: 48px; }
}

.eyebrow {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; opacity: 0.6;
  display: flex; gap: 12px; align-items: center;
}
.eyebrow .bar { width: 40px; height: 1px; background: currentColor; opacity: 0.5; }
h2.display {
  font-family: "Inter Tight", sans-serif;
  font-size: 34px; font-weight: 600; letter-spacing: -1px; line-height: 1;
  margin: 0;
}
h2.display .italic {
  font-family: "Fraunces", serif; font-weight: 400;
  color: inherit;
}
@media (min-width: 768px) { h2.display { font-size: 44px; letter-spacing: -1.4px; } }
@media (min-width: 1024px) { h2.display { font-size: 56px; letter-spacing: -1.8px; } }

.page-header { display: none; }

/* ---------- FOOTER ---------- */
.footer-wrap { padding: 0 12px 12px; }
.footer {
  background: var(--navy); color: #fff;
  border-radius: 20px;
  padding: 36px 24px 24px;
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
.footer .brand {
  font-family: "Fraunces", serif; font-size: 28px; font-style: italic;
  margin-bottom: 10px;
}
.footer .brand img {
  display: block;
  height: 56px; width: auto;
  margin-bottom: 4px;
}
.footer .brand .dot { color: var(--accent); }
.footer p { font-size: 14px; opacity: 0.7; max-width: 320px; line-height: 1.55; margin: 0; }
.footer h4 {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  opacity: 0.55; margin: 0 0 14px; font-weight: 600;
}
.footer a { display: block; font-size: 14px; margin-bottom: 8px; opacity: 0.85; color:#fff; }
.footer a:hover { color: var(--accent); opacity: 1; }
.footer-bottom {
  padding: 18px 0 0; margin: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px; opacity: 0.55;
  display: flex; flex-direction: column; gap: 6px;
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .footer-wrap { padding: 0 20px 20px; }
  .footer { border-radius: 28px; padding: 44px 40px 28px; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
  .footer .brand { font-size: 32px; }
  .footer .brand img { height: 64px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .footer { padding: 56px 56px 32px; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer .brand { font-size: 36px; margin-bottom: 12px; }
  .footer .brand img { height: 72px; }
  .footer h4 { margin-bottom: 16px; }
  .footer-bottom { padding: 18px 56px 0; margin: 32px -56px -32px; }
}

/* ---------- COMMON HELPERS ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid currentColor; border-radius: 999px;
}
.card-cream {
  background: var(--paper); color: var(--ink);
  border-radius: 20px; padding: 24px;
}
.card-dark {
  background: var(--navy); color: #fff;
  border-radius: 20px; padding: 24px;
}
@media (min-width: 768px) {
  .card-cream, .card-dark { padding: 32px; }
}

/* ---------- GLOBAL RESPONSIVE OVERRIDES ----------
   Veel pages gebruiken inline style="display:grid;grid-template-columns:..."
   Deze rules forceren 1-kolom op mobiel zonder de HTML aan te raken. */
@media (max-width: 767px) {
  /* Alle grids met inline template-columns → 1 kolom */
  [style*="display:grid"],
  [style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }
  /* Alle inline padding 40px / 56px / 60px → kleiner */
  [style*="padding:40px"], [style*="padding: 40px"],
  [style*="padding:56px"], [style*="padding: 56px"],
  [style*="padding:60px"], [style*="padding: 60px"],
  [style*="padding:80px"], [style*="padding: 80px"] {
    padding: 24px !important;
  }
  /* Hero-inner met inline background + grid → geen vaste min-height */
  .hero-inner[style*="grid"] {
    display: block !important;
    padding: 32px 22px 40px !important;
    min-height: auto !important;
  }
  /* Grote serif headings (inline font-size 72-96px) terugbrengen */
  h1[style*="font-size:88px"], h1[style*="font-size: 88px"],
  h2[style*="font-size:88px"], h2[style*="font-size: 88px"],
  h2[style*="font-size:72px"], h2[style*="font-size: 72px"],
  h2[style*="font-size:96px"], h2[style*="font-size: 96px"],
  h1[style*="font-size:72px"], h1[style*="font-size: 72px"] {
    font-size: 40px !important;
    letter-spacing: -1px !important;
    line-height: 1 !important;
  }
  /* Medium inline headings */
  div[style*="font-size:52px"], div[style*="font-size: 52px"],
  div[style*="font-size:48px"], div[style*="font-size: 48px"] {
    font-size: 32px !important;
  }
  /* Height-vaste blokken (image/hero splits) onbegrensd maken */
  [style*="height:320px"], [style*="height: 320px"],
  [style*="height:400px"], [style*="height: 400px"],
  [style*="height:460px"], [style*="height: 460px"] {
    height: auto !important;
    min-height: 200px;
  }
  /* Form-wrap (lessen page) kleiner maken */
  .form-wrap { padding: 24px 12px 48px !important; }
  .form-card { padding: 28px 22px !important; border-radius: 18px !important; }
  .form-card h2 { font-size: 28px !important; letter-spacing: -.5px !important; }
  .form-switch { padding: 0 12px !important; gap: 6px !important; }
  .form-switch button { padding: 8px 14px !important; font-size: 12px !important; }
  .hero-lesson-inner {
    display: block !important;
    padding: 36px 22px 44px !important;
    min-height: auto !important;
  }
  .hero-lesson-inner h1 {
    font-size: 40px !important;
    letter-spacing: -1px !important;
  }
  /* Clinic/Event list-items (grid 80px 1fr 320px 160px) */
  [style*="grid-template-columns:80px"] {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  /* FAQ layout */
  .faq-q { gap: 16px !important; }
  .faq-q h3 { font-size: 20px !important; }
}

/* ===========================================================
   GOLD ACCENT — eyebrows op navy hero/section + nav CTA's
   We re-declareren --accent lokaal naar goudgeel zodat alle
   bestaande inline style="color:var(--accent)" + bar-styles
   automatisch de gele tint krijgen op deze plekken.
   =========================================================== */

/* 1. Page eyebrows op donkere achtergrond — bv. "WELKOM BIJ...",
      "VOOR BEDRIJVEN", "EVENTS", "PLAN EEN EVENT", "FAQ", etc. */
.hero-card .eyebrow,
.hero-card .hero-inner > div > .eyebrow,
.hero-card .hero-inner .eyebrow,
.section.dark .eyebrow {
  --accent: var(--accent-gold);
  color: var(--accent-gold) !important;
  opacity: 1 !important;
}
.hero-card .eyebrow .bar,
.section.dark .eyebrow .bar {
  background: var(--accent-gold) !important;
  opacity: 1 !important;
}

/* 1b. Voeg een streepje-prefix toe aan eyebrows die er nog geen hebben.
       Toegepast op alle hero/section eyebrows (donker + licht).
       :has() check voorkomt dubbel streepje wanneer .bar al bestaat. */
.hero-card .eyebrow:not(:has(.bar))::before,
.hero-card .hero-inner .eyebrow:not(:has(.bar))::before,
.section .eyebrow:not(:has(.bar))::before,
.section.dark .eyebrow:not(:has(.bar))::before,
.hero-lesson-inner .eyebrow:not(:has(.bar))::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  vertical-align: middle;
}
/* Op donkere hero's: streepje volledig opaak in goudkleur */
.hero-card .eyebrow:not(:has(.bar))::before,
.hero-card .hero-inner .eyebrow:not(:has(.bar))::before,
.section.dark .eyebrow:not(:has(.bar))::before,
.hero-lesson-inner .eyebrow:not(:has(.bar))::before {
  opacity: 1;
  background: var(--accent-gold);
}
/* Eyebrows zijn flex-container — display goed zetten zodat ::before in lijn staat */
.hero-card .eyebrow,
.hero-card .hero-inner .eyebrow,
.section .eyebrow,
.section.dark .eyebrow,
.hero-lesson-inner .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 2. Nav CTA-knop rechtsboven (Boek een les / Event / Clinic / Route) */
.nav .cta {
  background: var(--accent-gold) !important;
  color: var(--navy) !important;
}
.nav-mobile .mobile-cta {
  background: var(--accent-gold) !important;
  color: var(--navy) !important;
}
/* Behoud zwarte arrow-cirkel binnen de gele knop */
.nav .cta .arrow {
  background: var(--navy);
  color: #fff;
}

