:root {
  /* Brandkleuren */
  --warm-sand: #EBC3AB;
  --linen: #FFEDE2;
  --cotton: #FFF8F5;
  --tan: #FDBC98;
  --guava: #FFB59C;
  --laurel: #D7DEDA;
  --sea: #8DAB88;
  --pink: #FAC9DC;
  --iris: #BA97DB;
  --cream: #FFFCC0;

  --ink: #2b2433;
  --muted: #6c6577;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;

  --radius: 28px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background: var(--cotton);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* ---------------- NAV ---------------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
header.scrolled {
  background: rgba(255,248,245,0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(80,50,90,0.08);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo {
  display: block;
  height: 38px;
  width: auto;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
header.scrolled .nav-logo {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.3s ease, opacity 0.3s ease;
}
nav a:hover { opacity: 0.7; }
nav a.active { color: #fff; font-weight: 600; }
header.scrolled nav a { color: var(--muted); }
header.scrolled nav a:hover { color: var(--ink); opacity: 1; }
header.scrolled nav a.active { color: var(--ink); font-weight: 600; }

/* hamburgerknop (alleen mobiel) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
header.scrolled .nav-toggle span { background: var(--ink); }
header.nav-open .nav-toggle span { background: var(--ink); }
header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}
.btn-pink {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(250,201,220,0.5);
}
.btn-pink:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(250,201,220,0.65); }
.btn-ghost {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,0.3); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(43,36,51,0.3); }
.btn-linkedin {
  background: #0A66C2;
  color: #fff;
  box-shadow: 0 12px 26px rgba(10,102,194,0.32);
}
.btn-linkedin:hover {
  transform: translateY(-3px);
  background: #004182;
  box-shadow: 0 18px 34px rgba(10,102,194,0.42);
}

/* ---------------- HERO (home) ---------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 44px;
  padding-bottom: 40px;
  background:
    radial-gradient(100% 70% at 15% 4%, rgba(176,140,214,0.75) 0%, rgba(176,140,214,0) 60%),
    radial-gradient(95% 80% at 96% 28%, rgba(255,181,156,0.6) 0%, rgba(255,181,156,0) 55%),
    linear-gradient(165deg, #b193d6 0%, #c0a0d3 38%, var(--guava) 78%, var(--warm-sand) 100%);
  overflow: hidden;
}
/* zwevende kleurvlekken */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}
.blob.b1 { width: 420px; height: 420px; background: var(--cream); top: 8%; left: -90px; }
.blob.b2 { width: 360px; height: 360px; background: var(--sea); bottom: 6%; right: -70px; opacity: 0.3; }
.blob.b3 { width: 300px; height: 300px; background: var(--pink); top: 40%; left: 55%; opacity: 0.35; }

.hero-stage {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  height: min(94vh, 880px);
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* groot logo achter haar */
.hero-logo {
  position: absolute;
  left: 50%;
  top: 7%;
  transform: translateX(-50%);
  width: min(95%, 1160px);
  height: 52%;
  z-index: 1;
  background: url("logo-cream.png") no-repeat center / contain;
  filter: drop-shadow(0 8px 22px rgba(90,55,110,0.2));
  opacity: 0.97;
}

/* uitgeknipte persoon, vóór het logo */
.hero-figure {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  height: 69%;
  z-index: 2;
  filter: drop-shadow(0 22px 18px rgba(40,30,46,0.22));
  -webkit-mask: linear-gradient(to bottom, #000 90%, transparent 100%);
          mask: linear-gradient(to bottom, #000 90%, transparent 100%);
}
.hero-figure img {
  height: 100%;
  width: auto;
  display: block;
}

/* taglines links/rechts onderin */
.hero-tag {
  position: absolute;
  bottom: 16%;
  z-index: 3;
  max-width: 230px;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(80,40,90,0.35);
}
.hero-tag.left { left: 4%; text-align: left; max-width: 380px; }
.hero-tag.right { right: 4%; text-align: right; }
.hero-tag em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: #fff;
}

.scroll-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform 0.4s ease;
}
.scroll-badge:hover { transform: translateX(-50%) scale(1.08); }
.scroll-badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: badge-spin 20s linear infinite;
  filter: drop-shadow(0 1px 4px rgba(30,15,40,0.6));
}
.scroll-badge:hover .scroll-badge-ring { animation-duration: 9s; }
.scroll-badge-ring text {
  fill: #fff;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 500;
  text-transform: uppercase;
}
.scroll-badge-circle {
  fill: none;
  stroke: rgba(255,255,255,0.4);
  stroke-width: 0.8;
}
.scroll-badge-arrow {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(30,15,40,0.6);
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes badge-spin { to { transform: rotate(360deg); } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
.wave { display: inline-block; transform-origin: 70% 70%; animation: wave 2.4s ease-in-out infinite; }
@keyframes wave {
  0%, 60%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
}
@media (prefers-reduced-motion: reduce) { .wave { animation: none; } }

/* ---------------- CTA-KNOP (Plan een kennismaking) ---------------- */
.btn-plan {
  gap: 8px;
  padding: 10px 10px 10px 30px;
  background: #4a4157;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 34px rgba(74,65,87,0.3);
}
.btn-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(43,36,51,0.42);
}
.btn-plan .btn-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}
.btn-plan:hover .btn-arrow {
  transform: translateX(4px);
  background: var(--pink);
}

/* ---------------- PAGE HERO (binnenpagina's) ---------------- */
.page-hero {
  position: relative;
  padding: 150px 24px 72px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(100% 80% at 15% 0%, rgba(176,140,214,0.7) 0%, rgba(176,140,214,0) 60%),
    radial-gradient(90% 80% at 95% 18%, rgba(255,181,156,0.55) 0%, rgba(255,181,156,0) 55%),
    linear-gradient(165deg, #b193d6 0%, #c0a0d3 45%, var(--guava) 100%);
}
.profile-avatar {
  width: 148px;
  height: 148px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.9);
  box-shadow: 0 18px 44px rgba(80,40,90,0.32);
}
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}
.page-hero .kicker { color: #fff; justify-content: center; }
.page-hero .kicker::before { background: rgba(255,255,255,0.85); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  text-shadow: 0 6px 30px rgba(60,30,70,0.3);
}
.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.06rem;
  opacity: 0.96;
}
.page-hero-cta { margin-top: 28px; }

/* speels rond video-bubbeltje (Over mij) */
.card-video { position: relative; }
.about-video {
  position: absolute;
  top: -32px;
  right: -32px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 5;
  pointer-events: none;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--guava), 0 14px 30px rgba(60,30,70,0.26);
  background: center / cover no-repeat url('https://fast.wistia.com/embed/medias/6jii0tzyrp/swatch');
}
/* render intern groot (scherpe Wistia-resolutie) en schaal terug,
   zodat je de normale 16:9-uitsnede ziet i.p.v. een ingezoomd midden */
.about-video wistia-player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 412px;
  height: 232px;
  transform: translate(-50%, -50%) scale(0.5);
  transform-origin: center;
  filter: blur(0.7px);
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) {
  .about-video { animation: none; }
}

/* langwerpig video-kadertje (Over mij, linker blok) */
.about-strip {
  position: absolute;
  left: -26px;
  bottom: -26px;
  width: 188px;
  height: 106px;
  border-radius: 16px;
  overflow: hidden;
  z-index: 5;
  pointer-events: none;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--iris), 0 14px 30px rgba(60,30,70,0.26);
  background: center / cover no-repeat url('https://fast.wistia.com/embed/medias/mxv9na9mq2/swatch');
}
.about-strip wistia-player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 412px;
  height: 232px;
  transform: translate(-50%, -50%) scale(0.466);
  transform-origin: center;
  filter: blur(0.7px);
}
@media (prefers-reduced-motion: reduce) {
  .about-strip { animation: none; }
}

/* ---------------- STATEMENT ---------------- */
.statement {
  background: linear-gradient(180deg, var(--linen) 0%, var(--cotton) 100%);
  padding: clamp(80px, 12vw, 150px) 24px;
  text-align: center;
}
.statement-inner { max-width: 940px; margin: 0 auto; }
.statement h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 36px;
  color: var(--ink);
}
.hl { position: relative; white-space: nowrap; }
.hl-iris { color: var(--iris); }
.hl-sea  { color: var(--sea); }
.hl-tan  { color: #e8965f; }
.hl-pink { color: #e98aae; }
.statement p.sub {
  max-width: 640px;
  margin: 0 auto 38px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------------- LEVEL-UP BAND ---------------- */
.band {
  position: relative;
  padding: clamp(90px, 14vw, 170px) 24px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.band::before {
  content: "";
  position: absolute; inset: 0;
  background: url("231010-AC-Kees_Winkelman-8173.jpg") center 32% / cover no-repeat;
  transform: scale(1.08);
  z-index: -2;
}
.band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(255,181,156,0.92) 0%, rgba(186,151,219,0.78) 55%, rgba(141,171,136,0.7) 100%);
  z-index: -1;
}
.band-over::before {
  background-image: url("Ozveld-9127.jpg");
  background-position: center 38%;
}
/* bewegende achtergrond (Diensten) */
.band-diensten::before { display: none; }
.band-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background: #5e4a6b;
}
.band-video iframe,
.band-video wistia-player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 0;
}
/* laad-placeholder (voor de component klaar is) */
wistia-player[media-id='i7warq2dl1']:not(:defined) {
  display: block;
  width: 100%;
  height: 100%;
  background: center / cover no-repeat url('https://fast.wistia.com/embed/medias/i7warq2dl1/swatch');
  filter: blur(6px);
}
/* bediening volledig verbergen, incl. geluid-/unmute-knop rechtsboven */
.band-video wistia-player::part(control-bar),
.band-video wistia-player::part(big-play-button),
.band-video wistia-player::part(play-button),
.band-video wistia-player::part(volume-control),
.band-video wistia-player::part(unmute-button),
.band-video wistia-player::part(audio-description-button),
.band-video wistia-player::part(playback-controls) {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.band-inner { max-width: 1180px; margin: 0 auto; }
.band .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.band h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  text-shadow: 0 6px 30px rgba(60,30,70,0.3);
}
.band h2 em { font-style: italic; color: var(--cream); }
.band p {
  max-width: 540px;
  font-size: 1.08rem;
  margin: 0 0 34px;
  text-shadow: 0 2px 14px rgba(60,30,70,0.3);
}

/* ---------------- SECTION SHELL ---------------- */
.section { padding: clamp(70px, 10vw, 130px) 24px; }
.section-wrap { max-width: 1180px; margin: 0 auto; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--iris);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--iris);
  border-radius: 2px;
}
.section h2.title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--ink);
}
.section .lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
  margin: 0 0 48px;
}
.bg-linen { background: var(--linen); }
.bg-cotton { background: var(--cotton); }
.bg-sand {
  background: linear-gradient(180deg, var(--cotton) 0%, #fbe7da 100%);
}

/* over mij */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 36px;
  align-items: stretch;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: 0 20px 50px rgba(120,90,130,0.08);
  border: 1px solid rgba(186,151,219,0.12);
}
.card.tinted { background: linear-gradient(160deg, #fff 0%, var(--linen) 100%); }
.card p { color: var(--muted); margin: 0; font-size: 1.04rem; }
.card p strong { color: var(--ink); font-weight: 600; }
.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 18px;
}
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 1rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 0 4px rgba(141,171,136,0.18);
}

/* diensten */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.service {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 16px 40px rgba(120,90,130,0.07);
  border: 1px solid rgba(186,151,219,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service:hover { transform: translateY(-8px); box-shadow: 0 28px 56px rgba(120,90,130,0.16); }
.service .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--iris);
  margin-bottom: 14px;
}
.service h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  margin: 0 0 12px;
  color: var(--ink);
}
.service p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.service:nth-child(2) .num { color: var(--sea); }
.service:nth-child(3) .num { color: #e98aae; }
.service:nth-child(4) .num { color: #e8965f; }
.service:nth-child(5) .num { color: var(--iris); }

/* portfolio cases */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-bottom: 30px;
}
.case {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(186,151,219,0.12);
  box-shadow: 0 16px 40px rgba(120,90,130,0.07);
}
.case .subtle {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--iris);
  font-size: 0.76rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.case h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 14px;
}
.case p { color: var(--muted); margin: 0 0 18px; font-size: 0.98rem; }
.tags { display: flex; flex-wrap: wrap; gap: 9px; }
.tag {
  background: var(--cream);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.gallery figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(120,90,130,0.12);
  aspect-ratio: 4 / 5;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery figure:hover img { transform: scale(1.06); }

/* ---------------- CV / ERVARING TIJDLIJN ---------------- */
.cv-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto 30px;
}
.cv-intro .profile-avatar { margin: 0 0 18px; }
.btn-li {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(120,90,130,0.14);
  border: 1px solid rgba(186,151,219,0.18);
  gap: 9px;
}
.btn-li:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(120,90,130,0.22); }
.btn-li img { height: 19px; width: auto; display: block; }
.cv-list {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
.cv-item {
  display: grid;
  grid-template-columns: 165px 1fr 118px;
  gap: 26px;
  align-items: start;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 34px;
  border: 1px solid rgba(186,151,219,0.12);
  box-shadow: 0 14px 36px rgba(120,90,130,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cv-item:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(120,90,130,0.15); }
.cv-item.current {
  border-color: rgba(141,171,136,0.45);
  background: linear-gradient(160deg, #fff 0%, #f4f8f2 100%);
}
.cv-period { display: flex; flex-direction: column; gap: 10px; }
.cv-period .range {
  color: var(--iris);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.cv-item.current .cv-period .range { color: var(--sea); }
.cv-badge {
  align-self: start;
  display: inline-flex;
  background: var(--sea);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
}
.cv-role {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.3;
  margin: 0 0 5px;
  color: var(--ink);
}
.cv-role .ai {
  font-style: italic;
  font-weight: 500;
  color: var(--iris);
  font-size: 0.78em;
  letter-spacing: 0.02em;
  margin-left: 2px;
}
.cv-company { margin: 0 0 14px; font-size: 0.98rem; color: var(--ink); font-weight: 600; }
.cv-company .at { color: var(--muted); font-weight: 400; }
.cv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--iris);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0 0 14px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.cv-link:hover { color: #9a73c4; border-color: currentColor; }
.cv-item .tags { margin-top: 2px; }
.cv-logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 3px;
}
.cv-logo img {
  max-width: 118px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}
.cv-reviews { grid-column: 1 / -1; margin-top: 10px; }
.cv-reviews-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--iris);
  margin: 0 0 14px;
}
.cv-reviews-label::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--iris);
  border-radius: 2px;
}
.cv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.review {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(186,151,219,0.2);
  box-shadow: 0 12px 30px rgba(120,90,130,0.1);
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review:hover { transform: translateY(-4px) scale(1.015); box-shadow: 0 20px 44px rgba(120,90,130,0.2); }
.review:focus-visible { outline: 3px solid var(--iris); outline-offset: 3px; }
.review img { width: 100%; height: auto; display: block; }
/* vergrootglas-hint rechtsboven */
.review::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(43,36,51,0.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E") center / 16px no-repeat;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.review:hover::after { opacity: 1; }
@media (hover: none) {
  .review::after { opacity: 0.9; }
}

/* lightbox (vergroot bij klik/tik) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(30,15,40,0.82);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 94vw;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
@media (max-width: 720px) {
  .cv-reviews-grid { grid-template-columns: 1fr; }
}
.cv-item.travel { background: linear-gradient(160deg, #fff 0%, var(--linen) 100%); }
.cv-item.travel .cv-period .range { color: #e8965f; }
@media (max-width: 640px) {
  .cv-item { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
  .cv-period { flex-direction: row; align-items: center; gap: 12px; }
  .cv-logo { justify-content: flex-start; padding-top: 0; }
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info {
  background: linear-gradient(160deg, var(--iris) 0%, #c9a9d6 50%, var(--guava) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: 0 24px 60px rgba(140,100,160,0.25);
}
.contact-photo {
  flex: 1 1 auto;
  min-height: 240px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(120,90,130,0.18);
}
.contact-info h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  margin: 0 0 8px;
}
.contact-info .role { opacity: 0.92; margin: 0 0 26px; }
.contact-info a { color: #fff; text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.5); }
.contact-info a:hover { border-color: #fff; }
.contact-line { margin: 0 0 14px; display: flex; gap: 10px; align-items: baseline; }
.contact-line .lbl { opacity: 0.8; font-size: 0.9rem; min-width: 78px; }
.contact-cta { margin-top: 30px; }
.calendly-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 24px 60px rgba(120,90,130,0.12);
  border: 1px solid rgba(186,151,219,0.12);
}
.calendly-wrap h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 12px 16px 4px;
}
.calendly-wrap p.note { margin: 0 16px 8px; color: var(--muted); font-size: 0.95rem; }

/* footer */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  text-align: center;
  padding: 56px 24px 48px;
}
footer .f-logo {
  width: 230px;
  max-width: 70%;
  height: auto;
  margin: 0 auto 22px;
  opacity: 0.92;
}
footer p { margin: 0 auto; max-width: 640px; font-size: 0.92rem; line-height: 1.7; }
footer .f-links { margin: 26px 0 2px; display: flex; gap: 34px; justify-content: center; flex-wrap: wrap; }
footer .f-links a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 5px;
  transition: color 0.25s ease;
}
footer .f-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--iris), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}
footer .f-links a:hover { color: var(--pink); }
footer .f-links a:hover::after { transform: scaleX(1); }
footer .f-legal { margin: 14px auto 0; font-size: 0.76rem; text-align: center; }
footer .f-legal a { color: rgba(255,255,255,0.5); text-decoration: none; margin: 0 8px; }
footer .f-legal a:hover { color: #fff; }

/* ---------------- JURIDISCHE PAGINA (TEKST) ---------------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal .doc-meta { color: var(--muted); font-size: 0.9rem; margin: 0 0 8px; }
.legal .intro { color: #4a4452; font-size: 1.02rem; line-height: 1.75; margin: 0 0 14px; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--ink);
  margin: 44px 0 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border, rgba(186,151,219,0.18));
}
.legal h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
  margin: 26px 0 10px;
}
.legal p { color: #4a4452; margin: 0 0 14px; font-size: 1rem; line-height: 1.75; }
.legal ul, .legal ol { color: #4a4452; margin: 0 0 16px; padding-left: 1.35rem; line-height: 1.7; }
.legal li { margin-bottom: 8px; }
.legal ol.lower-alpha { list-style: lower-alpha; }
.legal ol.lower-roman { list-style: lower-roman; }
.legal a { color: var(--iris); text-decoration: underline; }
.legal dl { margin: 0 0 16px; }
.legal dt { font-weight: 600; color: var(--ink); margin-top: 14px; }
.legal dd { margin: 2px 0 0; color: #4a4452; line-height: 1.7; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 0.96rem;
  table-layout: fixed;
}
.legal td, .legal th { overflow-wrap: break-word; word-break: break-word; }
.legal th, .legal td {
  border: 1px solid rgba(186,151,219,0.25);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  color: #4a4452;
}
.legal th { background: var(--linen); color: var(--ink); font-weight: 600; }
.legal .doc-actions { margin-top: 30px; }

/* ---------------- SCROLL REVEAL ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-badge-ring, .scroll-badge-arrow { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  /* ---- mobiel menu ---- */
  .nav-inner { padding: 14px 20px; justify-content: space-between; align-items: center; }
  .nav-toggle { display: flex; }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,248,245,0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 30px rgba(80,50,90,0.12);
    border-radius: 0 0 20px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  header.nav-open nav { max-height: 70vh; }
  nav ul { flex-direction: column; gap: 0; padding: 6px 0 10px; }
  nav li { width: 100%; }
  nav a {
    display: block;
    padding: 14px 26px;
    color: var(--ink);
    font-size: 1.02rem;
    border-bottom: 1px solid rgba(186,151,219,0.1);
  }
  nav a:hover { opacity: 1; color: var(--iris); }
  nav a.active { color: var(--iris); font-weight: 600; }
  header.scrolled nav a { color: var(--ink); }

  /* ---- hero ---- */
  .hero {
    padding-top: 0;
    min-height: auto;
  }
  .hero-stage {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 108px 16px 36px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .hero-logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(88vw, 420px);
    height: clamp(78px, 15vw, 120px);
    margin: 0 auto;
    flex-shrink: 0;
  }
  .hero-figure {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: auto;
    height: auto;
    margin: 28px auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
  }
  .hero-figure img {
    height: min(58vh, 460px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
  }
  .hero-tag {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    max-width: min(92%, 420px);
    margin: 20px auto 0;
    text-align: center;
  }
  .hero-tag.left, .hero-tag.right { text-align: center; }
  .scroll-badge { display: none; }
  .page-hero { padding: 116px 22px 52px; }

  /* ---- secties iets compacter ---- */
  .section { padding: 64px 20px; }
  .statement { padding: 70px 22px; }
  .band { padding: 80px 22px; }

  /* ---- Over mij: video-kadertjes binnen de hoek + tekst-clearance ---- */
  .about-video { width: 92px; height: 92px; top: -18px; right: 10px; border-width: 3px; }
  .about-strip { width: 150px; height: 84px; left: 10px; bottom: -14px; border-width: 3px; }
  .card-video:not(.tinted) { padding-top: 84px; }
  .card-video.tinted { padding-bottom: 82px; }
}

@media (max-width: 520px) {
  .nav-logo { height: 32px; }
  .hero-logo { height: 76px; width: min(90vw, 320px); }
  .hero-figure { margin-top: 22px; }
  .hero-figure img { height: min(52vh, 380px); }
  .hero-tag { font-size: 0.92rem; }
  .section { padding: 54px 18px; }
  .statement { padding: 60px 18px; }
  .card, .service, .case, .cv-item { padding: 24px; }
  .contact-info { padding: 32px 24px; }
  .calendly-wrap { padding: 12px; }
  .calendly-wrap .calendly-inline-widget { min-width: 0 !important; }
  /* juridische tabellen leesbaar houden */
  .legal th, .legal td { padding: 8px 9px; font-size: 0.82rem; }
  .page-hero h1 { font-size: 1.95rem; overflow-wrap: break-word; }
  .about-video { width: 84px; height: 84px; top: -16px; right: 8px; border-width: 3px; }
  .about-strip { width: 138px; height: 78px; left: 8px; bottom: -12px; border-width: 3px; }
  .cv-reviews-label { font-size: 0.7rem; }
  footer .f-links { gap: 20px; }
  footer .f-links a { font-size: 0.84rem; letter-spacing: 0.08em; }
}

/* ============ EXTRA BEWEGING & INTERACTIE ============ */

/* scroll-voortgangsbalk bovenaan */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--iris), var(--pink), var(--guava));
  box-shadow: 0 1px 6px rgba(186,151,219,0.45);
  transition: width 0.12s ease-out;
}

/* zacht driftende kleurvlekken in de hero */
@keyframes blobDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(38px,26px) scale(1.08); } }
@keyframes blobDrift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px,-34px) scale(1.1); } }
@keyframes blobDrift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(26px,-22px) scale(1.06); } }
.blob.b1 { animation: blobDrift1 17s ease-in-out infinite; }
.blob.b2 { animation: blobDrift2 21s ease-in-out infinite; }
.blob.b3 { animation: blobDrift3 19s ease-in-out infinite; }

/* glans-veeg over knoppen bij hover */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn:hover::before { left: 130%; }

/* geanimeerde onderstreping in de navigatie (desktop) */
@media (min-width: 761px) {
  nav a { position: relative; }
  nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  nav a:hover::after,
  nav a.active::after { transform: scaleX(1); transform-origin: left; }
}

/* micro-interacties */
.cv-logo img { transition: transform 0.35s ease; }
.cv-item:hover .cv-logo img { transform: scale(1.07); }
.service .num { transition: transform 0.35s ease; }
.service:hover .num { transform: translateY(-3px) scale(1.1); }
.profile-avatar { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.profile-avatar:hover { transform: scale(1.04) rotate(-2deg); }
.tag { transition: transform 0.2s ease; }
.cv-item:hover .tag { transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  .blob.b1, .blob.b2, .blob.b3 { animation: none; }
  .btn::before { display: none; }
  .scroll-progress { transition: none; }
}
