/* =============================================================
   BlueClue Consulting — style.css
   One-page website. Uitsluitend officiële BlueClue-kleuren:
   #000291 (diepblauw) · #0000FF (helderblauw) · #787878 (grijs)
   + functionele neutralen wit/zwart-transparant.
   Typografie: Bitter (self-hosted). Layout: Flexbox + CSS Grid.
   ============================================================= */

/* -------------------------------------------------------------
   1. FONTS (self-hosted Bitter — SIL Open Font License)
   ------------------------------------------------------------- */
@font-face {
  font-family: "Bitter";
  src: url("/assets/fonts/bitter/bitter-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter";
  src: url("/assets/fonts/bitter/bitter-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter";
  src: url("/assets/fonts/bitter/bitter-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------------
   2. DESIGN TOKENS (CSS variables)
   ------------------------------------------------------------- */
:root {
  /* Kleuren — officiële huisstijl */
  --deep:   #000291;   /* diepblauw: tekst + donkere surfaces */
  --bright: #0000FF;   /* helderblauw: accent, interactie */
  --grey:   #787878;   /* secundaire tekst */
  --white:  #ffffff;

  /* Rollen */
  --ink: var(--deep);
  --accent: var(--bright);
  /* Secundaire tekst: blauwgrijze tint van #000291. Puur #787878 haalt op wit
     net niet de WCAG AA-norm (4.4:1); deze tint wel (~5:1) en blijft in-merk. */
  --muted: rgba(0, 2, 145, 0.64);
  --grey-brand: var(--grey);
  --surface: var(--white);
  --surface-dark: var(--deep);
  --on-dark: var(--white);
  --hairline: rgba(0, 2, 145, 0.08);
  --hairline-dark: rgba(255, 255, 255, 0.18);

  /* Gradient — uitsluitend tussen de twee officiële blauwen */
  --gradient-brand: linear-gradient(150deg, var(--deep) 0%, var(--bright) 160%);

  /* Typografie */
  --font: "Bitter", Georgia, "Times New Roman", serif;
  --fs-display: clamp(2.5rem, 1.4rem + 4.6vw, 4rem);      /* 40 → 64 */
  --fs-h2:      clamp(1.75rem, 1.2rem + 2.3vw, 2.5rem);   /* 28 → 40 */
  --fs-h3:      clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);   /* 20 → 24 */
  --fs-body:    clamp(1.0625rem, 1rem + 0.25vw, 1.125rem);/* 17 → 18 */
  --fs-label:   0.875rem;                                 /* 14 */
  --lh-tight: 1.12;
  --lh-snug: 1.25;
  --lh-body: 1.7;
  --measure: 40rem;        /* leesmaat lopende tekst */
  --measure-wide: 52rem;

  /* Spacing-schaal (basis 8px) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --space-9: 8rem;
  --space-10: 10rem;

  /* Sectieritme — royale, "Apple-waardige" witruimte */
  --section-py: clamp(4.5rem, 3rem + 9vw, 10rem);
  --container: 1200px;
  --pad-inline: 1.5rem;

  /* Vormtaal */
  --radius: 12px;
  --radius-sm: 8px;

  /* Blauw getinte schaduwen (nooit zwart) */
  --shadow-1: 0 1px 2px rgba(0, 2, 145, 0.05), 0 2px 10px rgba(0, 2, 145, 0.06);
  --shadow-2: 0 10px 30px rgba(0, 2, 145, 0.10);
  --shadow-3: 0 18px 50px rgba(0, 2, 145, 0.14);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-micro: 150ms;
  --dur-base: 300ms;
  --dur-reveal: 600ms;
}

/* -------------------------------------------------------------
   3. RESET & BASIS
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;   /* offset voor sticky header */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }

h1, h2 { font-weight: 300; line-height: var(--lh-tight); letter-spacing: -0.02em; }
h3 { font-weight: 500; line-height: var(--lh-snug); letter-spacing: -0.005em; }

p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: rgba(0, 0, 255, 0.14); color: var(--deep); }

/* Skip-link */
.skip-link {
  position: absolute;
  left: var(--space-3);
  top: -4rem;
  z-index: 100;
  background: var(--deep);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top var(--dur-micro) var(--ease);
}
.skip-link:focus { top: var(--space-3); }

/* Utility: visueel verborgen maar toegankelijk */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------
   4. LAYOUT-HELPERS
   Content uitgelijnd op de container, achtergrond full-bleed.
   ------------------------------------------------------------- */
.site-header,
.section,
.hero,
.site-footer {
  padding-inline: max(var(--pad-inline), calc((100% - var(--container)) / 2));
}

/* -------------------------------------------------------------
   5. HEADER / NAVIGATIE
   ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-block: var(--space-3);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}

.site-header__logo { display: inline-flex; line-height: 0; }
.site-header__logo img { width: auto; height: 38px; }

/* Hamburger-knop wordt door main.js geactiveerd; zonder JS blijft de nav zichtbaar */
.nav-toggle {
  display: none;               /* main.js zet dit op inline-flex onder de mobiele breakpoint */
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -7px; left: 0; }
.nav-toggle__bars::after  { position: absolute; top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-7px) rotate(-45deg); }

/* Mobiel: geopende nav stapelt netjes verticaal */
@media (max-width: 47.99rem) {
  .site-nav { width: 100%; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(var(--space-3), 2vw, var(--space-5));
  padding: 0;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: var(--fs-label);
  letter-spacing: 0.01em;
  position: relative;
  padding-block: 0.25rem;
  transition: color var(--dur-micro) var(--ease);
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.site-nav a:not(.nav-cta):hover { color: var(--accent); }
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--dur-micro) var(--ease), transform var(--dur-micro) var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); }

/* -------------------------------------------------------------
   6. KNOPPEN
   ------------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: inherit;
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1;
  padding: 1em 1.9em;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-micro) var(--ease),
              box-shadow var(--dur-micro) var(--ease),
              background var(--dur-micro) var(--ease),
              color var(--dur-micro) var(--ease);
}
.button--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-1);
}
.button--primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-2); }
.button--primary:active { transform: translateY(0); box-shadow: var(--shadow-1); }

/* Op donkere kantelpunt-secties: witte knop met diepblauwe tekst (sterk contrast) */
.section--kantelpunt .button--primary {
  background: var(--white);
  color: var(--deep);
}

/* -------------------------------------------------------------
   7. SECTIES (basisritme)
   ------------------------------------------------------------- */
.section { padding-block: var(--section-py); }

/* Lopende tekst op leesmaat, links uitgelijnd (rustig, zelfverzekerd) */
.section > h2,
.section > p,
.section__intro,
.werkwijze__slot,
.cta__mail { max-width: var(--measure); }

.section > h2 { margin-bottom: var(--space-5); }
.section > p + p { margin-top: var(--space-4); }

.section__intro {
  color: var(--muted);
  margin-bottom: var(--space-6);
}

/* Kantelpunt: diepblauw vlak, witte tekst, subtiel merkverloop */
.section--kantelpunt {
  background: var(--surface-dark);
  background-image: var(--gradient-brand);
  color: var(--on-dark);
}
.section--kantelpunt h2 { color: var(--on-dark); }
.section--kantelpunt a { color: var(--white); }

/* -------------------------------------------------------------
   8. HERO
   ------------------------------------------------------------- */
.hero {
  min-height: 100vh;        /* fallback voor oudere browsers */
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-5);
  padding-block: clamp(7rem, 6rem + 8vw, 11rem) var(--section-py);
}
.hero > * { max-width: 46rem; }

.hero__eyebrow {
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero h1 { font-size: var(--fs-display); max-width: 20ch; line-height: 1.05; letter-spacing: -0.028em; }
.hero__subtitel {
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.4rem);
  color: var(--ink);
  max-width: 40ch;
}
.hero__slogan {
  font-size: var(--fs-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.hero__actie { margin-top: var(--space-5); }

/* -------------------------------------------------------------
   9. DIENSTEN
   ------------------------------------------------------------- */
.diensten__lijst {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: var(--space-5);
  margin-top: var(--space-3);
}
.dienst {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.dienst:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: rgba(0, 0, 255, 0.20); }
.dienst h3 { font-size: var(--fs-h3); margin-bottom: var(--space-2); }
.dienst__rol {
  color: var(--muted);
  font-size: var(--fs-label);
  margin-bottom: var(--space-3);
}

/* De vier pijlers */
.pijlers { margin-top: var(--space-8); }
.pijlers__titel {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-5);
}
.pijlers__lijst {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: var(--space-5);
}
.pijler {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}
.pijler img { width: 48px; height: 48px; }
.pijler__naam { font-weight: 500; font-size: 1.15rem; }
.pijler__uitleg { color: var(--muted); font-size: var(--fs-label); }

/* -------------------------------------------------------------
   10. WERKWIJZE (genummerde stappen)
   ------------------------------------------------------------- */
.stappen {
  list-style: none;
  padding: 0;
  counter-reset: stap;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: var(--space-6);
  margin-top: var(--space-3);
}
.stap { position: relative; padding-top: var(--space-6); }
.stap::before {
  counter-increment: stap;
  content: counter(stap);
  position: absolute;
  top: 0; left: 0;
  width: 2.5rem; height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-weight: 500;
  font-size: 1.05rem;
  box-shadow: var(--shadow-1);
}
.stap__titel { font-size: var(--fs-h3); margin-bottom: var(--space-2); }

.werkwijze__slot {
  margin-top: var(--space-7);
  font-size: 1.2rem;
  color: var(--ink);
}

/* -------------------------------------------------------------
   11. OVER JOOST
   ------------------------------------------------------------- */
.section--over {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}
.section--over > h2 { grid-column: 1 / -1; }
.over__portret {
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  width: 100%;
  max-width: 24rem;
}
.over__tekst { max-width: var(--measure); }
.over__tekst p + p { margin-top: var(--space-4); }
.over__profiellink { font-weight: 500; }
.over__profiellink a { text-decoration: none; }
.over__profiellink a:hover { text-decoration: underline; }

@media (min-width: 60rem) {
  .section--over {
    grid-template-columns: minmax(18rem, 24rem) 1fr;
    gap: var(--space-8);
    column-gap: var(--space-8);
  }
  .section--over > h2 { grid-column: 1 / -1; }
}

/* -------------------------------------------------------------
   12. CTA
   ------------------------------------------------------------- */
.cta__actie { margin-top: var(--space-5); }
.cta__mail { margin-top: var(--space-4); font-size: var(--fs-label); }

/* -------------------------------------------------------------
   13. CONTACT
   ------------------------------------------------------------- */
.section--contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.section--contact > h2,
.section--contact > p { grid-column: 1 / -1; max-width: var(--measure); }

.contact__gegevens { font-style: normal; }
.contact__gegevens ul { list-style: none; padding: 0; display: grid; gap: var(--space-2); }
.contact__gegevens a { color: var(--accent); text-decoration: none; }
.contact__gegevens a:hover { text-decoration: underline; }

.contact__form {
  display: grid;
  gap: var(--space-4);
  max-width: var(--measure);
}
.form-veld { display: grid; gap: var(--space-2); }
.form-veld label { font-weight: 500; font-size: var(--fs-label); }
.form-veld input,
.form-veld textarea {
  font-family: inherit;
  font-size: var(--fs-body);
  color: var(--ink);
  padding: 0.8em 0.9em;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color var(--dur-micro) var(--ease), box-shadow var(--dur-micro) var(--ease);
}
.form-veld input:focus,
.form-veld textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 0, 255, 0.15);
}
.form-veld textarea { resize: vertical; }
.form-hint { color: var(--muted); font-size: var(--fs-label); }
.form-honeypot { display: none; }
.form-status { font-weight: 500; min-height: 1.5em; }

@media (min-width: 60rem) {
  .section--contact {
    grid-template-columns: 1fr 1fr;
    column-gap: var(--space-8);
    align-items: start;
  }
}

/* -------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------- */
.site-footer {
  background: var(--surface-dark);
  color: var(--on-dark);
  padding-block: var(--space-8) var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.site-footer__merk img { height: 38px; width: auto; }
.site-footer__slogan {
  margin-top: var(--space-3);
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.05em;
}
.site-footer__contact ul,
.site-footer__links ul { list-style: none; padding: 0; display: grid; gap: var(--space-2); }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer__copyright {
  grid-column: 1 / -1;
  border-top: 1px solid var(--hairline-dark);
  padding-top: var(--space-4);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-label);
}

@media (min-width: 48rem) {
  .site-footer {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-8);
  }
  .site-footer__merk { grid-column: 1 / -1; }
}
@media (min-width: 60rem) {
  .site-footer { grid-template-columns: 2fr 1fr 1fr; }
  .site-footer__merk { grid-column: auto; }
}

/* -------------------------------------------------------------
   15. ANIMATIES (subtiel) — respecteert prefers-reduced-motion
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {

  /* Hero: rustige, gestaggerde fade-up bij laden */
  .hero > * {
    opacity: 0;
    animation: fade-up var(--dur-reveal) var(--ease) forwards;
  }
  .hero__eyebrow  { animation-delay: 0.05s; }
  .hero h1        { animation-delay: 0.15s; }
  .hero__subtitel { animation-delay: 0.28s; }
  .hero__slogan   { animation-delay: 0.40s; }
  .hero__actie    { animation-delay: 0.52s; }

  /* Scroll-reveal per sectie (progressive enhancement, alleen waar ondersteund) */
  @supports (animation-timeline: view()) {
    .section {
      animation: reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 38%;
    }
  }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes reveal {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* -------------------------------------------------------------
   16. PROFIELPAGINA (profiel.html)
   Herbruikt bestaande tokens en componenten (.dienst, .stap, .section--over).
   Nieuwe, generieke bouwstenen hieronder zijn ook elders herbruikbaar.
   ------------------------------------------------------------- */

/* Intro: rol-chips onder de titel */
.profiel-intro__rollen {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.profiel-intro__rollen li {
  font-size: var(--fs-label);
  color: var(--muted);
  padding: 0.4em 0.9em;
  border: 1px solid var(--hairline);
  border-radius: 999px;
}

/* Generieke kaart-grid (herbruikbaar voor expertise, kernkrachten, waarden, outcomes, ecosysteem) */
.kaartgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: var(--space-5);
  margin-top: var(--space-3);
}
.kaartgrid--compact { grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); }
.kaart {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-1);
  color: var(--ink);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.kaart:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: rgba(0, 0, 255, 0.20); }
.kaart h3 { font-size: 1.1rem; margin-bottom: var(--space-2); color: var(--ink); }
.kaart p { color: var(--muted); font-size: var(--fs-label); margin: 0; }

/* Citaatblok ("Doel") */
.profiel-doel {
  border-left: 3px solid var(--accent);
  padding-left: var(--space-5);
  max-width: var(--measure);
  margin-top: var(--space-3);
}
.profiel-doel p { font-size: 1.2rem; font-weight: 300; color: var(--ink); }

/* Streeplijst: compacte lijst met accentstreepje (bv. "manier van werken") */
.streeplijst {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-3);
  max-width: var(--measure-wide);
}
.streeplijst li {
  position: relative;
  padding-left: var(--space-4);
}
.streeplijst li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 0.85em; height: 2px;
  background: var(--accent);
}

/* Vinklijst: checklist (bv. "ik maak impact door") */
.vinklijst {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.vinklijst li {
  position: relative;
  padding-left: var(--space-5);
  max-width: var(--measure-wide);
}
.vinklijst li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.3em;
  width: 1.1em; height: 1.1em;
  border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M13.7 3.3a1 1 0 0 1 0 1.4l-6.5 6.5a1 1 0 0 1-1.4 0L2.3 7.7a1 1 0 1 1 1.4-1.4L6.5 9.1l5.8-5.8a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E") center / 0.65em no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M13.7 3.3a1 1 0 0 1 0 1.4l-6.5 6.5a1 1 0 0 1-1.4 0L2.3 7.7a1 1 0 1 1 1.4-1.4L6.5 9.1l5.8-5.8a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E") center / 0.65em no-repeat;
}

/* Chiplijst: pijlen/tags op een regel (bv. technologie-mindset kernwoorden) */
.chiplijst {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.chiplijst li {
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5em 1em;
  border-radius: 999px;
  background: rgba(0, 0, 255, 0.08);
  color: var(--deep);
}
.section--kantelpunt .chiplijst li { background: rgba(255, 255, 255, 0.16); color: var(--white); }

/* Sectie-eyebrow (label boven een kop, bv. "Mijn reis") */
.profiel-eyebrow {
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-2);
}

/* Terugknop onderaan de pagina */
.profiel-terug { margin-top: var(--space-5); }
