/* ==========================================================================
   WeMa.Agency — stylesheet
   Handgeschreven CSS, geen tooling nodig. Opbouw:
   1. Tokens & basis   2. Typografie   3. Layout   4. Knoppen
   5. Navigatie        6. Footer       7. Hero's   8. Secties & cards
   9. Accordions       10. Formulieren 11. Cookiebanner 12. Pagina-specifiek
   13. Utilities       14. Responsive
   ========================================================================== */

/* 1. Tokens & basis ------------------------------------------------------ */
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-VariableItalic.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #070739;        /* primary: donkere secties, koppen, footer */
  --navy-2: #060c56;
  --navy-3: #06062f;
  --blue: #004cfd;        /* accent: knoppen, links */
  --blue-hover: #1500ff;
  --blue-light: #0074fd;
  --text: #4d4d4d;        /* muted: broodtekst */
  --surface: #ecf2f5;     /* lichte blauwgrijze achtergrond */
  --surface-2: #dce8f5;
  --surface-3: #dde7ff;
  --card: #f2fbff;
  --white: #fff;
  --border: #e5e7eb;

  --font-heading: 'Libre Franklin', Arial, sans-serif;
  --font-body: 'Switzer', sans-serif;
  --font-ui: 'Inter', Arial, sans-serif;

  --nav-h: 7.1rem;
  --container: 1330px;
  --gutter: 2rem;
  --radius: 15px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.5;
  background: var(--white);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }
strong { font-weight: 600; }

/* 2. Typografie ---------------------------------------------------------- */
h1, h2, h3, h4, .heading { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--navy); }
.text-muted { color: var(--text); }
.text-white { color: var(--white); }
.text-blue { color: var(--blue); }
.font-ui { font-family: var(--font-ui); }
.eyebrow { color: var(--blue); font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.eyebrow--light { color: var(--surface-3); }
.eyebrow--caps { font-family: var(--font-heading); font-size: 12px; text-transform: uppercase; letter-spacing: .15em; color: var(--text); font-weight: 400; }
.lead { font-size: 18px; line-height: 1.65; color: var(--text); }
.lead + .lead { margin-top: 1rem; }
.body-sm { font-size: 14px; line-height: 1.65; color: var(--text); }
.body-sm + .body-sm { margin-top: .75rem; }
.section-title { font-size: clamp(28px, 3.6vw, 39px); margin-bottom: 20px; text-wrap: pretty; }
.section-title--sm { font-size: clamp(24px, 3vw, 30px); margin-bottom: 2rem; }
.section-title--xl { font-size: clamp(2rem, 4vw, 48px); line-height: 1.24; }
.section-header { max-width: 780px; margin-bottom: clamp(40px, 5vw, 56px); }
.section-header--narrow { max-width: 720px; }
.section-header p { margin-top: 0; }

/* 3. Layout -------------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container--narrow { max-width: 1100px; }
.container--form { max-width: 760px; }
.section { padding: 5rem 0; }
.section--sm { padding: 4rem 0; }
.section--tight { padding-top: 0; }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-surface { background: var(--surface); }
.bg-surface-2 { background: var(--surface-2); }
.bg-white { background: var(--white); }
.grid { display: grid; gap: 3rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid--center { align-items: center; }
.grid--start { align-items: start; }
.grid--gap-lg { gap: 5rem; }
.grid--gap-md { gap: 1.5rem; }
.grid--gap-sm { gap: 1.25rem; }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* 4. Knoppen ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-ui); font-weight: 500; font-size: 15px;
  background: var(--blue); color: var(--white);
  padding: .8rem 1.5rem; border-radius: 6px;
  transition: opacity .2s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { opacity: .9; }
.btn--pill { border-radius: 999px; font-weight: 700; font-size: 16px; padding: .9rem 1.75rem; }
.btn--pill:hover { opacity: 1; background: var(--blue-hover); }
.btn--outline { background: transparent; border: 1.5px solid rgba(255,255,255,.35); color: var(--white); padding: calc(.9rem - 1.5px) calc(1.75rem - 1.5px); }
.btn--outline:hover { border-color: var(--white); background: transparent; }
.btn--heading { font-family: var(--font-heading); font-weight: 400; font-size: 16px; padding: 1rem 2rem; }
.btn--block { width: 100%; padding: 1rem; }
.btn:disabled { opacity: .6; cursor: default; }
.link-arrow { color: var(--blue); font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; gap: .5rem; transition: opacity .2s; }
.link-arrow:hover { opacity: .8; }

/* 5. Navigatie ----------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(7,7,57,0);
  transition: background-color .3s ease;
}
.site-header.is-solid, .site-header.is-open { background: rgba(7,7,57,1); }
.site-header__inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; }
.site-header__logo img { height: 2rem; width: auto; }
.site-nav { display: flex; align-items: center; }
.site-nav__link {
  font-family: var(--font-ui); font-size: 1rem; color: rgba(255,255,255,.8);
  padding: .5rem .75rem; transition: color .2s; display: inline-flex; align-items: center; gap: 7px;
}
.site-nav__link:hover { color: var(--white); }
.site-nav__chevron { display: inline-flex; transition: transform .2s; }
.site-nav__item--services.is-open .site-nav__chevron { transform: rotate(180deg); }
.site-nav__cta { margin-left: .5rem; min-width: 180px; height: 40px; font-size: .9rem; padding: .625rem 1.25rem; }
.nav-toggle { display: none; padding: .5rem; flex-direction: column; gap: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); }

/* Services-dropdown */
.site-nav__item--services { position: static; }
.mega {
  display: none; position: absolute; left: 0; right: 0; top: 100%; padding-top: 12px; z-index: 40;
  justify-content: center; padding-left: var(--gutter); padding-right: var(--gutter);
}
.site-nav__item--services.is-open .mega { display: flex; }
.mega__panel {
  width: 100%; max-width: 780px; background: var(--white); border: 1px solid var(--surface-2);
  border-radius: 16px; padding: 20px; display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); gap: 20px;
  box-shadow: 0 40px 90px rgba(7,7,57,.55), 0 4px 14px rgba(7,7,57,.3);
}
.mega__links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2px 8px; }
.mega__link { display: flex; gap: 11px; align-items: flex-start; padding: 9px 10px; border-radius: 10px; color: var(--navy); transition: background .2s; }
.mega__link:hover { background: var(--card); }
.mega__icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 9px; background: var(--surface-3); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.mega__title { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 15px; line-height: 1.3; }
.mega__desc { display: block; font-size: 13px; line-height: 1.4; color: var(--text); margin-top: 2px; }
.mega__promo { background: var(--navy); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; color: var(--white); }
.mega__promo-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--surface-3); }
.mega__promo h4 { color: var(--white); font-size: 17px; font-weight: 600; margin: 9px 0 8px; line-height: 1.25; }
.mega__promo p { font-size: 13px; line-height: 1.5; color: rgba(236,242,245,.75); margin-bottom: 16px; }
.mega__promo a { margin-top: auto; font-weight: 700; font-size: 14px; color: var(--white); }
.mega__promo a:hover { color: var(--surface-3); }

/* Mobiel menu */
.mobile-nav { display: none; background: var(--navy); border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem var(--gutter); flex-direction: column; gap: 1.25rem; }
.site-header.is-open .mobile-nav { display: flex; }
.mobile-nav a { font-family: var(--font-ui); font-size: 1.125rem; color: var(--white); }
.mobile-nav__sub { display: flex; flex-direction: column; gap: .75rem; padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.15); }
.mobile-nav__sub a { font-size: 1rem; color: rgba(255,255,255,.8); }
.mobile-nav .btn { width: fit-content; font-size: .875rem; }

/* Pagina-inhoud begint onder de vaste nav */
main { padding-top: var(--nav-h); }
main.is-bare { padding-top: 0; }

/* 6. Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--navy) url('../cdn/w.svg') 0 200% / cover no-repeat;
  color: var(--white); overflow: hidden; padding: 1rem 5rem;
}
.site-footer__inner { max-width: var(--container); margin: 0 auto; padding: 4rem 0; }
.site-footer__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 2.5rem; }
.site-footer__col { display: flex; flex-direction: column; gap: .25rem; }
.site-footer__col p, .site-footer__col a, .site-footer__col button { font-size: .875rem; color: rgba(255,255,255,.8); text-align: left; }
.site-footer__col a:hover, .site-footer__col button:hover { color: var(--white); }
.site-footer__label { color: rgba(255,255,255,.6) !important; margin-bottom: .5rem; }
.site-footer__divider { height: 1px; background: rgba(255,255,255,.06); margin: 4rem 0 2.5rem; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; }
.site-footer__bottom img { height: 1.5rem; width: auto; filter: brightness(0) invert(1); }
.site-footer__bottom p { font-size: .875rem; color: rgba(255,255,255,.6); }

/* 7. Hero's -------------------------------------------------------------- */
.hero {
  background: var(--navy) url('../cdn/w.svg') 50% / cover;
  color: var(--white); margin-top: calc(-1 * var(--nav-h));
  padding-top: calc(var(--nav-h) + 5rem); padding-bottom: 5rem;
}
.hero--tight { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 4rem; overflow: hidden; }
.hero--home { padding-top: calc(var(--nav-h) + 4rem); padding-bottom: 4rem; overflow: hidden; }
.hero__breadcrumb { margin-bottom: 1.5rem; }
.hero--tight .hero__breadcrumb { margin-bottom: 1rem; }
.hero h1 { color: var(--white); font-size: 3rem; line-height: 1.2; }
.hero__title--xl { font-size: 3.75rem !important; }
.hero__title--lg { font-size: clamp(2.25rem, 4vw, 3rem) !important; }
.hero__split { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 3rem; align-items: center; }
.hero__split p { color: rgba(255,255,255,.7); line-height: 1.65; max-width: 28rem; }
.hero__lead { font-size: 18px; line-height: 1.6; color: var(--white); margin-bottom: 1rem; max-width: 640px; }
.hero__lead--soft { color: rgba(255,255,255,.75); }
.hero__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* Homepage hero */
.hero-home__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 1.5rem; align-items: start; }
.hero-home__text { max-width: 44rem; padding-top: 5rem; }
.hero-home__title { font-size: 61px; letter-spacing: -.02em; line-height: 1.2; color: var(--white); }
.hero-home__title span { color: var(--blue-light); }
.hero-home__text p { font-family: var(--font-ui); font-size: 18px; line-height: 1.65; color: rgba(255,255,255,.7); margin-top: 2rem; }
.hero-home__mockup { display: flex; align-items: center; justify-content: center; }
.hero-home__mockup img { width: 80%; padding-bottom: 52px; }

/* Stats-cards in service-hero's */
.stat-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.stat-card { border-radius: 14px; padding: 1.5rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); }
.stat-card--accent { background: var(--blue); border-color: var(--blue); }
.stat-card__value { font-family: var(--font-heading); font-weight: 700; font-size: 30px; color: var(--white); }
.stat-card__label { font-size: 15px; line-height: 1.5; color: rgba(236,242,245,.75); margin-top: 6px; }
.stat-card--accent .stat-card__label { color: rgba(255,255,255,.85); }

/* Breadcrumb */
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: .375rem; font-size: .875rem; }
.breadcrumb li { display: flex; align-items: center; gap: .375rem; }
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }
.breadcrumb [aria-current] { color: var(--white); font-weight: 500; }
.breadcrumb--light a { color: var(--text); }
.breadcrumb--light a:hover, .breadcrumb--light [aria-current] { color: var(--navy); }
.breadcrumb--light .sep { color: rgba(77,77,77,.5); }

/* 8. Secties & cards ----------------------------------------------------- */
/* Klantlogo-marquee */
.clients { background: var(--blue); padding: 2.5rem 0; overflow: hidden; }
.clients__track { display: flex; }
.clients__row { display: flex; flex-shrink: 0; align-items: center; gap: 4rem; padding-right: 4rem; animation: marquee 60s linear infinite; }
.clients:hover .clients__row { animation-play-state: paused; }
.clients__row img { height: 2rem; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .7; transition: opacity .2s; flex-shrink: 0; }
.clients__row img:hover { opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50.8%); } }

/* Stats-sectie (home) */
.stats-title { font-size: 3.7rem; letter-spacing: -.02em; line-height: 1.2; }
.stats-title span { color: var(--blue); }
.stats-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; padding-top: .5rem; }
.stats-row p:first-child { font-family: var(--font-heading); font-weight: 700; font-size: 2.25rem; color: var(--navy); }
.stats-row p + p { font-size: .875rem; color: var(--text); margin-top: .25rem; }

/* Services-sectie (home) */
.services-home { background: var(--navy) url('../cdn/w.png') 0 63% / 1140px no-repeat; padding: 4rem 0; overflow: hidden; }
.services-home__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.services-home__head img { height: 3rem; width: auto; }
.services-home__head h2 { color: var(--white); font-size: 2.7rem; letter-spacing: -.02em; }
.service-tile { border-radius: var(--radius); overflow: hidden; position: relative; display: flex; min-height: 240px; }
.service-tile__body { display: flex; flex-direction: column; gap: 1rem; padding: 2rem; flex: 1; }
.service-tile__body img { width: 3.5rem; height: 3.5rem; object-fit: contain; }
.service-tile h3 { font-size: 1.5rem; line-height: 1.2; }
.service-tile p { font-size: .875rem; line-height: 1.65; }
.service-tile__mockup { width: 42%; flex-shrink: 0; align-self: flex-end; overflow: hidden; }
.service-tile__mockup img { width: 100%; height: 100%; object-fit: contain; object-position: right bottom; }
.service-tile__mockup { display: flex; align-items: flex-end; }
.service-tile--navy { background: #070d5a; } .service-tile--navy h3 { color: var(--white); } .service-tile--navy p { color: rgba(255,255,255,.6); }
.service-tile--light { background: var(--surface-3); } .service-tile--light h3 { color: var(--navy); } .service-tile--light p { color: var(--text); }
.service-tile--blue { background: var(--blue); } .service-tile--blue h3 { color: var(--white); } .service-tile--blue p { color: rgba(255,255,255,.7); }

/* Waarden-sectie */
.values { position: relative; overflow: hidden; padding: 6rem 0 5rem; }
.values--dark { background: var(--navy); color: var(--white); }
.values__bg { position: absolute; inset: 0; object-fit: cover; opacity: .25; pointer-events: none; }
.values__corner { position: absolute; top: 2.5rem; right: 5rem; width: 4rem; height: 4rem; }
.values__head { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 5rem; }
.values__head h2 { max-width: 640px; }
.values--dark h2, .values--dark h3 { color: var(--white); }
.values__head p { margin-top: 1.5rem; font-family: var(--font-ui); font-size: 14px; line-height: 24px; max-width: 440px; color: var(--text); }
.values--dark .values__head p { color: rgba(255,255,255,.7); }
.values__grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 3rem; }
.values--dark .values__grid { gap: 0; }
.values--dark .value { padding: 0 2rem; }
.values--dark .value + .value { border-left: 1px solid rgba(255,255,255,.15); }
.value__icon { margin-bottom: 1.5rem; }
.value__icon img { width: 65px; height: 65px; }
.value__icon--flame { width: 65px; height: 65px; border-radius: 15px; background: var(--surface-3); display: flex; align-items: center; justify-content: center; }
.value__icon--flame img { width: 34px; height: auto; }
.value h3 { font-size: 24px; line-height: 1.4; margin-bottom: .75rem; }
.value p { font-family: var(--font-ui); font-size: 16px; line-height: 28px; color: var(--text); }
.values--dark .value p { color: rgba(255,255,255,.85); }

/* CTA-blok */
.cta { background: var(--surface); padding: 2.5rem 0; }
.cta__box { text-align: center; border-radius: 20px; margin: 1.5em 0; padding: 4em 20%; background: url('../cdn/contact-blok.svg') 50% / cover; }
.cta__box h2 { color: var(--white); font-size: 2.7rem; margin-bottom: 1rem; }
.cta__box p { color: rgba(255,255,255,.7); max-width: 36rem; margin: 0 auto 2rem; line-height: 1.65; }
.cta__box .btn { margin-top: 1em; }

/* Algemene cards */
.card { background: var(--card); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); }
.card--shadow { box-shadow: 0 18px 40px rgba(3,45,174,.08); }
.card--white { background: var(--white); }
.card--navy { background: var(--navy); color: var(--white); }
.card--surface { background: var(--surface); }
.card--xl { border-radius: 20px; }

/* Foto met offset-kader */
.photo-frame { position: relative; }
.photo-frame::before { content: ''; position: absolute; inset: 28px -28px -28px 28px; border-radius: var(--radius); background: var(--surface-2); }
.photo-frame--left::before { inset: 24px 24px -24px -24px; }
.photo-frame--navy::before { background: var(--navy-2); }
.photo-frame--surface::before { background: var(--surface); }
.photo-frame--outline::before { inset: 0; transform: translate(1rem, 1rem); background: none; border: 1px solid rgba(0,76,253,.3); }
.photo-frame__img { position: relative; width: 100%; object-fit: cover; border-radius: var(--radius); }
.photo-frame__img--sm { border-radius: 10px; }
.h-280 { height: 280px; } .h-370 { height: clamp(260px, 28vw, 370px); } .h-420 { height: clamp(280px, 32vw, 420px); } .h-440 { height: clamp(280px, 34vw, 440px); }

/* Feature-rij met vierkant icoon (koppelingen) */
.feature-row { display: flex; gap: 1.25rem; align-items: center; }
.feature-row + .feature-row { margin-top: 1rem; }
.feature-row__icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 5px 25px 5px 25px; background: var(--surface-2); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.feature-row p { font-size: 18px; line-height: 1.5; color: var(--navy); }

/* Check-lijst */
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem 4rem; }
.check-list li { display: flex; gap: 1rem; align-items: flex-start; font-size: 18px; line-height: 28px; color: var(--navy); }
.check-list__dot { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: var(--surface); display: flex; align-items: center; justify-content: center; }
.check-list--sm { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem 1.5rem; }
.check-list--sm li { font-size: 14px; font-weight: 600; line-height: 1.4; align-items: center; }
.check-list--sm .check-list__dot { width: 20px; height: 20px; }
.check-list--stack { grid-template-columns: 1fr; }

/* Genummerde kaarten (opbrengst) */
.num-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: clamp(24px, 3vw, 32px); display: flex; flex-direction: column; gap: 10px; }
.num-card__n { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--surface-3); letter-spacing: .06em; }
.num-card h3 { color: var(--white); font-weight: 600; font-size: 22px; line-height: 1.25; }
.num-card p { font-size: 16px; line-height: 1.55; color: rgba(236,242,245,.72); }

/* Waarom-kaarten met icoon */
.icon-card { background: var(--card); border-radius: 12px; padding: 28px; }
.icon-card__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.icon-card__icon img { width: 24px; height: 24px; object-fit: contain; }
.icon-card h3 { font-weight: 600; font-size: 20px; line-height: 1.3; margin-bottom: 8px; }
.icon-card p { font-size: 16px; line-height: 1.55; color: var(--text); }

/* Platform-/type-kaarten */
.type-card { background: var(--card); border: 1px solid var(--surface-2); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: 0 18px 40px rgba(3,45,174,.07); display: flex; flex-direction: column; gap: 14px; }
.type-card__logo { height: 60px; display: flex; align-items: center; }
.type-card__logo img { width: auto; object-fit: contain; }
.chip { align-self: flex-start; background: var(--surface-3); color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; border-radius: 20px; padding: 6px 14px; }
.type-card h3 { font-weight: 600; font-size: 24px; line-height: 1.25; }
.type-card p { font-size: 17px; line-height: 1.6; color: var(--text); }
.type-card .link-arrow { margin-top: auto; }

/* Banner (navy, in lichte sectie) */
.banner { margin-top: 1.5rem; background: var(--navy); border-radius: var(--radius); padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 44px); display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.banner h3 { color: var(--white); font-weight: 600; font-size: 25px; margin-bottom: 8px; }
.banner p { font-size: 17px; line-height: 1.6; color: rgba(236,242,245,.8); }
.banner > div { max-width: 780px; }

/* Interessant-kaart met blokjes */
.bullet-box { display: flex; align-items: flex-start; gap: 14px; background: var(--surface); border: 1px solid var(--surface-2); border-radius: 10px; padding: 16px 18px; }
.bullet-box + .bullet-box { margin-top: 14px; }
.bullet-box::before { content: ''; flex-shrink: 0; width: 10px; height: 10px; border-radius: 3px; background: var(--blue); margin-top: 6px; }
.bullet-box span { font-size: 17px; line-height: 1.5; color: var(--navy); }

/* Aanpak-stappen (5 kolommen met bovenlijn) */
.steps { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 2rem 0; }
.step { border-top: 3px solid rgba(7,7,57,.18); padding: 24px 28px 0 0; }
.step:first-child { border-top-color: var(--blue); }
.step__n { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--blue); margin-bottom: 12px; }
.step h3 { font-weight: 600; font-size: 20px; line-height: 1.3; margin-bottom: 10px; }
.step p { font-size: 16px; line-height: 1.55; color: var(--text); }

/* Stappen-lijst (koppelingen) */
.step-list > div { display: flex; gap: 1.25rem; align-items: baseline; padding: 14px 0; border-top: 1px solid rgba(7,7,57,.14); }
.step-list__n { flex-shrink: 0; width: 62px; font-family: var(--font-heading); font-weight: 700; font-size: 15px; letter-spacing: .04em; color: var(--blue); }
.step-list span + span { font-size: 18px; line-height: 1.5; color: var(--navy); }

/* Systemen-grid */
.systems { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 3rem 2.5rem; max-width: 1040px; margin: 0 auto; }
.system { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.system__icon { width: 80px; height: 80px; border-radius: 50%; background: var(--surface); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.system h3 { color: var(--white); font-size: 24px; }
.system p { font-size: 16px; line-height: 28px; letter-spacing: -.5px; color: rgba(236,242,245,.8); }

/* Contact-CTA kaart (servicepagina's) */
.contact-cta { position: relative; overflow: hidden; background: var(--navy); border-radius: var(--radius); padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 60px); text-align: center; color: var(--white); }
.contact-cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; }
.contact-cta__w { position: absolute; inset: 0; background: url('../cdn/w.svg') right center / cover; opacity: .6; }
.contact-cta__body { position: relative; z-index: 2; }
.contact-cta h2 { color: var(--white); font-weight: 600; font-size: clamp(28px, 3.6vw, 39px); max-width: 760px; margin: 0 auto 20px; }
.contact-cta p { font-size: 18px; line-height: 1.6; color: var(--surface); max-width: 660px; margin: 0 auto 2rem; }
.contact-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Orbit (koppelingen-hero) */
.orbit { justify-self: center; position: relative; width: 100%; max-width: 441px; aspect-ratio: 441 / 458; }
.orbit__ring { position: absolute; left: 12%; top: 12%; width: 76%; height: 74%; border-radius: 50%; border: 3px dashed rgba(159,159,159,.45); }
.orbit__center { position: absolute; left: 50%; top: 49%; transform: translate(-50%,-50%); width: 37%; aspect-ratio: 1; border-radius: 50%; background: var(--navy-2); box-shadow: 0 2px 90px rgba(3,45,174,.9); display: flex; align-items: center; justify-content: center; }
.orbit__center svg { width: 46%; }
.orbit__node { position: absolute; width: 20.5%; aspect-ratio: 1; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 60px rgba(34,17,119,.9); }
.orbit__node--empty { border: 2px dashed rgba(236,242,245,.45); background: rgba(255,255,255,.05); box-shadow: none; font-family: var(--font-heading); font-weight: 700; font-size: 32px; color: rgba(236,242,245,.6); }

/* 9. Accordions ---------------------------------------------------------- */
.accordion { display: flex; flex-direction: column; gap: .75rem; }
.accordion__item { background: var(--white); border-radius: 16px; border: 1px solid #f3f4f6; overflow: hidden; }
.accordion__trigger { width: 100%; display: flex; align-items: center; gap: 1.5rem; padding: 1.25rem 1.5rem; text-align: left; transition: opacity .2s; }
.accordion__trigger:hover { opacity: .8; }
.accordion__num { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--text); width: 2rem; flex-shrink: 0; }
.accordion__title { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--navy); flex: 1; }
.accordion__icon { flex-shrink: 0; color: var(--navy); transition: transform .2s; }
.accordion__item.is-open .accordion__icon { transform: rotate(90deg); }
.accordion__panel { display: none; padding: 0 1.5rem 1.5rem; }
.accordion__panel--indent { margin-left: 3.5rem; }
.accordion__item.is-open .accordion__panel { display: block; }
.accordion__panel p { font-size: .875rem; line-height: 1.65; color: var(--text); }
.accordion__panel p + p { margin-top: .75rem; }
.accordion__panel a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* Genummerde FAQ (servicepagina's) */
.faq { display: flex; flex-direction: column; gap: 1rem; }
.faq__item { background: var(--card); border-radius: 20px; padding: clamp(24px, 3.5vw, 44px) clamp(24px, 4vw, 56px); }
.faq__trigger { width: 100%; display: flex; align-items: flex-start; gap: clamp(16px, 3vw, 40px); text-align: left; }
.faq__n { font-family: var(--font-heading); font-weight: 600; font-size: clamp(20px, 2.2vw, 30px); line-height: 1.25; color: var(--blue); flex-shrink: 0; }
.faq__q { flex: 1; font-family: var(--font-heading); font-weight: 600; font-size: clamp(19px, 2vw, 25px); line-height: 1.3; color: var(--navy); }
.faq__icon { flex-shrink: 0; color: var(--navy); transition: transform .2s; margin-top: 2px; }
.faq__item.is-open .faq__icon { transform: rotate(90deg); }
.faq__a { display: none; font-size: 18px; line-height: 1.65; color: var(--text); margin-top: 20px; max-width: 860px; padding-left: clamp(0px, 4vw, 70px); }
.faq__item.is-open .faq__a { display: block; }
.faq-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* 10. Formulieren -------------------------------------------------------- */
.field { display: block; }
.field + .field, .field-row + .field, .field + .field-row { margin-top: 1.5rem; }
.field label, .field-row label { display: block; font-family: var(--font-heading); font-size: 12px; text-transform: uppercase; letter-spacing: .15em; color: var(--text); margin-bottom: .5rem; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.input {
  width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: .75rem 1rem;
  font-family: var(--font-body); font-size: .875rem; color: var(--navy); background: var(--white);
  transition: border-color .2s;
}
.input:focus { outline: none; border-color: var(--navy); }
textarea.input { resize: none; }
.honeypot { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-error { color: #dc2626; font-size: .875rem; margin-top: 1rem; }
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 0; height: 100%; }
.form-success p:first-child { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; color: var(--navy); margin-bottom: .5rem; }
.form-success p + p { color: var(--text); }
[hidden] { display: none !important; }

/* RSVP-formulier (15 jaar) */
.rsvp { background: var(--card); border-radius: 20px; padding: clamp(24px, 4vw, 48px); box-shadow: 0 18px 40px rgba(3,45,174,.12); }
.rsvp h3 { font-size: clamp(24px, 3vw, 30px); margin-bottom: .5rem; }
.rsvp > p { font-size: 16px; line-height: 1.65; color: var(--text); margin-bottom: 1.75rem; }
.rsvp__choice { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem; margin-bottom: 1.75rem; }
.rsvp__choice button { border-radius: 10px; border: 1px solid var(--surface-2); background: var(--white); padding: 1rem 1.25rem; font-weight: 600; font-size: 16px; text-align: left; color: var(--navy); transition: border-color .2s, background .2s, color .2s; }
.rsvp__choice button:hover { border-color: var(--blue); }
.rsvp__choice button.is-yes { background: var(--blue); border-color: var(--blue); color: var(--white); }
.rsvp__choice button.is-no { background: var(--navy); border-color: var(--navy); color: var(--white); }
.rsvp .field label, .rsvp .field-row label { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.rsvp .input { border-radius: 10px; font-size: 16px; padding: .75rem 1rem; border-color: var(--surface-2); }
.rsvp .input:focus { border-color: var(--blue); }
.rsvp__check { display: flex; align-items: center; gap: .75rem; margin: 1rem 0; cursor: pointer; font-size: 16px; color: var(--navy); }
.rsvp__check input { width: 20px; height: 20px; accent-color: var(--blue); }
.rsvp__success { text-align: center; }
.rsvp__success .emoji { font-size: 2.25rem; margin-bottom: 1rem; }
.rsvp__success h3 { margin-bottom: .75rem; }
.rsvp__success p { font-size: 18px; line-height: 1.65; color: var(--text); max-width: 480px; margin: 0 auto; }

/* 11. Cookiebanner ------------------------------------------------------- */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 100; margin: 0 auto; max-width: 48rem;
  border-radius: 16px; background: var(--white); padding: 2rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); border: 1px solid rgba(0,0,0,.05);
  display: flex; gap: 2rem; align-items: flex-start; justify-content: space-between;
}
.cookie-banner h2 { font-size: 1.25rem; margin-bottom: .5rem; }
.cookie-banner p { font-size: .875rem; line-height: 1.65; color: var(--text); }
.cookie-banner p a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: .5rem; align-items: center; flex-shrink: 0; }
.btn-ghost { font-family: var(--font-ui); font-size: .875rem; font-weight: 500; color: var(--navy); border: 1px solid rgba(7,7,57,.2); border-radius: 999px; padding: .625rem 1.25rem; transition: background .2s; }
.btn-ghost:hover { background: rgba(7,7,57,.05); }
.btn-round { font-family: var(--font-ui); font-size: .875rem; font-weight: 500; color: var(--white); background: var(--blue); border-radius: 999px; padding: .625rem 1.25rem; transition: opacity .2s; }
.btn-round:hover { opacity: .9; }

/* 12. Pagina-specifiek --------------------------------------------------- */
/* Services-overzicht */
.services-intro { display: flex; gap: 3rem; align-items: center; }
.services-intro > div:first-child { flex: 1; min-width: 0; }
.services-intro__photo { flex-shrink: 0; width: 480px; }
.extra-service { background: var(--surface); border-radius: 16px; padding: 2rem; display: flex; gap: 1.25rem; align-items: flex-start; }
.extra-service img { width: 3rem; height: 3rem; object-fit: contain; flex-shrink: 0; }
.extra-service h3 { font-size: 1rem; margin-bottom: .5rem; }

/* Over ons */
.about-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; }
.about-stats > div { background: var(--surface); border-radius: 16px; padding: 2rem; }
.about-stats .value { font-family: var(--font-heading); font-weight: 700; font-size: 3rem; margin-bottom: .5rem; }
.about-stats .label { font-family: var(--font-heading); font-weight: 700; margin-bottom: .5rem; }
.about-stats p:last-child { font-size: .875rem; color: var(--text); }
.about-list > div + div { margin-top: 1rem; }
.about-list p:first-child { font-weight: 700; font-size: .875rem; }
.about-list p + p { font-size: .875rem; line-height: 1.65; color: var(--text); }
.img-cover { width: 100%; object-fit: cover; border-radius: 16px; }

/* Team */
.team-scroller { overflow-x: auto; padding-bottom: 1.5rem; cursor: grab; user-select: none; -webkit-overflow-scrolling: touch; }
.team-scroller.is-dragging { cursor: grabbing; }
.team-scroller__track { display: flex; gap: 1.5rem; padding: 0 5rem; width: max-content; }
.team-member { width: 400px; flex-shrink: 0; }
.team-member__photo { width: 400px; height: 450px; background: var(--surface); border-radius: 16px; margin-bottom: 1rem; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.team-member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; pointer-events: none; }
.team-member__name { font-family: var(--font-heading); font-weight: 600; font-size: 30px; line-height: 1.2; }
.team-member__role { font-family: var(--font-ui); font-size: 30px; line-height: 1.2; color: var(--text); }
.team-scroller-wrap { position: relative; }
.team-scroller-wrap::after { content: ''; position: absolute; right: 0; top: 0; bottom: 1.5rem; width: 8rem; background: linear-gradient(to left, #fff, transparent); pointer-events: none; }

/* Cases */
.case-list { border-top: 0; }
.case-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; padding: 2rem 0; }
.case-row + .case-row { border-top: 1px solid rgba(255,255,255,.1); }
.case-card__img { position: relative; height: 350px; border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.1); margin-bottom: 1rem; }
.case-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.case-card:hover .case-card__img img { transform: scale(1.05); }
.case-card h2 { color: var(--white); font-size: 1.125rem; line-height: 1.35; }
.detail-hero { position: relative; height: 480px; overflow: hidden; background: var(--navy); }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.2) 50%, transparent); }
.detail-hero__text { position: absolute; left: 0; right: 0; bottom: 0; padding: 0 5rem 2.5rem; max-width: var(--container); margin: 0 auto; z-index: 2; }
.detail-hero__text h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); max-width: 42rem; margin-bottom: 1rem; }
.detail-hero__meta { display: flex; flex-wrap: wrap; gap: .25rem 1rem; color: rgba(255,255,255,.8); font-size: .875rem; }
.detail-hero__meta .sep { color: rgba(255,255,255,.4); }
.prose { font-size: 1rem; line-height: 1.65; color: var(--text); }
.prose h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); margin: 2.5rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose p + p { margin-top: 1rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin: 1rem 0; }
.prose a { color: var(--blue); text-decoration: underline; }
.prose img { border-radius: 12px; margin: 1.5rem 0; }
.sticky-img { position: sticky; top: 7rem; }
.sticky-img img { width: 100%; height: auto; object-fit: contain; }
.quote-box { background: var(--surface); border-radius: 16px; padding: 3.5rem 5rem; text-align: center; margin-top: 6rem; }
.quote-box blockquote { font-size: 1.125rem; line-height: 1.65; color: var(--navy); max-width: 42rem; margin: 0 auto; }
.quote-box__author { margin-top: 1rem; font-size: .875rem; color: var(--text); }
.quote-box::after { content: ''; display: block; width: 5rem; height: 3px; border-radius: 3px; background: var(--blue); margin: 2rem auto 0; }
.slider { position: relative; aspect-ratio: 16 / 9; width: 100%; overflow: hidden; margin-top: 6rem; }
.slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .3s; }
.slider img.is-active { opacity: 1; }
.slider::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 5rem; background: linear-gradient(to top, rgba(0,0,0,.25), transparent); pointer-events: none; }
.slider__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(0,0,0,.4); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; z-index: 2; }
.slider__btn:hover { background: rgba(0,0,0,.6); }
.slider__btn--prev { left: 1rem; } .slider__btn--next { right: 1rem; }
.slider__dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 2; }
.slider__dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); }
.slider__dots button.is-active { background: var(--white); }

/* Insights */
.insights-tools { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.search { position: relative; flex: 1; max-width: 24rem; }
.search svg { position: absolute; left: .75rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: var(--text); }
.search input { width: 100%; padding: .625rem 1rem .625rem 2.25rem; border-radius: 8px; border: 1px solid var(--border); background: var(--white); font-size: .875rem; color: var(--navy); }
.search input:focus { outline: none; border-color: var(--blue); }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.filters button { padding: .5rem 1rem; border-radius: 6px; font-size: .875rem; background: var(--white); border: 1px solid var(--border); color: var(--navy); transition: border-color .2s; }
.filters button:hover { border-color: var(--blue); }
.filters button.is-active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.insight-card { display: flex; flex-direction: column; }
.insight-card__img { border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 10; background: var(--surface); margin-bottom: 1rem; }
.insight-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.insight-card:hover .insight-card__img img { transform: scale(1.05); }
.insight-card__meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: .75rem; }
.tag { display: inline-flex; align-items: center; gap: .375rem; font-size: .75rem; border-radius: 999px; padding: .25rem .75rem; border: 1px solid var(--border); color: var(--text); }
.tag--accent { background: var(--blue); border-color: var(--blue); color: var(--white); font-weight: 500; }
.insight-card h3 { font-size: 1.125rem; line-height: 1.35; margin-bottom: .5rem; transition: color .2s; }
.insight-card:hover h3 { color: var(--blue); }
.insight-card p { font-size: .875rem; line-height: 1.65; color: var(--text); margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.insight-card__more { margin-top: auto; font-size: .875rem; color: var(--blue); font-weight: 500; }
.float-right { float: right; margin: 0 0 1rem 2rem; width: 45%; max-width: 360px; border-radius: 12px; }
.clearfix::after { content: ''; display: table; clear: both; }

/* Contact */
.contact-info > div + div { margin-top: 1rem; }
.contact-info p:first-child { font-family: var(--font-heading); font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--text); margin-bottom: .25rem; }
.contact-info a, .contact-info p + p { font-family: var(--font-heading); font-size: .875rem; color: var(--text); }
.contact-info a:hover { color: var(--navy); }

/* Cookiebeleid */
.legal { max-width: 48rem; margin: 0 auto; padding: 4rem 5rem; font-size: 1rem; line-height: 1.65; color: var(--text); }
.legal h2 { font-size: 1.5rem; margin: 2.5rem 0 .75rem; }
.legal h3 { font-size: 1.125rem; margin: 1.5rem 0 .5rem; }
.legal p { margin-bottom: 1.5rem; }
.legal ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal ul li + li { margin-top: .25rem; }
.legal a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { text-decoration: none; }
.legal table { width: 100%; font-size: .875rem; border-collapse: collapse; margin-bottom: 1.5rem; }
.legal th { text-align: left; padding: .5rem 1rem .5rem 0; font-family: var(--font-heading); font-weight: 700; color: var(--navy); border-bottom: 1px solid rgba(7,7,57,.1); }
.legal td { padding: .5rem 1rem .5rem 0; vertical-align: top; border-bottom: 1px solid rgba(7,7,57,.05); }
.legal td:first-child { font-family: ui-monospace, monospace; font-size: .75rem; }
.legal .table-wrap { overflow-x: auto; }
.legal .small { font-size: .75rem; color: rgba(77,77,77,.7); margin-top: 2.5rem; }

/* 15 jaar */
.invite-hero { background: var(--navy-3); position: relative; overflow: hidden; color: var(--white); }
.invite-hero__pattern { position: absolute; inset: 0; pointer-events: none; }
.invite-hero__pattern img { position: absolute; max-width: none; }
.invite-hero__diamond { position: absolute; width: 24px; height: 24px; background: var(--navy-2); transform: rotate(45deg); border-radius: 13px 0 13px 0; }
.invite-hero__body { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; padding: 6rem 2rem; text-align: center; }
.invite-hero__logo { height: 4rem; width: auto; margin: 0 auto 3rem; }
.invite-hero__kicker { font-family: var(--font-heading); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: 28px; margin-bottom: .75rem; }
.invite-hero__date { font-family: var(--font-ui); color: rgba(255,255,255,.7); font-size: 18px; margin-bottom: 2.5rem; }
.invite-hero h1 { color: var(--white); font-size: clamp(2.25rem, 6vw, 3.75rem); margin-bottom: 1.5rem; }
.invite-hero__lead { font-size: 20px; line-height: 1.65; color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto 2.5rem; }
.event-info { background: var(--navy-3); border-radius: 16px; padding: .5rem 2rem; margin-bottom: 2.5rem; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
.event-info > div { display: flex; align-items: flex-start; gap: .75rem; padding: 1.25rem 0; }
.event-info > div + div { border-left: 1px solid rgba(255,255,255,.1); padding-left: 1.25rem; }
.event-info .emoji { font-size: 1.25rem; line-height: 1.5rem; }
.event-info strong { display: block; color: var(--white); font-size: 15px; line-height: 1.35; }
.event-info span { display: block; color: rgba(255,255,255,.6); font-size: .875rem; margin-top: 2px; }

/* 13. Utilities ---------------------------------------------------------- */
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; } .mt-8 { margin-top: 4rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-6 { margin-bottom: 3rem; } .mb-8 { margin-bottom: 4rem; } .mb-10 { margin-bottom: 5rem; } .mb-12 { margin-bottom: 6rem; }
.max-w-md { max-width: 28rem; } .max-w-lg { max-width: 32rem; } .max-w-2xl { max-width: 42rem; } .max-w-3xl { max-width: 48rem; }
.hidden-desktop { display: none; }
.text-soft { color: rgba(236,242,245,.82); }
.text-white-70 { color: rgba(255,255,255,.7); }

/* 14. Responsive --------------------------------------------------------- */
@media (min-width: 768px) {
  :root { --gutter: 5rem; }
  .hero h1 { font-size: 3.75rem; }
}
@media (max-width: 1023px) {
  .grid-2, .grid-4, .grid-5, .hero__split, .services-intro { grid-template-columns: 1fr; }
  .services-intro { flex-direction: column; }
  .services-intro__photo { width: 100%; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .values__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2.5rem !important; }
  .values--dark .value { padding: 0; }
  .values--dark .value + .value { border-left: 0; }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .systems { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-home__grid { grid-template-columns: 1fr; }
  .hero-home__mockup { display: none; }
  .hero-home__text { padding-top: 2rem; }
  .sticky-img { position: static; }
  .float-right { float: none; width: 100%; max-width: none; margin: 0 0 1.5rem; }
}
@media (max-width: 767px) {
  .hero h1, .hero__title--xl, .hero__title--lg { font-size: 2.25rem !important; }
  .hero-home__title { font-size: 2.5rem; }
  .stats-title { font-size: 2.25rem; }
  .services-home__head h2, .cta__box h2 { font-size: 1.75rem; }
  .cta__box { padding: 3em 1.5em; }
  .site-footer { padding: 1rem 2rem; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3, .stats-row, .about-stats, .systems, .check-list, .check-list--sm, .field-row, .rsvp__choice, .event-info, .steps, .stat-cards, .mega__links, .case-row { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .event-info > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding-left: 0; }
  .service-tile { flex-direction: column; }
  .service-tile__mockup { width: 100%; }
  .cookie-banner { flex-direction: column; padding: 1.5rem; }
  .cookie-banner__actions { width: 100%; }
  .team-scroller__track { padding: 0 2rem; }
  .team-member, .team-member__photo { width: 300px; }
  .team-member__photo { height: 340px; }
  .team-member__name, .team-member__role { font-size: 22px; }
  .detail-hero { height: 400px; }
  .detail-hero__text { padding: 0 2rem 2rem; }
  .quote-box { padding: 2.5rem 1.5rem; }
  .legal { padding: 3rem 2rem; }
  .invite-hero__body { padding: 4rem 1.5rem; }
  .invite-hero__logo { height: 3rem; }
  .invite-hero__kicker { font-size: 20px; }
  .faq__item { padding: 24px; }
  .faq__a { padding-left: 0; }
  .step { padding-right: 0; }
  .photo-frame::before { display: none; }
  .mega__panel { grid-template-columns: 1fr; }
}

/* Case-kaart met logo i.p.v. foto */
.case-card__img img.contain { object-fit: contain; padding: 4rem; background: var(--white); }
