/* =========================================================
   Veilig Thijs, design system v2
   Inspired directly by the brand badge:
   vibrant grass green + neon lime accent + bold condensed type.
   Built mobile-first.
   ========================================================= */

:root {
  /* Brand palette, lifted from the logo */
  --green:       #2EB141;        /* primary brand green (badge bg) */
  --green-deep:  #1F8C30;        /* depth */
  --green-dark:  #145525;        /* darker tone */
  --green-night: #0A1F0E;        /* almost-black green for dark sections */
  --green-soft:  #E6F5E2;        /* tinted background */
  --green-soft2: #D6EFD0;
  --lime:        #5DFC4E;        /* neon lime, the punch */
  --lime-bright: #74FF66;
  --lime-glow:   rgba(93,252,78,.4);

  --cream:       #F6F8EE;        /* warm page bg */
  --cream-deep:  #ECF0DE;
  --bg:          #FFFFFF;
  --bg-soft:     #F0F4E6;

  --ink-900:     #0E1A12;
  --ink-700:     #1F2A21;
  --ink-500:     #4A5550;
  --ink-400:     #6E7872;
  --ink-300:     #9AA39E;

  --line:        #DDE3D7;
  --line-soft:   #ECF0E4;

  --warn:        #E5563B;        /* used sparingly for alerts only */
  --warn-soft:   #FCE8E2;

  /* Type */
  --font-display: "Anton", "Big Shoulders Display", "Impact", "Helvetica Neue", sans-serif;
  --font-cond:    "Big Shoulders Display", "Anton", "Impact", sans-serif;
  --font-sans:    "Inter", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", "Plus Jakarta Sans", system-ui, sans-serif;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-xs:   0 1px 2px rgba(10, 31, 14, .06);
  --shadow-sm:   0 6px 18px -10px rgba(10, 31, 14, .18);
  --shadow-md:   0 22px 46px -24px rgba(10, 31, 14, .28);
  --shadow-lg:   0 36px 80px -32px rgba(10, 31, 14, .35);
  --shadow-lime: 0 16px 36px -14px rgba(93, 252, 78, .55);
  --shadow-green:0 18px 40px -16px rgba(46, 177, 65, .5);

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --section-y: clamp(64px, 9vw, 116px);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,svg,video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: var(--green-deep); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--green-dark); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--lime); color: var(--ink-900); }

/* Display headings, refined editorial feel; sans serif with tight tracking */
h1,h2,h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--ink-900);
  margin: 0 0 .4em;
  line-height: 1.1;
  letter-spacing: -.022em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1.05; letter-spacing: -.028em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
h4 { font-family: var(--font-sans); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; color: var(--ink-900); margin: 0 0 .4em; line-height: 1.3; }
p  { margin: 0 0 1em; }

/* Subtle accent on emphasized words, green color only, no chunky highlighter */
h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--green-deep);
}

.visually-hidden,.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 12px; background: var(--ink-900); color: var(--lime);
  padding: 10px 14px; border-radius: 8px; z-index: 100; transition: top .15s var(--ease);
  font-family: var(--font-sans); font-weight: 700;
}
.skip-link:focus { top: 12px; color: var(--lime); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container--narrow { max-width: var(--container-narrow); }
section { padding-block: var(--section-y); }
.section-soft  { background: var(--bg-soft); }
.section-paper { background: var(--cream); }
.section-cream { background: linear-gradient(180deg, var(--cream) 0%, var(--green-soft) 100%); }
.section-deep  { background: var(--green-night); color: #DCEDD9; position: relative; overflow: hidden; }
.section-deep::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 30% at 90% 5%, rgba(93,252,78,.18), transparent 70%),
    radial-gradient(45% 50% at 5% 100%, rgba(46,177,65,.25), transparent 70%);
  pointer-events: none;
}
.section-deep > * { position: relative; z-index: 1; }
.section-deep h1, .section-deep h2, .section-deep h3 { color: #FFFFFF; }
.section-deep h1 em, .section-deep h2 em, .section-deep h3 em { color: var(--lime); }

/* Dashed road divider, recurring brand motif */
.road-rule {
  display: block; height: 14px; width: 100%; max-width: 280px;
  background-image:
    linear-gradient(currentColor, currentColor),
    repeating-linear-gradient(90deg, currentColor 0 14px, transparent 14px 28px);
  background-size: 100% 2px, 100% 2px;
  background-position: 0 4px, 0 10px;
  background-repeat: no-repeat;
  color: var(--green);
  opacity: .6;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,248,238,.95);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.topbar {
  background: var(--green-night);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: .82rem;
  border-bottom: 2px solid var(--lime);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 10px; }
.topbar__contact { display: inline-flex; align-items: center; gap: 22px; margin-left: auto; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item--mission { color: var(--lime); font-weight: 700; letter-spacing: .02em; text-transform: uppercase; font-size: .76rem; }
.topbar__item a { display: inline-flex; align-items: center; gap: 8px; color: inherit; font-weight: 600; }
.topbar__item a:hover { color: var(--lime); }
.topbar__icon { width: 16px; height: 16px; flex: none; }
@media (max-width: 720px) { .topbar__item--alt { display: none; } .topbar__item--mission { font-size: .7rem; } }

.nav__shell { display: flex; align-items: center; gap: 16px; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-sans); color: inherit; }
.brand__mark {
  display: block; flex: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.brand--footer .brand__mark { width: 44px; height: 44px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -.015em;
}
.brand__sub {
  font-family: var(--font-sans);
  font-size: .72rem; color: var(--ink-400);
  letter-spacing: .04em;
  font-weight: 500; margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 0; list-style: none; padding: 0; margin: 0; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 12px; border-radius: var(--r-pill);
  color: var(--ink-700);
  font-family: var(--font-sans); font-weight: 600; font-size: .9rem;
  transition: background .15s var(--ease), color .15s var(--ease);
  white-space: nowrap;
}
.nav__link:hover, .nav__link:focus-visible { background: var(--green-soft); color: var(--green-dark); }
.nav__link.is-active { color: var(--green-dark); background: var(--green-soft); }
.nav__item--highlight .nav__link { color: var(--green-deep); font-weight: 700; }
.nav__item--has-children > .nav__link::after {
  content: ""; width: 7px; height: 7px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px); margin-left: 2px; opacity: .65;
  transition: transform .15s var(--ease);
}
.nav__item--has-children:hover > .nav__link::after { transform: rotate(225deg) translate(-1px, -1px); }
.nav__pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 0 var(--lime-glow);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%{box-shadow:0 0 0 0 var(--lime-glow)} 70%{box-shadow:0 0 0 12px transparent} 100%{box-shadow:0 0 0 0 transparent} }

.nav__sub {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 8px;
  min-width: 240px; list-style: none; margin: 0;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: opacity .15s var(--ease), transform .15s var(--ease), visibility .15s;
  z-index: 50;
}
.nav__item--has-children:hover .nav__sub,
.nav__item--has-children:focus-within .nav__sub {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px);
}
.nav__sub a {
  display: block; padding: 10px 12px; border-radius: 8px;
  color: var(--ink-700); font-family: var(--font-sans); font-size: .92rem; font-weight: 600;
}
.nav__sub a:hover, .nav__sub a.is-active { background: var(--green-soft); color: var(--green-dark); }

.nav__cta { margin-left: 4px; flex: none; }

.nav__toggle {
  display: none; width: 44px; height: 44px;
  border: 1.5px solid var(--ink-900); background: #fff;
  border-radius: var(--r-sm); margin-left: auto;
}
.nav__toggle-bars,.nav__toggle-bars::before,.nav__toggle-bars::after {
  display: block; width: 22px; height: 2.5px; background: var(--ink-900);
  margin-inline: auto; transition: transform .2s var(--ease), opacity .2s;
}
.nav__toggle-bars { position: relative; }
.nav__toggle-bars::before { content: ""; position: absolute; left: 0; top: -7px; }
.nav__toggle-bars::after  { content: ""; position: absolute; left: 0; top:  7px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::before { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::after  { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 1024px) {
  .nav__toggle { display: grid; place-items: center; }
  .nav {
    position: fixed; inset: 64px 0 0;
    background: var(--cream);
    padding: 24px;
    flex-direction: column; align-items: stretch;
    transform: translateX(100%);
    transition: transform .25s var(--ease);
    overflow-y: auto; z-index: 50; visibility: hidden;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; box-shadow: -20px 0 60px rgba(0,0,0,.06); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { width: 100%; padding: 14px 16px; border-radius: var(--r-md); font-size: 1.05rem; }
  .nav__sub { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding-left: 12px; min-width: 0; background: transparent; }
  .nav__cta { margin: 14px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--r-pill);
  font-family: var(--font-sans); font-weight: 700; font-size: .96rem;
  letter-spacing: 0;
  border: 1px solid transparent; line-height: 1;
  transition: transform .12s var(--ease), background .15s var(--ease),
              color .15s var(--ease), box-shadow .15s var(--ease),
              border-color .15s var(--ease);
  cursor: pointer; text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm  { padding: 9px 16px; font-size: .88rem; }
.btn--lg  { padding: 16px 26px; font-size: 1rem; }
.btn--block { width: 100%; }

/* Primary = solid brand green, the main CTA */
.btn--primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

/* Green = same as primary, kept as alias */
.btn--green    { background: var(--green); color: #fff; border-color: var(--green); box-shadow: var(--shadow-sm); }
.btn--green:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }

/* Yellow / lime, high-attention secondary on dark sections */
.btn--yellow   { background: var(--lime); color: var(--ink-900); border-color: var(--lime); }
.btn--yellow:hover { background: var(--lime-bright); border-color: var(--lime-bright); }

/* Ghost = outlined dark on light bg */
.btn--ghost    { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn--ghost:hover { background: var(--ink-900); color: #fff; }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: #fff; color: var(--ink-900); border-color: #fff; }

.btn--inverse { background: #fff; color: var(--ink-900); border-color: #fff; }
.btn--inverse:hover { background: var(--lime); color: var(--ink-900); border-color: var(--lime); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: .76rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 32px; height: 0;
  border-top: 2px dashed currentColor;
  display: inline-block;
}
.eyebrow--white { color: var(--lime); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; padding: 0; overflow: hidden;
  background:
    radial-gradient(60% 60% at 95% -5%, rgba(46,177,65,.10) 0%, transparent 65%),
    radial-gradient(70% 60% at 0% 100%, rgba(46,177,65,.08) 0%, transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px;
  align-items: center; padding-block: clamp(64px, 9vw, 110px);
}
.hero__copy { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 22px; line-height: .95; }
.hero h1 em { color: var(--ink-900); }
.hero h1 em::before { background: var(--lime); height: .42em; }
.hero__lead {
  font-size: 1.18rem; color: var(--ink-500); max-width: 560px;
  margin-bottom: 30px; line-height: 1.55;
  font-family: var(--font-sans);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__bullets {
  display: flex; flex-wrap: wrap; gap: 14px 24px;
  margin-top: 36px; padding: 0; list-style: none;
}
.hero__bullet {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 700;
  color: var(--ink-700); font-size: .95rem;
}
.hero__bullet svg {
  width: 22px; height: 22px; padding: 4px; flex: none;
  background: var(--lime); color: var(--ink-900);
  border-radius: 50%; border: 1.5px solid var(--ink-900);
}

/* Hero visual: clean portrait with refined float chips */
.hero__visual { position: relative; align-self: stretch; min-height: 480px; }
.portrait-card {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden;
  background:
    radial-gradient(80% 70% at 50% 25%, rgba(93,252,78,.15), transparent 60%),
    linear-gradient(165deg, var(--green) 0%, var(--green-deep) 55%, var(--green-night) 100%);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -25px rgba(10, 31, 14, .35), 0 12px 24px -12px rgba(10, 31, 14, .15);
}
.portrait-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    /* dashed road accent */
    repeating-linear-gradient(180deg, transparent 0 22px, rgba(93,252,78,.12) 22px 26px),
    /* portrait illustration */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'><defs><linearGradient id='hair' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23463224'/><stop offset='1' stop-color='%232C1F15'/></linearGradient><linearGradient id='skin' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23F2C9A0'/><stop offset='1' stop-color='%23E0AE82'/></linearGradient><linearGradient id='shirt' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%235DFC4E'/><stop offset='1' stop-color='%232EB141'/></linearGradient></defs><path d='M70 520 C 70 380 120 330 200 330 C 280 330 330 380 330 520 Z' fill='url(%23shirt)'/><path d='M150 320 L150 360 Q200 380 250 360 L250 320 Z' fill='url(%23skin)'/><circle cx='200' cy='220' r='86' fill='url(%23skin)'/><path d='M118 195 Q 130 130 200 120 Q 280 125 285 200 Q 285 175 270 165 Q 240 200 200 195 Q 160 195 130 175 Q 118 180 118 195 Z' fill='url(%23hair)'/><circle cx='173' cy='220' r='4.5' fill='%231C1C1E'/><circle cx='227' cy='220' r='4.5' fill='%231C1C1E'/><path d='M170 215 Q 173 210 178 215' fill='none' stroke='%231C1C1E' stroke-width='2' stroke-linecap='round'/><path d='M222 215 Q 227 210 232 215' fill='none' stroke='%231C1C1E' stroke-width='2' stroke-linecap='round'/><path d='M170 263 Q 200 290 230 263' fill='none' stroke='%231C1C1E' stroke-width='3.5' stroke-linecap='round'/><circle cx='150' cy='260' r='8' fill='%23F4A8A0' opacity='.4'/><circle cx='250' cy='260' r='8' fill='%23F4A8A0' opacity='.4'/></svg>") center 8%/85% no-repeat;
}
.portrait-card::after {
  content: ""; position: absolute; inset: 18px;
  border: 2px dashed rgba(93,252,78,.5);
  border-radius: calc(var(--r-xl) - 6px);
  pointer-events: none;
}
.portrait-card__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  z-index: 1;
}
.portrait-card:has(.portrait-card__photo)::before { display: none; }
.portrait-card:has(.portrait-card__photo)::after {
  content: "";
  background:
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55) 100%);
  border: 0;
  z-index: 2;
}
.portrait-card__name {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  font-family: var(--font-sans);
  color: #fff; font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.015em; line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  z-index: 3;
}
.portrait-card__name span {
  display: block; font-family: var(--font-sans); font-size: .7rem;
  font-weight: 600; color: rgba(255,255,255,.75);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 6px;
}

.float-chip {
  position: absolute; background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 14px 30px -12px rgba(10, 31, 14, .22), 0 4px 10px -4px rgba(10, 31, 14, .08);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  z-index: 4;
}
.float-chip__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; flex: none;
}
.float-chip__big { font-weight: 700; font-size: 1rem; color: var(--ink-900); line-height: 1.1; letter-spacing: -.01em; }
.float-chip__sm  { font-size: .76rem; color: var(--ink-400); margin-top: 3px; font-weight: 500; }

.float-chip--rating { top: 18px; right: -22px; }
.float-chip--rating .float-chip__icon { background: var(--green-soft); color: var(--green-deep); }
.float-chip--review { bottom: 30%; left: -32px; max-width: 240px; }
.float-chip--review .float-chip__icon { background: var(--green-soft); color: var(--green-deep); }
.float-chip--geslaagd { bottom: 18px; right: 18px; }
.float-chip--geslaagd .float-chip__icon { background: var(--green); color: #fff; }

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { min-height: auto; max-width: 460px; margin-inline: auto; width: 100%; }
  .float-chip--rating { right: -8px; }
  .float-chip--review { left: -8px; max-width: 220px; }
}
@media (max-width: 600px) {
  .float-chip { padding: 10px 12px; }
  .float-chip--review { max-width: 180px; }
  .float-chip__icon { width: 32px; height: 32px; }
  .float-chip__big { font-size: .92rem; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--ink-900); color: var(--cream);
  border-top: 1px solid rgba(93, 252, 78, .25);
  border-bottom: 1px solid rgba(93, 252, 78, .25);
  padding-block: 18px;
}
.trust-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.trust-bar__intro {
  font-family: var(--font-sans); font-weight: 800;
  color: var(--lime); font-size: .76rem;
  letter-spacing: .18em; text-transform: uppercase;
}
.trust-bar__items { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; }
.trust-bar__item {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 700;
  color: var(--cream); font-size: .92rem;
}
.trust-bar__item svg { width: 18px; height: 18px; color: var(--lime); }
.trust-bar__star { color: var(--lime); }

/* =========================================================
   USP / Feature cards
   ========================================================= */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .usp-grid { grid-template-columns: 1fr; } }
.usp-card {
  position: relative; background: #fff; padding: 32px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.usp-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-md); }
.usp-card__icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--lime); color: var(--ink-900);
  border: 1px solid var(--line);
}
.usp-card__icon svg { width: 28px; height: 28px; }
.usp-card--accent .usp-card__icon { background: var(--green); color: #fff; }
.usp-card--red .usp-card__icon { background: var(--ink-900); color: var(--lime); }
.usp-card h3 { margin-bottom: 10px; }
.usp-card p { color: var(--ink-500); margin: 0; font-family: var(--font-sans); }

/* ---------- Section heading ---------- */
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-head p  { color: var(--ink-500); font-size: 1.08rem; max-width: 640px; font-family: var(--font-sans); }
.section-head--center p { margin-inline: auto; }

/* =========================================================
   Story / Mission split
   ========================================================= */
.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }
.story-card {
  position: relative; padding: 44px;
  background: var(--green-night); color: var(--cream);
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.story-card::before {
  content: ""; position: absolute; inset: -40% -10% auto auto;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--lime), transparent 60%);
  opacity: .25; pointer-events: none;
}
.story-card h3 { color: #fff; margin-bottom: 16px; font-size: 1.6rem; }
.story-card p  { color: #DCEDD9; font-family: var(--font-sans); }
.story-card .mission-quote {
  font-family: var(--font-sans); font-size: 1.45rem; line-height: 1.3;
  color: var(--lime); margin: 28px 0 0; font-weight: 600;
  letter-spacing: -.015em; font-style: italic;
}
.story-card .mission-quote::before {
  content: "“"; font-family: Georgia, serif; font-size: 2.4rem; line-height: 0;
  color: var(--lime); margin-right: 6px; vertical-align: -.4em;
}
.story-card .signature {
  margin-top: 22px; font-family: var(--font-sans); font-weight: 700;
  font-size: 1rem; color: var(--lime); letter-spacing: .04em;
}

/* =========================================================
   Tarieven cards
   ========================================================= */
.pakket-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.pakket-card {
  position: relative; padding: 28px; background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pakket-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-md); }
.pakket-card--featured {
  background: var(--ink-900); color: var(--cream);
  box-shadow: var(--shadow-md);
}
.pakket-card--featured:hover { box-shadow: var(--shadow-md); }
.pakket-card__badge {
  position: absolute; top: -14px; left: 24px;
  background: var(--lime); color: var(--ink-900);
  font-family: var(--font-sans); font-size: .72rem;
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
  border: 1px solid var(--line);
}
.pakket-card__name {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 1rem; color: var(--ink-700);
  letter-spacing: .04em; text-transform: uppercase;
  margin: 4px 0 16px;
}
.pakket-card--featured .pakket-card__name { color: var(--lime); }
.pakket-card__lessons {
  font-family: var(--font-sans);
  font-size: 2.8rem; font-weight: 800;
  color: var(--ink-900); letter-spacing: -.025em;
  line-height: 1;
}
.pakket-card--featured .pakket-card__lessons { color: var(--cream); }
.pakket-card__lessons span {
  font-family: var(--font-sans); font-size: .8rem; font-weight: 600;
  color: var(--ink-400); display: block;
  text-transform: uppercase; letter-spacing: .1em; margin-top: 6px;
}
.pakket-card--featured .pakket-card__lessons span { color: var(--green-soft); }
.pakket-card__price { margin-top: 18px; padding-top: 18px; border-top: 2px dashed var(--line); }
.pakket-card--featured .pakket-card__price { border-top-color: rgba(93,252,78,.3); }
.pakket-card__price-big {
  font-family: var(--font-sans); font-size: 2rem; font-weight: 800;
  color: var(--green-deep); line-height: 1; letter-spacing: -.02em;
}
.pakket-card--featured .pakket-card__price-big { color: var(--lime); }
.pakket-card__price-sm  {
  font-family: var(--font-sans); font-size: .88rem;
  color: var(--ink-400); margin-top: 4px;
}
.pakket-card--featured .pakket-card__price-sm { color: var(--green-soft); }
.pakket-card__list { list-style: none; padding: 18px 0 0; margin: 18px 0 0; border-top: 1px solid var(--line-soft); }
.pakket-card--featured .pakket-card__list { border-top-color: rgba(255,255,255,.1); }
.pakket-card__list li {
  display: flex; gap: 10px; padding: 5px 0;
  font-size: .92rem; color: var(--ink-500);
  font-family: var(--font-sans);
}
.pakket-card--featured .pakket-card__list li { color: var(--green-soft); }
.pakket-card__list li::before {
  content: ""; width: 18px; height: 18px; flex: none;
  background: var(--lime) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l5 5 9-11' fill='none' stroke='%230E1A12' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/13px no-repeat;
  border-radius: 50%; margin-top: 3px;
  border: 1.5px solid var(--ink-900);
}
.pakket-card__cta { margin-top: 22px; }

/* Refund callout */
.callout {
  background: var(--lime); color: var(--ink-900);
  border: 1px solid var(--line);
  padding: 26px 30px; border-radius: var(--r-md);
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start;
  box-shadow: var(--shadow-sm);
}
.callout__icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--ink-900); color: var(--lime);
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.callout__icon svg { width: 28px; height: 28px; }
.callout h4 { color: var(--ink-900); margin-bottom: 6px; font-size: 1.15rem; }
.callout p { color: var(--ink-700); margin: 0; font-family: var(--font-sans); }

.kosten-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.kosten-table th, .kosten-table td { padding: 16px 20px; text-align: left; }
.kosten-table th {
  background: var(--ink-900); color: var(--lime);
  font-family: var(--font-sans); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .14em; font-weight: 800;
}
.kosten-table tr + tr td { border-top: 1px solid var(--line-soft); }
.kosten-table td.price {
  font-family: var(--font-sans); color: var(--green-deep);
  font-size: 1.1rem; font-weight: 800; letter-spacing: -.015em;
  text-align: right; white-space: nowrap;
}

/* =========================================================
   Geslaagden grid
   ========================================================= */
.geslaagden-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.geslaagd-card {
  position: relative; background: #fff; padding: 24px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  overflow: hidden;
}
.geslaagd-card::before {
  content: ""; position: absolute; inset: -50% -50% auto auto;
  width: 100%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(93,252,78,.25), transparent 60%);
  pointer-events: none;
}
.geslaagd-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-md); }

/* Photo variant — full-bleed top photo with overlay badge */
.geslaagd-card--with-photo { padding: 0; }
.geslaagd-card--with-photo::before { display: none; }
.geslaagd-card__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--green-soft);
  border-bottom: 1px solid var(--line);
}
.geslaagd-card__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.geslaagd-card__badge--overlay {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--green); color: #fff;
  border: 0;
  box-shadow: 0 4px 12px -4px rgba(10, 31, 14, .35);
}
.geslaagd-card--with-photo .geslaagd-card__body { padding: 18px 22px 22px; }

.geslaagd-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.geslaagd-card__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-soft); color: var(--green-deep);
  display: grid; place-items: center;
  font-family: var(--font-sans); font-weight: 700; font-size: 1.25rem;
  letter-spacing: -.01em;
}
.geslaagd-card__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink-900); color: var(--lime);
  font-family: var(--font-sans); font-weight: 800;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
}
.geslaagd-card h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 1.15rem; color: var(--ink-900); margin: 0 0 4px;
  letter-spacing: -.015em;
}
.geslaagd-card .meta { color: var(--ink-400); font-size: .85rem; margin-bottom: 10px; font-family: var(--font-sans); }
.geslaagd-card blockquote {
  margin: 12px 0 0; padding: 12px 0 0;
  border-top: 2px dashed var(--line);
  font-family: var(--font-sans); font-style: italic;
  color: var(--ink-700); font-size: .95rem; line-height: 1.5;
}

/* Counter strip */
.counter-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; padding: 36px;
  background: var(--ink-900); color: var(--cream);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.counter { text-align: center; }
.counter__big {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--lime); line-height: 1; letter-spacing: -.025em;
}
.counter__lbl {
  display: block; font-family: var(--font-sans); font-weight: 800;
  font-size: .8rem; color: var(--cream);
  letter-spacing: .14em; text-transform: uppercase; margin-top: 8px;
}

/* =========================================================
   Reviews
   ========================================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff; padding: 28px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.review-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-md); }
.review-card__stars { display: inline-flex; gap: 2px; color: var(--green-deep); margin-bottom: 14px; }
.review-card__stars svg { width: 20px; height: 20px; fill: currentColor; }
.review-card blockquote {
  font-family: var(--font-sans); font-size: 1.02rem;
  line-height: 1.55; color: var(--ink-700); margin: 0 0 18px;
}
.review-card__author { font-family: var(--font-sans); font-weight: 800; color: var(--ink-900); }
.review-card__date { font-family: var(--font-sans); color: var(--ink-400); font-size: .85rem; margin-left: 8px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: box-shadow .2s var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-sans); font-weight: 800;
  font-size: 1.04rem; color: var(--ink-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 28px; height: 28px; border-radius: 50%;
  background: var(--lime) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' fill='none' stroke='%230E1A12' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/16px no-repeat;
  border: 1px solid var(--line);
  transition: transform .2s var(--ease);
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item__body { padding: 0 24px 22px; color: var(--ink-500); font-family: var(--font-sans); }
.faq-item__body p { margin: 0; }

/* =========================================================
   Strip CTA before footer
   ========================================================= */
.strip-cta {
  position: relative;
  background: var(--green-night);
  color: #fff; overflow: hidden;
  border-top: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
}
.strip-cta::before, .strip-cta::after { content: ""; position: absolute; pointer-events: none; }
.strip-cta::before { inset: -40% -10% auto auto; width: 60%; aspect-ratio: 1; background: radial-gradient(circle, rgba(93,252,78,.35), transparent 60%); }
.strip-cta::after  { inset: auto auto -30% -10%; width: 60%; aspect-ratio: 1; background: radial-gradient(circle, rgba(46,177,65,.4), transparent 60%); }
.strip-cta__inner {
  position: relative;
  display: grid; grid-template-columns: 1.4fr .8fr; gap: 48px;
  align-items: center; padding-block: 88px;
}
.strip-cta__eyebrow {
  font-family: var(--font-sans); font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--lime); font-size: .8rem; margin-bottom: 14px;
}
.strip-cta__title {
  color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  margin-bottom: 16px;
}
.strip-cta__title em { color: var(--ink-900); }
.strip-cta__title em::before { background: var(--lime); }
.strip-cta__sub { color: rgba(255,255,255,.85); margin: 0; font-family: var(--font-sans); font-size: 1.05rem; }
.strip-cta__actions { display: flex; flex-direction: column; gap: 12px; }
.strip-cta__actions .btn { width: 100%; }
@media (max-width: 900px) { .strip-cta__inner { grid-template-columns: 1fr; padding-block: 64px; gap: 32px; } }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--green-night); color: #C7D2C7; padding: 72px 0 28px; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr .9fr .9fr 1.2fr; gap: 44px; }
@media (max-width: 1024px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer .brand--footer .brand__name { color: #fff; }
.site-footer .brand--footer .brand__sub { color: var(--lime); }
.site-footer__bio { color: #9CB39E; margin-block: 16px; font-family: var(--font-sans); }
.site-footer__title {
  font-family: var(--font-sans); font-weight: 800;
  color: var(--lime); font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 16px;
}
.site-footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer__list a { color: #C7D2C7; font-family: var(--font-sans); font-size: .94rem; font-weight: 600; }
.site-footer__list a:hover { color: var(--lime); }
.site-footer__hint { font-size: .85rem; color: #7C8E7E; margin-top: 12px; font-family: var(--font-sans); }
.contact-block { font-style: normal; color: #C7D2C7; font-family: var(--font-sans); }
.contact-block a { color: #fff; font-weight: 700; }
.contact-block a:hover { color: var(--lime); }
.footer-actions { display: grid; gap: 10px; margin-top: 18px; }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(93,252,78,.12); border: 1px solid rgba(93,252,78,.3);
  color: var(--lime); font-family: var(--font-sans);
  font-weight: 700; font-size: .76rem;
  padding: 6px 12px; border-radius: var(--r-pill); letter-spacing: .04em;
}
.badge svg { width: 14px; height: 14px; color: var(--lime); }

.site-footer__legal {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding-top: 36px; margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #7C8E7E; font-family: var(--font-sans); font-size: .82rem;
}
.site-footer__legal a { color: #C7D2C7; }
.site-footer__legal a:hover { color: var(--lime); }

/* =========================================================
   Mobile sticky CTA
   ========================================================= */
.mobile-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 50;
  display: none; align-items: center; justify-content: center; gap: 8px;
  background: var(--lime); color: var(--ink-900);
  padding: 14px 18px; border-radius: var(--r-pill);
  font-family: var(--font-sans); font-weight: 800;
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px -8px rgba(10,31,14,.35), 4px 4px 0 var(--ink-900);
}
.mobile-cta:hover { color: var(--ink-900); }
@media (max-width: 720px) { .mobile-cta { display: flex; } body { padding-bottom: 88px; } }

/* =========================================================
   Form
   ========================================================= */
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block; font-family: var(--font-sans); font-weight: 800;
  color: var(--ink-900); font-size: .88rem;
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em;
}
.field label .req { color: var(--warn); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; font: inherit;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; color: var(--ink-900);
  transition: border-color .15s, box-shadow .15s, background .15s;
  font-family: var(--font-sans);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--green); background: var(--cream);
  box-shadow: var(--shadow-sm);
}
.field .help { color: var(--ink-400); font-size: .82rem; margin-top: 4px; font-family: var(--font-sans); }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-family: var(--font-sans); }
.checkbox input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--green); }
.field--error input, .field--error textarea, .field--error select { border-color: var(--warn); box-shadow: 4px 4px 0 var(--warn-soft); }
.field__error {
  display: block; color: var(--warn); font-family: var(--font-sans);
  font-size: .85rem; margin-top: 6px; font-weight: 700;
}
.form-error {
  background: var(--warn-soft); border: 2px solid var(--warn);
  padding: 14px 18px; border-radius: var(--r-sm);
  color: var(--ink-900); margin-top: 18px; font-family: var(--font-sans); font-weight: 600;
}

/* =========================================================
   Page hero (smaller, for inner pages)
   ========================================================= */
.page-hero {
  padding-block: clamp(56px, 8vw, 96px);
  background:
    radial-gradient(50% 60% at 100% 0%, rgba(46,177,65,.10), transparent 65%),
    var(--cream);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 880px; }
.page-hero h1 em { color: var(--ink-900); }
.page-hero__lead {
  font-size: 1.12rem; color: var(--ink-500); max-width: 720px;
  font-family: var(--font-sans);
}
.crumbs {
  font-family: var(--font-sans); font-size: .8rem;
  color: var(--ink-400); margin-bottom: 18px;
  display: flex; gap: 8px; align-items: center;
  text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
}
.crumbs a { color: var(--ink-500); }
.crumbs a:hover { color: var(--green-deep); }
.crumbs span { color: var(--ink-300); }

/* =========================================================
   Splits and helpers
   ========================================================= */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.split-2--lead { grid-template-columns: 1.2fr .8fr; }
@media (max-width: 900px) { .split-2 { grid-template-columns: 1fr; } }
.stack-md > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 24px; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: var(--lime);
  color: var(--ink-900); border-radius: var(--r-pill);
  font-family: var(--font-sans); font-weight: 800;
  font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  border: 1.5px solid var(--ink-900);
}
.tag--green { background: var(--green); color: #fff; }
.tag--red   { background: var(--warn); color: #fff; }

.divider-fancy {
  display: flex; align-items: center; gap: 16px;
  color: var(--ink-300); font-family: var(--font-sans);
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 800;
}
.divider-fancy::before, .divider-fancy::after { content: ""; flex: 1; border-top: 2px dashed var(--line); }

/* =========================================================
   Service stack (over ons / werkgebied)
   ========================================================= */
.fact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.fact-list li {
  display: grid; grid-template-columns: 32px 1fr; gap: 12px;
  align-items: start; font-family: var(--font-sans);
}
.fact-list li::before {
  content: ""; width: 28px; height: 28px; border-radius: 8px;
  background: var(--lime) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l5 5 9-11' fill='none' stroke='%230E1A12' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/15px no-repeat;
  border: 1.5px solid var(--ink-900);
}
.fact-list li b { color: var(--ink-900); display: block; font-weight: 800; }
.fact-list li span { color: var(--ink-500); font-size: .94rem; }

/* Map placeholder */
.map-card {
  border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3;
  background: #fff; border: 1px solid var(--line); position: relative;
  box-shadow: var(--shadow-sm);
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-consent {
  position: absolute; inset: 0; display: grid; place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--green-soft), var(--cream));
  text-align: center;
}

/* Reusable photo card, bordered, rounded, optionally with a caption */
.photo-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--green-night);
}
.photo-card--ratio-4-3 { aspect-ratio: 4/3; }
.photo-card--ratio-3-4 { aspect-ratio: 3/4; }
.photo-card--ratio-16-10 { aspect-ratio: 16/10; }
.photo-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.photo-card__caption {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--ink-900); color: var(--lime);
  font-family: var(--font-sans); font-weight: 800;
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 12px; border-radius: var(--r-pill);
  border: 2px solid var(--lime);
}
@media (max-width: 600px) {
  .photo-card { box-shadow: var(--shadow-sm); }
}

/* Slipcursus hero */
.slip-hero {
  background: var(--green-night); color: #fff;
  position: relative; overflow: hidden;
  border-bottom: 2px solid var(--lime);
}
.slip-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 100% 0%, rgba(93,252,78,.25), transparent 70%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'><path d='M-50 320 Q 200 220 400 320 T 850 280' stroke='%235DFC4E' stroke-width='2.5' fill='none' stroke-dasharray='3 8' opacity='.4'/><path d='M-50 360 Q 220 250 400 360 T 850 330' stroke='%232EB141' stroke-width='2' fill='none' stroke-dasharray='2 10' opacity='.4'/></svg>") center/cover no-repeat;
  pointer-events: none;
}
.slip-hero > * { position: relative; z-index: 1; }
.slip-hero h1, .slip-hero h2, .slip-hero h3 { color: #fff; }
.slip-hero .price {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(3rem, 7vw, 4.4rem);
  color: var(--lime); line-height: 1; letter-spacing: -.03em;
}
.slip-hero .price small {
  font-family: var(--font-sans); font-size: .85rem;
  color: rgba(255,255,255,.65); display: block; margin-top: 10px;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
}

/* Step cards (process) */
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1000px) { .step-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .step-grid { grid-template-columns: 1fr; } }
.step {
  position: relative; padding: 28px;
  background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.step:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-md); }
.step__num {
  font-family: var(--font-sans); font-weight: 800; font-size: 1rem;
  color: var(--green-deep); line-height: 1; letter-spacing: .04em;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--green-soft); border: 1px solid var(--green-soft2);
  border-radius: 50%; margin-bottom: 18px;
}
.step h4 { font-size: 1.1rem; margin: 8px 0 6px; color: var(--ink-900); }
.step p { color: var(--ink-500); font-size: .95rem; margin: 0; font-family: var(--font-sans); }

/* Local area card */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .area-grid { grid-template-columns: 1fr; } }
.area-card {
  position: relative; padding: 28px;
  background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: all .2s var(--ease); display: block; color: inherit;
}
.area-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-md); color: inherit; }
.area-card .pin {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--lime); color: var(--ink-900);
  display: grid; place-items: center;
  margin-bottom: 14px; border: 1px solid var(--line);
}
.area-card .pin svg { width: 22px; height: 22px; }
.area-card h4 {
  color: var(--ink-900); margin-bottom: 4px;
  font-family: var(--font-sans); font-weight: 700;
  font-size: 1.1rem; letter-spacing: -.015em;
}
.area-card p { color: var(--ink-500); font-size: .9rem; margin: 0; font-family: var(--font-sans); }
.area-card .arrow {
  position: absolute; top: 24px; right: 22px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink-900); color: var(--lime);
  display: grid; place-items: center;
  transition: all .2s var(--ease);
}
.area-card:hover .arrow { background: var(--lime); color: var(--ink-900); transform: translate(2px, -2px); }
.area-card .arrow svg { width: 14px; height: 14px; }

/* Timeline (lesweek) */
.timeline {
  display: grid; gap: 14px;
  max-width: 880px; margin-inline: auto;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; left: 30px; top: 30px; bottom: 30px;
  border-left: 2px dashed var(--green);
}
.timeline__item {
  display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: stretch;
  background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px 24px; position: relative; z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.timeline__item:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-md); }
.timeline__dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: var(--font-sans); font-weight: 700; font-size: .85rem;
  letter-spacing: .04em;
  display: grid; place-items: center;
  text-transform: uppercase; flex: none;
}
.timeline__item--accent .timeline__dot { background: var(--lime); color: var(--ink-900); }
.timeline__body h4 {
  font-size: 1.05rem; margin-bottom: 4px; color: var(--ink-900);
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.timeline__body p { color: var(--ink-500); margin: 0; font-size: .95rem; font-family: var(--font-sans); }
@media (max-width: 600px) {
  .timeline::before { left: 24px; }
  .timeline__item { grid-template-columns: 48px 1fr; gap: 14px; padding: 16px 18px; }
  .timeline__dot { width: 48px; height: 48px; font-size: 1.05rem; }
}

/* Pricing emphasis card */
.pricing-emph { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
@media (max-width: 900px) { .pricing-emph { grid-template-columns: 1fr; } }
.pricing-emph__panel {
  background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.pricing-emph__panel h3 { font-size: 1.4rem; margin-bottom: 14px; }

/* Article (prose) */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .article-grid { grid-template-columns: 1fr; } }
.article-card {
  display: flex; flex-direction: column; padding: 28px;
  background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  color: inherit;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.article-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-md); color: inherit; }
.article-card__cat {
  font-family: var(--font-sans); font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-deep); font-size: .74rem; margin-bottom: 12px;
}
.article-card__title {
  font-family: var(--font-sans); font-weight: 700;
  color: var(--ink-900); font-size: 1.2rem; line-height: 1.25;
  margin: 0 0 12px; letter-spacing: -.015em;
}
.article-card__lead {
  color: var(--ink-500); flex: 1; margin: 0 0 20px;
  font-size: .95rem; line-height: 1.55; font-family: var(--font-sans);
}
.article-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 2px dashed var(--line);
  font-family: var(--font-sans); color: var(--ink-400); font-size: .82rem;
}
.article-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green-deep); font-weight: 800;
}

.prose { color: var(--ink-700); font-size: 1.05rem; line-height: 1.75; max-width: 720px; font-family: var(--font-sans); }
.prose h2 { font-size: 2rem; margin-top: 2.2em; margin-bottom: .5em; }
.prose h3 { font-size: 1.4rem; margin-top: 1.8em; margin-bottom: .4em; }
.prose p { margin: 0 0 1.2em; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.4em; }
.prose ul li, .prose ol li { margin-bottom: .5em; }
.prose ul li::marker { color: var(--green-deep); }
.prose a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: var(--lime);
  font-weight: 700;
}
.prose blockquote {
  background: var(--lime); border: 1px solid var(--line);
  padding: 20px 24px; margin: 1.6em 0;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 1.1rem; color: var(--ink-900); font-style: italic; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.prose strong { color: var(--ink-900); }
.prose hr { border: 0; border-top: 2px dashed var(--line); margin: 2.4em 0; }

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