/* ============================================================
   Manava — www.manava.nl
   Huisstijl: diep bosgroen, warm papierwit, steenrood accent.
   Geen externe fonts of CDN's; alles self-contained.
   ============================================================ */

:root {
  --green:       #16302a;   /* diep bosgroen: vlakken, hero */
  --green-deep:  #0d211c;   /* donkerste laag */
  --green-mid:   #1c3b31;   /* merkkleur (zelfde als intake-tool) */
  --green-soft:  #eef2ee;   /* lichte groentint */
  --rust:        #a93b1c;   /* steenrood: knoppen en accenten */
  --rust-strong: #9a3416;   /* steenrood op licht (AA-contrast) */
  --rust-dark:   #86290e;
  --paper:       #faf7f0;   /* warm papierwit */
  --paper-dim:   #f2ede2;
  --ink:         #1b2420;   /* tekst op licht */
  --ink-soft:    #4c5a53;
  --cream:       #f4efe3;   /* tekst op donker */
  --cream-dim:   #b9c4bc;
  --gold:        #c9a86a;   /* subtiel goud voor details */
  --line:        rgba(22, 48, 42, .14);
  --line-light:  rgba(244, 239, 227, .16);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1160px;
  --radius: 18px;
  --shadow: 0 20px 60px -24px rgba(13, 33, 28, .35);
  --ease: cubic-bezier(.22, .8, .24, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background:
    linear-gradient(rgba(22,48,42,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,48,42,.045) 1px, transparent 1px),
    var(--paper);
  background-size: 96px 96px, 96px 96px, auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--rust); color: #fff; }

img { max-width: 100%; display: block; }
a { color: var(--rust-strong); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--rust-strong); color: #fff;
  padding: 10px 18px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- typografie ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--green-mid);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rust-strong);
  margin-bottom: 18px;
}

.section-title { font-size: clamp(30px, 4.4vw, 46px); max-width: 17ch; }
.section-intro { max-width: 58ch; color: var(--ink-soft); margin-top: 18px; font-size: 18px; }

em.brand { font-style: italic; color: var(--rust-strong); }

/* ---------- nav ---------- */

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.site-nav.scrolled {
  background: rgba(250, 247, 240, .88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -22px rgba(22,48,42,.45);
}
.site-nav.hidden { transform: translateY(-100%); }

.nav-inner {
  display: flex; align-items: center; gap: 34px;
  padding: 18px 24px;
  max-width: var(--wrap); margin: 0 auto;
}
.wordmark {
  font-family: var(--serif);
  font-size: 27px;
  color: var(--green-mid);
  text-decoration: none;
  letter-spacing: .01em;
  margin-right: auto;
  display: flex; align-items: center; gap: 11px;
}
.wordmark .dot { color: var(--rust); }

.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: var(--green-mid);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 1.5px; background: var(--rust);
  transition: right .3s var(--ease);
}
.nav-links a:hover { color: var(--rust-strong); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--rust);
  border-radius: 999px;
  padding: 9px 22px !important;
  color: #fff !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--rust-dark); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 9px; right: 9px; height: 2px;
  background: var(--green-mid);
  transition: transform .3s var(--ease), opacity .3s, top .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-open .nav-toggle span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-open .nav-toggle span { background: var(--cream); }
  .nav-links {
    position: fixed; inset: 0;
    background: var(--green-deep);
    flex-direction: column; justify-content: center;
    gap: 34px;
    opacity: 0; pointer-events: none;
    transition: opacity .35s var(--ease);
    z-index: -1;
  }
  .nav-links a { font-size: 24px; font-family: var(--serif); color: var(--cream); }
  .nav-open .nav-links { opacity: 1; pointer-events: auto; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--ink);
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-grain::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 120px; padding-bottom: 80px;
}
.hero .eyebrow { color: var(--rust-strong); }
.hero h1 {
  font-size: clamp(42px, 6.6vw, 80px);
  color: var(--green-mid);
  max-width: 15ch;
}
.hero h1 em { font-style: italic; color: var(--rust-strong); }
.hero-sub {
  margin-top: 26px;
  max-width: 46ch;
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--ink-soft);
}
.hero-actions { margin-top: 42px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-meta {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  padding: 22px 0 30px;
}
.hero-meta .wrap {
  display: flex; gap: 14px 38px; flex-wrap: wrap;
  align-items: center;
  color: var(--ink-soft);
  font-size: 14px; letter-spacing: .06em;
}
.hero-meta strong { color: var(--green-mid); font-weight: 600; }

.scroll-hint {
  position: absolute; bottom: 96px; right: 40px; z-index: 2;
  width: 1px; height: 64px;
  background: linear-gradient(var(--green-mid) 0%, transparent 100%);
  opacity: .5;
  animation: hint 2.4s var(--ease) infinite;
}
@keyframes hint {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- knoppen ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 16px; font-weight: 600;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--rust); color: #fff; box-shadow: 0 14px 34px -14px rgba(169, 59, 28, .7); }
.btn-primary:hover { background: var(--rust-dark); transform: translateY(-2px); }

.btn-ghost { border-color: rgba(22,48,42,.35); color: var(--green-mid); }
.btn-ghost:hover { border-color: var(--green-mid); transform: translateY(-2px); }
.section-dark .btn-ghost { border-color: rgba(244,239,227,.4); color: var(--cream); }
.section-dark .btn-ghost:hover { border-color: var(--cream); }

.btn-dark { background: var(--green-mid); color: var(--cream); }
.btn-dark:hover { background: var(--green-deep); transform: translateY(-2px); }

/* ---------- marquee ---------- */

.marquee {
  background: var(--green-deep);
  color: var(--cream-dim);
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--line-light);
}
.marquee-track {
  display: flex; gap: 64px;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  white-space: nowrap;
}
.marquee-track span { display: flex; align-items: center; gap: 64px; }
.marquee-track .sep { color: var(--rust); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- secties ---------- */

.section { padding: 110px 0; position: relative; }
.section-dark {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green) 100%);
  color: var(--cream);
}
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .section-intro { color: var(--cream-dim); }
.section-dark .eyebrow { color: var(--gold); }
.section-tint { background: var(--paper-dim); }

.section-head { margin-bottom: 56px; }
.section-head.split {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 30px; flex-wrap: wrap;
}

/* ---------- diensten ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover { box-shadow: var(--shadow); }
.service-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--gold);
  display: block; margin-bottom: 20px;
}
.service-card h3 { font-size: 23px; margin-bottom: 12px; }
.service-card p { color: var(--ink-soft); font-size: 15.5px; }
.service-tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span {
  font-size: 12.5px; font-weight: 600;
  color: var(--green-mid);
  background: var(--green-soft);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ---------- aanpak ---------- */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  counter-increment: step;
  padding: 44px 34px 50px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.step + .step { border-left: 1px solid var(--line); }
@media (max-width: 860px) { .step + .step { border-left: 0; } }
.step::before {
  content: "0" counter(step);
  font-family: var(--serif); font-style: italic;
  font-size: 52px; color: transparent;
  -webkit-text-stroke: 1px var(--rust-strong);
  display: block; margin-bottom: 22px;
  opacity: .9;
}
.step h3 { font-size: 24px; margin-bottom: 12px; }
.step p { color: var(--ink-soft); font-size: 15.5px; }
.section-dark .step p { color: var(--cream-dim); }
.section-dark .steps, .section-dark .step, .section-dark .step + .step { border-color: var(--line-light); }

/* ---------- case ---------- */

.case-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .case-panel { grid-template-columns: 1fr; } }

.case-visual {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--green-mid), var(--green-deep));
  color: var(--cream);
  padding: 40px 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.case-visual::after {
  content: "";
  position: absolute; right: -70px; top: -70px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,106,.35);
}
.case-visual::before {
  content: "";
  position: absolute; right: -30px; top: -30px;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,106,.25);
}
.case-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
}
.case-quote::before { content: "“"; color: var(--gold); font-size: 1.4em; }
.case-visual footer { margin-top: 24px; font-size: 14px; color: var(--cream-dim); letter-spacing: .04em; }

.case-points { list-style: none; margin: 26px 0 34px; display: grid; gap: 14px; }
.case-points li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-soft); }
.case-points .tick {
  flex: 0 0 22px; height: 22px; margin-top: 3px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-mid);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

/* ---------- gratis tools band ---------- */

.tools-band {
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(120deg, var(--green-mid) 0%, var(--green-deep) 80%);
  color: var(--cream);
  padding: clamp(36px, 5vw, 64px);
  display: flex; gap: 36px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.tools-band::after {
  content: "";
  position: absolute; left: -60px; bottom: -110px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(201,168,106,.3);
}
.tools-band h3 { color: var(--cream); font-size: clamp(24px, 3vw, 32px); max-width: 22ch; }
.tools-band p { color: var(--cream-dim); max-width: 52ch; margin-top: 12px; }

/* ---------- artikelen ---------- */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.article-card .cat {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--rust-strong);
  margin-bottom: 16px;
}
.article-card h3 { font-size: 22px; margin-bottom: 12px; }
.article-card p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.article-card .more {
  margin-top: 22px;
  font-weight: 600; font-size: 15px;
  color: var(--green-mid);
  display: inline-flex; align-items: center; gap: 8px;
}
.article-card:hover .more { color: var(--rust-strong); }

/* ---------- over ---------- */

.about-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .about-panel { grid-template-columns: 1fr; } }

.about-mark {
  aspect-ratio: 1;
  max-width: 400px;
  border-radius: 50%;
  background: radial-gradient(closest-side, #23473c, var(--green-deep));
  display: grid; place-items: center;
  position: relative;
  margin: 0 auto;
}
.about-mark::before, .about-mark::after {
  content: "";
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,106,.4);
  animation: orbit 26s linear infinite;
}
.about-mark::after {
  inset: -34px;
  border-color: rgba(201,168,106,.2);
  animation-duration: 44s; animation-direction: reverse;
}
@keyframes orbit { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .about-mark::before, .about-mark::after { animation: none; }
}
.about-mark .glyph {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(80px, 10vw, 130px);
  color: var(--cream);
}
.about-mark .glyph small {
  display: block;
  font-size: 15px; letter-spacing: .3em; text-transform: uppercase;
  font-style: normal; font-family: var(--sans);
  color: var(--gold);
  text-align: center; margin-top: 8px;
}

.founder {
  margin-top: 30px;
  display: flex; gap: 18px; align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.founder .avatar {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green-mid); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 22px;
  flex: 0 0 58px;
}
.founder strong { display: block; color: var(--green-mid); }
.founder span { color: var(--ink-soft); font-size: 14.5px; }

/* ---------- contact ---------- */

.contact-panel { text-align: center; max-width: 720px; margin: 0 auto; }
.contact-panel .eyebrow { text-align: center; }
.contact-panel h2 { font-size: clamp(34px, 5vw, 56px); color: var(--cream); margin: 0 auto; }
.contact-panel p { color: var(--cream-dim); margin: 22px auto 40px; max-width: 46ch; }
.contact-mail {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,106,.4);
  transition: border-color .25s, color .25s;
}
.contact-mail:hover { color: var(--cream); border-color: var(--cream); }

/* ---------- footer ---------- */

.site-footer {
  background: var(--green-deep);
  color: var(--cream-dim);
  padding: 60px 0 40px;
  border-top: 1px solid var(--line-light);
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .wordmark { font-size: 30px; margin-bottom: 14px; }
.footer-grid h4 {
  color: var(--cream);
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: var(--cream-dim); text-decoration: none; transition: color .25s; }
.footer-grid a:hover { color: var(--cream); }
.footer-legal {
  border-top: 1px solid var(--line-light);
  padding-top: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px;
}

/* ---------- reveal-animaties ---------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- subpagina's ---------- */

.page-hero {
  color: var(--ink);
  padding: 190px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { color: var(--green-mid); font-size: clamp(36px, 5.6vw, 62px); max-width: 18ch; }
.page-hero .eyebrow { color: var(--rust-strong); }
.page-hero .hero-sub { max-width: 60ch; }
.page-hero .meta-line { color: var(--ink-soft); }

.prose { max-width: 720px; }
.prose h2 { font-size: 30px; margin: 54px 0 18px; }
.prose h3 { font-size: 22px; margin: 36px 0 12px; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); }
.prose p strong { color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: var(--ink-soft); display: grid; gap: 8px; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 24px;
  margin: 30px 0;
  font-family: var(--serif); font-style: italic;
  font-size: 21px; color: var(--green-mid);
}

.meta-line {
  display: flex; gap: 18px; flex-wrap: wrap;
  color: var(--ink-soft); font-size: 14.5px;
  margin-top: 22px;
}

.back-link {
  display: inline-flex; gap: 8px; align-items: center;
  text-decoration: none; font-weight: 600; font-size: 15px;
  color: var(--green-mid);
  margin-bottom: 34px;
}
.back-link:hover { color: var(--rust-strong); }

/* twee-koloms feitenblok (over ons / case) */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin: 44px 0;
}
.fact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.fact .k {
  font-family: var(--serif); font-style: italic;
  font-size: 30px; color: var(--rust-strong);
  display: block; margin-bottom: 6px;
}
.fact .v { color: var(--ink-soft); font-size: 15px; }

/* ---------- partners ---------- */

.partners {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 34px 0 38px;
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.partners-track {
  display: flex; gap: 70px;
  width: max-content;
  animation: marquee 42s linear infinite;
  align-items: baseline;
}
.partners-track span { display: flex; gap: 70px; align-items: baseline; white-space: nowrap; }
.partners-track i {
  font-style: normal;
  color: var(--green-mid);
  opacity: .55;
  font-size: 21px;
  transition: opacity .3s;
}
.partners-track i:hover { opacity: 1; }
/* typografische "logo's" tot er echte beeldmerken zijn */
.partners-track .lg-serif  { font-family: var(--serif); font-weight: 600; }
.partners-track .lg-italic { font-family: var(--serif); font-style: italic; }
.partners-track .lg-caps   { letter-spacing: .14em; text-transform: uppercase; font-size: 17px; font-weight: 700; }
.partners-track .lg-light  { font-weight: 300; letter-spacing: .04em; }
@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .partners-track span:last-child { display: none; }
}

/* ---------- probleemkaarten ---------- */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.problem-card .pnum {
  font-family: var(--serif); font-style: italic;
  color: var(--rust-strong); font-size: 15px;
  display: block; margin-bottom: 16px;
}
.problem-card h3 { font-size: 21px; color: var(--green-mid); margin-bottom: 10px; }
.problem-card p { color: var(--ink-soft); font-size: 15px; }

/* ---------- quotes (rotator) ---------- */

.quotes-section { padding: 90px 0; }
.quote-rotator {
  max-width: 760px; margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-glyph {
  font-family: var(--serif);
  font-size: 96px; line-height: 1;
  display: block;
  margin: 14px 0 -46px;
  color: var(--gold); opacity: .4;
  user-select: none;
}
.quote-stage { display: grid; min-height: 170px; align-items: center; }
.q {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  transform: translateY(16px) scale(.99);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  pointer-events: none;
}
.q.active { opacity: 1; transform: none; pointer-events: auto; }
.q blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(19px, 2.6vw, 25px);
  line-height: 1.5;
  color: var(--green-mid);
}
.q figcaption {
  margin-top: 20px;
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft);
}
.q figcaption strong { color: var(--rust-strong); font-weight: 700; }
.quote-dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.quote-dots button {
  width: 9px; height: 9px; padding: 0;
  border-radius: 50%;
  border: 1px solid var(--green-mid);
  background: transparent;
  cursor: pointer;
  transition: background .3s, border-color .3s, transform .3s;
}
.quote-dots button.on { background: var(--gold); border-color: var(--gold); transform: scale(1.3); }
@media (prefers-reduced-motion: reduce) {
  .q { transition: opacity .3s; transform: none; }
}

/* ---------- contactformulier ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-grid h2 { color: var(--cream); font-size: clamp(30px, 4vw, 44px); }
.contact-grid .lede { color: var(--cream-dim); margin-top: 18px; max-width: 44ch; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: rgba(244,239,227,.05);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-size: 13.5px; font-weight: 600;
  letter-spacing: .04em;
  color: var(--cream);
  margin-bottom: 8px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  font: inherit;
  color: var(--cream);
  background: rgba(13,33,28,.5);
  border: 1px solid rgba(244,239,227,.22);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color .25s, box-shadow .25s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(185,196,188,.55); }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,106,.18);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-note { grid-column: 1 / -1; font-size: 13.5px; color: var(--cream-dim); }
@media (max-width: 560px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* ---------- team ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-card .avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(140deg, var(--green-mid), var(--green-deep));
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 23px;
  margin-bottom: 20px;
}
.team-card h3 { font-size: 22px; margin-bottom: 4px; }
.team-card .role { color: var(--rust-strong); font-size: 13.5px; font-weight: 600; letter-spacing: .02em; }
.team-card .bio {
  margin-top: 14px;
  font-family: var(--serif); font-style: italic;
  color: var(--ink-soft); font-size: 16.5px;
}

/* ---------- cases: resultaatblokken ---------- */

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 26px 0 34px;
}
.result-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 22px 22px;
}
.result-card strong { color: var(--green-mid); display: block; margin-bottom: 6px; font-size: 16.5px; }
.result-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

.case-bigquote {
  background: linear-gradient(140deg, var(--green-mid), var(--green-deep));
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 48px);
  margin: 44px 0;
  box-shadow: var(--shadow);
}
.case-bigquote blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.5;
}
.case-bigquote blockquote::before { content: "“"; color: var(--gold); font-size: 1.3em; }
.case-bigquote footer { margin-top: 20px; color: var(--cream-dim); font-size: 14.5px; }
.case-bigquote footer strong { color: var(--cream); display: block; font-size: 16px; }

@media print {
  .site-nav, .scroll-hint, #hero-canvas, .marquee { display: none !important; }
  body { background: #fff; }
}

/* ---------- logo ---------- */

.logo-mark { height: 29px; width: auto; display: block; }
.site-footer .logo-mark { height: 33px; }

/* ---------- partikelveld-canvas ---------- */

.field-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.page-hero .wrap,
[data-field] > .wrap { position: relative; z-index: 2; }

/* ---------- lichtglans op tilt-kaarten ---------- */

[data-tilt] { position: relative; }
[data-tilt]::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(460px circle at var(--gx, 50%) var(--gy, 50%), rgba(201,168,106,.16), transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
[data-tilt]:hover::after { opacity: 1; }

/* ---------- hero-entrance ---------- */

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.hero .eyebrow   { animation: rise .8s var(--ease) both; }
.hero h1         { animation: rise .9s var(--ease) .1s both; }
.hero .hero-sub  { animation: rise .9s var(--ease) .22s both; }
.hero .hero-actions { animation: rise .9s var(--ease) .34s both; }
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow, .hero h1, .hero .hero-sub, .hero .hero-actions { animation: none; }
}

/* ---------- foto's ---------- */

.team-card .photo {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  display: block;
}
.q figcaption {
  display: flex; align-items: center; justify-content: center;
  gap: 13px;
}
.q figcaption img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex: 0 0 54px;
}

.photo-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.human-panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.human-panel .photo-frame { max-height: 460px; }
@media (max-width: 900px) { .human-panel { grid-template-columns: 1fr; } }

.domain-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.domain-intro .photo-frame { height: 360px; }
@media (max-width: 900px) {
  .domain-intro { grid-template-columns: 1fr; }
  .domain-intro .photo-frame { height: 300px; }
}

.case-bigquote footer { display: flex; align-items: center; gap: 14px; }
.case-bigquote footer img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex: 0 0 52px;
}

.form-thanks {
  grid-column: 1 / -1;
  font-family: var(--serif); font-style: italic;
  font-size: 21px; color: var(--cream);
  text-align: center; padding: 30px 10px;
}

.grant-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 20px;
  padding: 0 24px;
}
