/* ============================================================
   AGFConnect — marketingsite
   Visuele richting:
   - Kleur: diep groenblauw (#155056) als drager, mint (#85e1a8)
     als accent, warm papierwit als achtergrond, klei/terracotta
     als spaarzaam tweede accent (haalt het uit de "alles-groen"-hoek).
   - Type: Fraunces (redactioneel, iets eigenwijs) voor koppen,
     IBM Plex Sans (rustig, zakelijk) voor de UI/tekst.
   - Layout: asymmetrisch, redactioneel raster. Witruimte en ritme.
   ============================================================ */

:root {
  /* Kleur */
  --teal:        #155056;
  --teal-deep:   #0e3a3f;
  --ink:         #15302e;
  --mint:        #85e1a8;
  --mint-soft:   #c9efd6;
  --mint-wash:   #eef8f1;
  --paper:       #f7f4ed;
  --paper-2:     #efebe0;
  --clay:        #bd5b3a;   /* warm accent, spaarzaam */
  --clay-soft:   #e8c9bb;
  --line:        #d9d3c4;
  --line-soft:   #e7e2d6;
  --muted:       #5d6b66;
  --white:       #fffefb;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Maat & ritme */
  --measure: 66ch;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 1px 0 rgba(21,48,46,.04), 0 18px 40px -28px rgba(14,58,63,.45);
  --shadow-soft: 0 14px 30px -24px rgba(14,58,63,.5);
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --maxw: 1180px;
}

/* ---- Reset / basis ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; /* vangnet tegen sub-pixel overflow van hero-achtergrond */
}
/* Grid-kinderen mogen krimpen i.p.v. hun contentbreedte forceren */
.hero-grid > *, .grid-2 > *, .audience > *, .step > *,
.contact-grid > *, .quote > *, .cta-band > *, .flow > * { min-width: 0; }
img, svg { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-deep); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 460; line-height: 1.08; letter-spacing: -.015em; margin: 0; color: var(--ink); overflow-wrap: break-word; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 2.5px solid var(--clay); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.eyebrow {
  font-family: var(--font-ui);
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--clay); margin: 0 0 1rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--clay); display: inline-block;
}
.lede { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.5; color: var(--ink); max-width: 44ch; }
.muted { color: var(--muted); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-ui); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.4rem; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .12s ease, background .15s ease, border-color .15s ease;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn .arr { transition: transform .15s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ============================================================
   Header / navigatie
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--ink); }
.brand-logo { height: 30px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); text-decoration: none; font-size: .98rem; font-weight: 500; padding: .3rem 0; position: relative; }
.nav-links a[aria-current="page"] { color: var(--teal); }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--mint); transition: right .2s ease;
}
.nav-links a:not(.btn):hover::after,
.nav-links a[aria-current="page"]:not(.btn)::after { right: 0; }
/* De CTA-knop in nav-links is alleen voor het mobiele uitklapmenu;
   op desktop staat de CTA al in .nav-cta. */
.nav-links > li:last-child { display: none; }
.nav-cta { display: flex; align-items: center; gap: .9rem; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: var(--radius); padding: .5rem .6rem; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--ink); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav[data-open="true"] .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: .25rem;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 1rem var(--gutter) 1.5rem;
  }
  .nav[data-open="true"] .nav-links a { padding: .7rem 0; width: 100%; border-bottom: 1px solid var(--line-soft); font-size: 1.1rem; }
  .nav[data-open="true"] .nav-links a.btn { margin-top: .6rem; border-bottom: none; }
  .nav[data-open="true"] .nav-links > li:last-child { display: block; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero::before {
  /* zachte, organische vlek — geen blob, maar een veld-horizon */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 80% at 85% -10%, var(--mint-wash) 0%, transparent 55%),
    linear-gradient(180deg, transparent 60%, var(--paper-2) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  letter-spacing: -.025em;
}
.hero h1 em { font-style: italic; color: var(--teal); font-weight: 460; }
.hero .lede { margin-top: 1.5rem; max-width: 46ch; }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero-note { margin-top: 1.4rem; font-size: .92rem; color: var(--muted); display: flex; align-items: center; gap: .55rem; }
.hero-note svg { width: 17px; height: 17px; flex: none; color: var(--teal); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   Productmockups (HTML/CSS — geen nepdashboard, echte AGF-data)
   ============================================================ */
.mock {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  font-family: var(--font-ui);
}
.mock-bar {
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem 1rem; border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.mock-bar .dots { display: flex; gap: .35rem; }
.mock-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); display: block; }
.mock-bar .crumb { font-size: .78rem; color: var(--muted); font-weight: 500; letter-spacing: .01em; }
.mock-bar .crumb b { color: var(--ink); font-weight: 600; }
.mock-body { padding: 1.1rem 1.1rem 1.3rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.mock, .mock-wrap { max-width: 100%; }

.mock-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: .9rem; }
.mock-head h4 { font-family: var(--font-ui); font-size: .95rem; font-weight: 600; letter-spacing: 0; }
.mock-head .when { font-size: .76rem; color: var(--muted); }

/* order/expeditie tabel */
.mock-table { width: 100%; border-collapse: collapse; font-size: .82rem; min-width: 300px; }
.mock-table-orders { min-width: 520px; }
.mock-table th {
  text-align: left; font-weight: 600; color: var(--muted); font-size: .72rem;
  text-transform: uppercase; letter-spacing: .06em; padding: 0 .6rem .55rem; border-bottom: 1px solid var(--line-soft);
}
.mock-table td { padding: .62rem .6rem; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.mock-table tr:last-child td { border-bottom: none; }
.mock-table .prod { font-weight: 600; color: var(--ink); }
.mock-table .sub { color: var(--muted); font-size: .74rem; }
.mock-table .mono { white-space: nowrap; }
.mock-table-orders th:nth-child(2),
.mock-table-orders td:nth-child(2) {
  min-width: 6.2rem;
  white-space: nowrap;
}
.mock-table-orders .order-id {
  word-break: keep-all;
  overflow-wrap: normal;
}
.mono { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

.pill {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 600; padding: .2rem .55rem; border-radius: 100px; white-space: nowrap;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill.done   { color: #1d6b46; background: #e2f3e8; }
.pill.busy   { color: #9a5a1a; background: #f6ecd9; }
.pill.wait   { color: #5d6b66; background: #ebe7db; }
.pill.road   { color: #155056; background: #d9eef0; }
.pill.alert  { color: #a23b22; background: #f4e0d8; }

.bar-track { height: 6px; border-radius: 100px; background: var(--paper-2); overflow: hidden; min-width: 70px; }
.bar-fill { height: 100%; border-radius: 100px; background: var(--teal); }
.bar-fill.mint { background: var(--mint); }

/* floating annotatie-kaartje op de mockup */
.mock-wrap { position: relative; }
.mock-tag {
  position: absolute; bottom: -18px; left: -22px;
  background: var(--ink); color: var(--white);
  border-radius: var(--radius); padding: .7rem .9rem; max-width: 220px;
  box-shadow: var(--shadow-soft); font-size: .82rem; line-height: 1.35;
}
.mock-tag b { color: var(--mint); }
.mock-tag .k { display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mint-soft); margin-bottom: .25rem; }
@media (max-width: 520px) { .mock-tag { display: none; } }

/* ============================================================
   Generieke secties
   ============================================================ */
.section-head { max-width: 52ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-head p { margin-top: 1rem; font-size: 1.12rem; color: var(--muted); }
.section.alt { background: var(--white); border-block: 1px solid var(--line-soft); }
.section.ink { background: var(--ink); color: var(--paper); }
.section.ink h2, .section.ink h3 { color: var(--white); }
.section.ink .muted { color: #b7c5be; }

/* ---- "Wat het verbindt" — diagram-rij i.p.v. 3 kaartjes ---- */
.flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
}
.flow-step { padding: 1.6rem 1.4rem; border-right: 1px solid var(--line-soft); position: relative; }
.flow-step:last-child { border-right: none; }
.flow-step .n { font-family: var(--font-display); font-size: 1.05rem; color: var(--clay); }
.flow-step h3 { font-family: var(--font-ui); font-size: 1.05rem; font-weight: 600; margin: .5rem 0 .5rem; }
.flow-step p { font-size: .94rem; color: var(--muted); margin: 0; }
.flow-step .arrow { position: absolute; right: -11px; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 22px; height: 22px; background: var(--white); border: 1px solid var(--line-soft); border-radius: 50%;
  display: grid; place-items: center; color: var(--teal); }
.flow-step:last-child .arrow { display: none; }
@media (max-width: 820px) {
  .flow { grid-template-columns: 1fr; }
  .flow-step { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .flow-step:last-child { border-bottom: none; }
  .flow-step .arrow { display: none; }
}

/* ---- Waardeblokken: asymmetrisch, geen icon-kaartjes ---- */
.value-list { display: grid; gap: 0; }
.value-row {
  display: grid; grid-template-columns: minmax(0,.42fr) minmax(0,.58fr); gap: clamp(1rem,4vw,3rem);
  padding-block: 2.2rem; border-top: 1px solid var(--line);
  align-items: start;
}
.value-row:last-child { border-bottom: 1px solid var(--line); }
.value-row h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.value-row .idx { font-family: var(--font-ui); font-size: .8rem; font-weight: 600; letter-spacing: .12em; color: var(--clay); text-transform: uppercase; display: block; margin-bottom: .8rem; }
.value-row p { color: var(--ink); margin-bottom: .6rem; }
.value-row .small { font-size: .94rem; color: var(--muted); }
@media (max-width: 720px) { .value-row { grid-template-columns: 1fr; gap: .8rem; padding-block: 1.8rem; } }

/* ---- Referentiequote ---- */
.quote { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: clamp(2rem,5vw,4rem); align-items: center; }
.quote blockquote { margin: 0; }
.quote blockquote p {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.22; letter-spacing: -.015em; color: var(--white); font-weight: 420;
}
.quote blockquote p .hl { background: linear-gradient(transparent 62%, color-mix(in srgb, var(--mint) 55%, transparent) 62%); padding: 0 .05em; }
.quote cite { display: block; margin-top: 1.6rem; font-style: normal; font-size: .95rem; color: var(--mint-soft); }
.quote cite b { color: var(--white); font-weight: 600; display: block; }
.quote-aside { border-left: 2px solid color-mix(in srgb, var(--mint) 60%, transparent); padding-left: 1.5rem; }
.quote-aside .stat { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.4rem); color: var(--mint); line-height: 1; }
.quote-aside .stat + p { margin-top: .5rem; color: #c2cfc9; font-size: .98rem; }
@media (max-width: 760px) { .quote { grid-template-columns: 1fr; } }

/* ---- Doelgroepen ---- */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.4rem); }
.aud-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem,3vw,2.2rem); }
.aud-card h3 { font-size: 1.45rem; margin-bottom: .3rem; }
.aud-card .role { font-size: .85rem; color: var(--clay); font-weight: 600; letter-spacing: .04em; }
.aud-card .pain, .aud-card .fix { display: flex; gap: .7rem; padding: .7rem 0; border-top: 1px solid var(--line-soft); font-size: .96rem; }
.aud-card .pain:first-of-type { margin-top: 1.1rem; }
.aud-card .tagk { flex: none; width: 5.4rem; font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; padding-top: .15rem; }
.aud-card .pain .tagk { color: var(--clay); }
.aud-card .fix .tagk { color: var(--teal); }
@media (max-width: 720px) { .audience { grid-template-columns: 1fr; } }

/* ---- Logos / integraties (echte ERP-namen, geen nepklanten) ---- */
.erp-strip { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.4rem; }
.erp-strip .erp {
  font-weight: 600; font-size: .95rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1rem; background: var(--white);
}
.erp-strip .erp span { color: var(--muted); font-weight: 500; }

/* ---- CTA-band ---- */
.cta-band { display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: center; }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--white); }
.cta-band p { color: #b7c5be; margin-top: .8rem; max-width: 42ch; }
.cta-band .btn-primary { background: var(--mint); color: var(--ink); }
.cta-band .btn-primary:hover { background: #6fd496; color: var(--ink); }
.cta-band .actions { display: flex; gap: .9rem; flex-wrap: wrap; justify-self: end; }
.cta-band .btn-ghost { color: var(--white); border-color: #3d6b6f; }
.cta-band .btn-ghost:hover { border-color: var(--mint); color: var(--mint); }
@media (max-width: 720px) { .cta-band { grid-template-columns: 1fr; } .cta-band .actions { justify-self: start; } }

/* ============================================================
   Stappen-uitleg (product) — afwisselend links/rechts
   ============================================================ */
.step { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; padding-block: clamp(2.5rem,5vw,4rem); border-top: 1px solid var(--line); }
.step:first-of-type { border-top: none; }
.step.flip .step-copy { order: 2; }
.step-copy .step-n { font-family: var(--font-display); font-size: 1rem; color: var(--clay); letter-spacing: .02em; }
.step-copy h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: .4rem 0 1rem; }
.step-copy ul { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.step-copy li { padding: .55rem 0 .55rem 1.7rem; position: relative; border-top: 1px solid var(--line-soft); font-size: .98rem; }
.step-copy li::before { content: ""; position: absolute; left: 0; top: 1.05rem; width: 9px; height: 9px; border-radius: 2px; background: var(--mint); }
@media (max-width: 820px) { .step { grid-template-columns: 1fr; } .step.flip .step-copy { order: 0; } }

/* ============================================================
   Contact / formulier
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-aside h2 { font-size: clamp(2rem,4vw,3rem); }
.contact-aside .lede { margin-top: 1rem; }
.contact-points { list-style: none; padding: 0; margin: 2rem 0 0; }
.contact-points li { display: flex; gap: .8rem; padding: .9rem 0; border-top: 1px solid var(--line); }
.contact-points svg { width: 20px; height: 20px; flex: none; color: var(--teal); margin-top: .15rem; }
.contact-points b { display: block; }
.contact-points span { color: var(--muted); font-size: .95rem; }

form.demo { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem,3vw,2.3rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .45rem; }
.field .req { color: var(--clay); }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--paper); transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--teal); background: var(--white); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.form-foot { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }
.form-foot .fineprint { font-size: .85rem; color: var(--muted); max-width: 30ch; }
.form-msg { margin-top: 1rem; padding: .9rem 1rem; border-radius: var(--radius); font-size: .95rem; display: none; }
.form-msg.ok { display: block; background: var(--mint-wash); border: 1px solid var(--mint-soft); color: #1d6b46; }
.form-msg.err { display: block; background: #f7e7e0; border: 1px solid var(--clay-soft); color: #a23b22; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--paper); padding-block: clamp(3rem,5vw,4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer .brand-logo { height: 30px; }
.footer-blurb { color: #a9b8b2; margin-top: 1rem; font-size: .95rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-ui); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--mint-soft); margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a, .footer-col span { color: #cdd8d3; text-decoration: none; font-size: .95rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #2a4a48; font-size: .85rem; color: #8fa39c; }
.footer-bottom a { color: #8fa39c; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- Subtiele binnenkomst-animatie (respecteert reduced-motion) ---- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- Pagina-hero voor subpagina's ---- */
.page-hero { padding-block: clamp(3rem,6vw,5rem) clamp(2rem,4vw,3rem); }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); max-width: 16ch; }
.page-hero .lede { margin-top: 1.3rem; }

/* ---- Mini-utilities ---- */
.stack-sm > * + * { margin-top: .6rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,3vw,2.5rem); }
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } }
.pull { color: var(--teal); font-weight: 600; }
hr.rule { border: none; border-top: 1px solid var(--line); margin: 0; }
