/* ============================================================
   KWISP — homepage  (Design v3: editorial, Franklin-inspired)
   Brand (Mirthe): cream + sage + deep forest + mint + lime.
   Type: Hanken Grotesk (body + big editorial headings),
         Playfair Display italic (emphasis words + names),
         Caveat (handwritten eyebrows).
   Feel: airy, big type, weight-based hierarchy, hairlines,
         numbered lists, asymmetric rows, understated arrow links.
   ============================================================ */

:root {
  --green-950: #0e2a1c;
  --green-900: #16402c;
  --green-800: #1e5238;
  --green-700: #2a6e4a;
  --green-600: #1f7a49;
  --green-500: #2a8f58;
  --green-300: #9fd3b4;

  --mint:      #5bc98c;
  --mint-600:  #49ba7b;
  --lime:      #c8d971;

  --cream:     #f4eee0;
  --cream-200: #e8e0cd;
  --sage:      #d6cfb6;
  --bone:      #fbf8f0;
  --wood:      #c8a06a;
  --wood-soft: #e3cba6;

  --ink:        #23302a;
  --ink-soft:   #5a6660;
  --hairline:   color-mix(in srgb, var(--ink) 16%, transparent);
  --paper:      #f6f1e6;
  --paper-soft: #bcd0c2;

  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;   /* italic emphasis + names */
  --font-script: "Caveat", "Segoe Script", cursive;   /* handwritten eyebrows */

  --r-pill: 999px;
  --r-lg: 26px;
  --r-md: 16px;

  --maxw: 1240px;
  --maxw-hero: 1100px;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --nav-h: 90px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 24px 60px -28px rgba(14, 39, 26, 0.4);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
#topSentinel { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }

:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }
main:focus, main:focus-visible { outline: none; }

.skip-link {
  position: absolute; left: 1rem; top: -120px; z-index: 100;
  background: var(--mint); color: var(--green-950);
  font-weight: 600; padding: 0.7rem 1.1rem; border-radius: var(--r-pill);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0.8rem; outline: none; }

/* emphasis serif + handwritten accent */
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 500; letter-spacing: 0; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; line-height: 0; }
.logo__img { display: block; width: 104px; height: auto; }
.logo--footer .logo__img { width: 120px; }
.logo__badge {
  display: block; width: 88px; height: 88px;
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
}
.nav.is-scrolled .logo__badge { width: 56px; height: 56px; }

/* ============================================================
   NAV  (seamless dark green on the hero, solid bar on scroll)
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--green-900);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: color-mix(in srgb, var(--paper) 10%, transparent);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.5);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  height: 118px; padding: 0 var(--pad);
  display: flex; align-items: center; gap: 2rem;
  transition: height 0.3s var(--ease);
}
.nav.is-scrolled .nav__inner { height: var(--nav-h); }
.nav__links { display: flex; gap: 1.9rem; margin-left: auto; font-weight: 500; font-size: 0.98rem; }
.nav__links a { color: var(--paper-soft); transition: color 0.2s var(--ease); }
.nav__links a:hover { color: var(--mint); }
.nav__cta { margin-left: 0; }
.nav__toggle {
  display: none; margin-left: auto;
  background: none; border: 0; font-size: 1.7rem;
  color: var(--bone); cursor: pointer; padding: 0.25rem;
}

/* ============================================================
   BUTTONS + ARROW LINKS
   ============================================================ */
.btn {
  --y: 0;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 0.95rem 1.7rem;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transform: translateY(var(--y));
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:hover { --y: -2px; }
.btn:active { --y: 1px; }
.btn i { font-size: 1.1em; }
.btn--solid { background: var(--mint); color: var(--green-950); }
.btn--solid:hover { background: var(--mint-600); }
.btn--cream { background: var(--bone); color: var(--green-900); }
.btn--cream:hover { background: #fff; }

/* understated editorial CTA */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; color: var(--green-700);
  padding-bottom: 2px;
  border-bottom: 1.5px solid color-mix(in srgb, var(--green-700) 35%, transparent);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.arrow-link i { transition: transform 0.2s var(--ease); }
.arrow-link:hover { color: var(--green-900); border-bottom-color: var(--green-900); }
.arrow-link:hover i { transform: translateX(4px); }
.arrow-link--light { color: var(--paper); border-bottom-color: color-mix(in srgb, var(--paper) 40%, transparent); }
.arrow-link--light:hover { color: #fff; border-bottom-color: #fff; }
.arrow-link--light:hover i { transform: translateY(3px); }

/* ============================================================
   SECTIONS — shared scaffold + editorial type
   ============================================================ */
.section--cream { background: var(--cream); }
.section--bone  { background: var(--bone); }

.section__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
}
.hero__inner > *,
.pillars__grid > *,
.plekje__grid > *,
.feature-row > *,
.footer__grid > * { min-width: 0; }

.section-lead--light { color: color-mix(in srgb, var(--paper) 92%, var(--mint)); }

.eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem; font-weight: 600;
  color: var(--green-600); margin-bottom: 0.4rem;
}
.eyebrow--light { color: var(--mint); }

.big-title {
  font-weight: 800;
  font-size: clamp(2.3rem, 5.4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--green-900);
  max-width: 16ch;
  text-wrap: balance;
}
.big-title .serif { font-weight: 500; letter-spacing: 0; }
.big-title--light { color: var(--bone); }
/* lime highlighter accent (Franklin-style) */
.mark { background: var(--lime); color: var(--green-950); padding: 0.04em 0.28em; border-radius: 5px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* Franklin-style centred section heads */
.section-head { margin-bottom: clamp(3rem, 6vw, 5rem); text-align: center; }
.section-head .big-title,
.section-head .section-lead { margin-left: auto; margin-right: auto; }
.section-lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 1.3rem;
}

/* ============================================================
   HERO  (dark forest, type-led, ribbon + blobs)
   ============================================================ */
.hero {
  position: relative;
  background: var(--green-900); color: var(--paper);
  min-height: calc(100dvh - 118px);
  display: flex; align-items: center; overflow: hidden;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw-hero); margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad);
  width: 100%; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero__title { display: flex; flex-direction: column; align-items: center; line-height: 1; color: var(--bone); }
.hero__title .ha { font-weight: 700; font-size: clamp(1.4rem, 3.6vw, 2.3rem); letter-spacing: 0.005em; }
.hero__title .hb-wrap { position: relative; display: inline-block; }
.hero__title .hb {
  position: relative; z-index: 1;
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(3.4rem, 11vw, 7rem);
  line-height: 1.04; padding-bottom: 0.08em;
}
.hero__ribbon {
  position: absolute; left: 50%; top: 104%; width: 106%;
  transform: translate(-50%, -50%); z-index: 0; pointer-events: none;
}
.hero__ribbon svg { width: 100%; height: auto; display: block; }
.hero__sub {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--paper-soft);
  max-width: 50ch; margin: 2.7rem auto 0;
}
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.4rem; margin-top: 2.4rem; }

/* hero depth blobs */
.blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; }
.blob--a { width: 42vw; height: 42vw; max-width: 600px; max-height: 600px; top: -14%; right: -8%; background: var(--green-800); opacity: 0.55; }
.blob--b { width: 28vw; height: 28vw; max-width: 380px; max-height: 380px; bottom: -16%; left: -7%; background: var(--green-700); opacity: 0.35; }
.blob--c { width: 15vw; height: 15vw; max-width: 210px; max-height: 210px; top: 44%; left: 40%; background: var(--green-700); opacity: 0.22; }

/* ============================================================
   WAT KWISP IS  (three pillars with icons)
   ============================================================ */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.8rem);
}
.pillar {
  background: var(--bone);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.pillar__icon {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--mint);
  color: var(--green-950);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.pillar h3 { font-size: 1.25rem; font-weight: 700; color: var(--green-900); margin-bottom: 0.4rem; }
.pillar p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   PRODUCTEN  (editorial feature row + soon grid, on forest green)
   ============================================================ */
.products { position: relative; background: var(--green-900); color: var(--paper); overflow: hidden; }
.products .section__inner { position: relative; z-index: 1; }
.products .section-lead { color: color-mix(in srgb, var(--paper) 92%, var(--mint)); }
.products .status-line { color: var(--mint); }
.products .feature-title { color: var(--bone); }
.products .feature-row__text > p { color: var(--paper-soft); }
.products .feature-meta { color: var(--bone); }
.products .feature-incl { color: var(--green-300); }
.products .soon h3 { color: var(--bone); }
.products .soon p { color: var(--paper-soft); }
.products .soon-grid { border-top-color: color-mix(in srgb, var(--paper) 16%, transparent); }
.products .chips li { color: var(--bone); background: color-mix(in srgb, var(--bone) 10%, transparent); border-color: color-mix(in srgb, var(--paper) 28%, transparent); }
.products .feature-price { color: var(--paper-soft); }
.products .feature-price strong { color: var(--bone); }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.feature-row__text { max-width: 44ch; }
.status-line {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-700); margin-bottom: 1rem;
}
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mint); }
.feature-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; color: var(--green-900); margin-bottom: 0.7rem; }
.feature-row__text > p { color: var(--ink-soft); }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.2rem 0 0; }
.chips li {
  font-weight: 600; font-size: 0.9rem; color: var(--green-900);
  background: var(--cream); border: 1px solid var(--cream-200);
  padding: 0.4rem 0.95rem; border-radius: var(--r-pill);
}
.feature-price { margin-top: 1.4rem; font-size: 1rem; color: var(--ink-soft); }
.feature-price strong { font-size: 1.65rem; font-weight: 800; color: var(--green-900); margin-left: 0.15rem; }
.feature-incl {
  display: flex; align-items: center; gap: 0.55rem;
  margin: 1.3rem 0 1.6rem;
  font-size: 0.95rem; font-weight: 600; color: var(--green-700);
}
.feature-incl i { font-size: 1.2rem; }

/* image placeholder slots */
.img-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem; text-align: center;
  background: linear-gradient(150deg, var(--cream-200), color-mix(in srgb, var(--wood-soft) 60%, var(--cream)));
  border: 1px solid color-mix(in srgb, var(--wood) 32%, transparent);
  color: color-mix(in srgb, var(--wood) 92%, var(--ink));
}
.img-slot--tall { aspect-ratio: 4 / 5; }
.img-slot i { font-size: 2.4rem; opacity: 0.75; }
.img-slot span { font-size: 0.9rem; font-weight: 600; opacity: 0.85; }
.img-slot .tag {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-950); background: var(--lime);
  padding: 0.35rem 0.75rem; border-radius: var(--r-pill);
}

.soon-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(3rem, 7vw, 6rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--hairline);
}
.soon .img-slot { aspect-ratio: 16 / 10; margin-bottom: 1.3rem; }
.soon h3 { font-size: 1.4rem; font-weight: 700; color: var(--green-900); margin-bottom: 0.35rem; }
.soon p { color: var(--ink-soft); }

/* ============================================================
   DIGITAAL PLEKJE
   ============================================================ */
.plekje .section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.plekje__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: start;
}
.plekje__info { padding-top: 0.4rem; }
.mini-list { display: grid; gap: 0.9rem; }
.mini-list li {
  display: flex; align-items: center; gap: 0.8rem;
  font-weight: 600; color: var(--green-900);
}
.mini-list i {
  flex: none; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: color-mix(in srgb, var(--mint) 26%, transparent);
  color: var(--green-800); font-size: 1.2rem;
}
.qr-note {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.6rem; font-size: 0.92rem; color: var(--ink-soft);
}
.qr-note i { flex: none; font-size: 1.2rem; color: var(--green-700); }

.memorial {
  max-width: 420px; margin-left: auto;
  background: var(--bone); color: var(--ink);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}
.memorial__top { display: flex; gap: 1.2rem; align-items: center; }
.memorial__meta { flex: 1; }
.memorial__qr {
  flex: none; align-self: flex-start;
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--cream); border: 1px solid var(--cream-200);
  color: var(--green-700); font-size: 1.3rem;
}
.memorial__photo {
  flex: none; width: 88px; height: 88px; border-radius: 22px;
  background: linear-gradient(150deg, var(--wood-soft), var(--cream-200));
  display: grid; place-items: center;
  color: color-mix(in srgb, var(--wood) 95%, var(--ink)); font-size: 2rem;
}
.memorial__meta h3 {
  font-family: var(--font-serif); font-style: italic; font-weight: 600;
  font-size: 1.9rem; color: var(--green-900); line-height: 1.05;
}
.memorial__meta > p { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.memorial__tag {
  display: inline-block; margin-top: 0.4rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-700); background: color-mix(in srgb, var(--mint) 30%, transparent);
  padding: 0.3rem 0.7rem; border-radius: var(--r-pill);
}
.memorial__story { margin: 1.3rem 0; font-size: 1.05rem; color: var(--ink); font-style: italic; }
.tributes { border-top: 1px solid var(--cream-200); padding-top: 1.2rem; }
.tributes__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.9rem; }
.tribute { display: flex; gap: 0.8rem; margin-bottom: 0.9rem; }
.tribute__avatar {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-600); color: var(--bone);
  display: grid; place-items: center; font-weight: 700; font-size: 0.9rem;
}
.tribute strong { color: var(--green-900); font-size: 0.95rem; }
.tribute p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.45; }
.tribute-add { display: flex; gap: 0.5rem; margin-top: 1.1rem; }
.tribute-add input {
  flex: 1; border: 1px solid var(--cream-200); background: var(--cream);
  border-radius: var(--r-md); padding: 0.7rem 1rem; font: inherit; color: var(--ink);
}
.tribute-add input::placeholder { color: var(--ink-soft); }
.tribute-add button {
  flex: none; width: 44px; border: 0; border-radius: var(--r-md);
  background: var(--green-600); color: var(--bone);
  font-size: 1.1rem; cursor: pointer; transition: background 0.2s var(--ease);
}
.tribute-add button:hover { background: var(--green-500); }

/* notify band (inside plekje) */
.grow { padding-top: 0; }
.notify {
  position: relative; z-index: 1;
  background: var(--green-900); color: var(--paper);
  border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}
.notify__text h3 { font-size: 1.5rem; font-weight: 700; color: var(--bone); }
.notify__text p { color: var(--paper-soft); max-width: 60ch; margin-top: 0.4rem; }
.notify__field { display: flex; gap: 0.6rem; align-items: stretch; max-width: 540px; margin-top: 1.6rem; }
.notify__field input {
  flex: 1; width: auto; min-width: 0;
  border: 1.5px solid color-mix(in srgb, var(--paper) 30%, transparent);
  background: color-mix(in srgb, var(--bone) 10%, transparent);
  border-radius: var(--r-pill); padding: 0.9rem 1.3rem; font: inherit; color: var(--bone);
}
.notify__field .btn { padding: 0.9rem 1.5rem; }
.notify__field input::placeholder { color: var(--paper-soft); }
.notify__msg { font-weight: 600; min-height: 1.2em; margin-top: 0.9rem; }
.notify__msg.is-ok { color: var(--mint); }
.notify__msg.is-err { color: #ffd2b0; }

/* ============================================================
   ETHOS  (one bright mint statement)
   ============================================================ */
.ethos { position: relative; background: var(--mint); color: var(--green-950); text-align: center; }
.ethos__inner { max-width: 900px; }
.ethos .eyebrow { color: var(--green-900); }
.ethos__statement {
  font-weight: 800; font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08; letter-spacing: -0.02em; color: var(--green-950); margin-bottom: 1.4rem;
}
.ethos__body {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: color-mix(in srgb, var(--green-950) 78%, transparent);
  max-width: 56ch; margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; background: var(--green-950); color: var(--paper-soft); overflow: hidden; }
.footer__paws { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.footer__paw { position: absolute; opacity: 0.06; }
.footer__paw--1 { width: 118px; top: 12%; left: 5%; transform: rotate(-18deg); }
.footer__paw--2 { width: 74px;  top: 58%; left: 46%; transform: rotate(14deg); opacity: 0.045; }
.footer__paw--3 { width: 150px; bottom: -14px; right: 4%; transform: rotate(9deg); }
.footer .section__inner { position: relative; z-index: 1; padding-top: clamp(3rem, 6vw, 4rem); padding-bottom: 0; }
.footer__cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid color-mix(in srgb, var(--paper) 14%, transparent);
}
.footer__cta h2 { font-weight: 800; font-size: clamp(1.7rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; color: var(--bone); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.footer__brand p { margin-top: 0.8rem; max-width: 30ch; font-size: 0.95rem; }
.footer__col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-300); margin-bottom: 1rem; }
.footer__col li { margin-bottom: 0.6rem; }
.footer__col a { transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--bone); }
.footer__soon { color: var(--paper-soft); }
.footer__soon em { font-style: normal; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mint); margin-left: 0.3rem; }
.footer__base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  padding: 1.6rem 0; border-top: 1px solid color-mix(in srgb, var(--paper) 14%, transparent); font-size: 0.88rem;
}

/* ============================================================
   SUBPAGES (producten / verhaal / contact)
   ============================================================ */
/* compact, bordered nav (no tall hero behind it) */
.page .nav__inner { height: var(--nav-h); }
.page .logo__badge { width: 56px; height: 56px; }
.page .nav { border-bottom-color: color-mix(in srgb, var(--paper) 10%, transparent); }

.page-intro .section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* full-bleed makers photo + overlay (used on Ons verhaal) */
.makers { position: relative; overflow: hidden; background: var(--green-950); color: var(--paper); }
.makers__photo { position: absolute; inset: 0; }
.makers__photo .img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  color: color-mix(in srgb, var(--paper) 42%, transparent);
}
.makers__photo .img-ph i { font-size: 2.4rem; }
.makers__photo .img-ph span { font-size: 0.9rem; font-weight: 600; }
.makers::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,28,18,0.92), rgba(8,28,18,0.55) 55%, rgba(8,28,18,0.12)); }
.makers__inner { position: relative; z-index: 1; min-height: clamp(360px, 56vh, 540px); display: flex; align-items: center; }
.makers__text { max-width: 44ch; }
.makers__text > p { color: var(--paper-soft); margin: 1.1rem 0 1.6rem; }

/* prose (story paragraphs) */
.prose { max-width: 62ch; }
.prose p { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-soft); margin-bottom: 1.2rem; }
.prose p strong { color: var(--green-900); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-info p { color: var(--ink-soft); margin-bottom: 1.4rem; max-width: 36ch; }
.contact-info a.arrow-link { margin-top: 0.4rem; }
.contact-detail { margin-bottom: 1.4rem; }
.contact-detail h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-700); margin-bottom: 0.3rem; }
.contact-detail a, .contact-detail span { font-size: 1.1rem; color: var(--green-900); font-weight: 600; }

.form-grid { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--green-900); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--bone); border: 1.5px solid var(--cream-200);
  border-radius: var(--r-md); padding: 0.85rem 1.1rem;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-soft); }
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--mint); outline-offset: 1px; border-color: transparent; }
.field textarea { min-height: 150px; resize: vertical; }
.form-grid .btn { justify-self: start; }
.form-msg { font-weight: 600; min-height: 1.2em; }
.form-msg.is-ok { color: var(--green-700); }
.form-msg.is-err { color: #b4532f; }

/* ============================================================
   SCROLL REVEAL + AMBIENT MOTION
   ============================================================ */
.reveal-ready [data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-ready [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .blob { will-change: transform; }
  .blob--a { animation: blobDrift 18s ease-in-out infinite; }
  .blob--b { animation: blobDrift 24s ease-in-out infinite reverse; }
  .blob--c { animation: blobDrift 30s ease-in-out infinite; }
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(2%, -2.5%) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .nav, .nav__inner, .logo__badge, .arrow-link, .arrow-link i { transition: none; }
  .blob { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row__media { order: -1; max-width: 460px; }
  .plekje__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .notify { grid-template-columns: 1fr; gap: 1.2rem; }
  .notify__field input { width: 100%; flex: 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__inner, .nav.is-scrolled .nav__inner { height: 74px; }
  .logo__badge, .nav.is-scrolled .logo__badge { width: 48px; height: 48px; }
  .hero { min-height: calc(100dvh - 74px); }

  .nav__links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--green-900);
    border-bottom: 1px solid color-mix(in srgb, var(--paper) 12%, transparent);
    padding: 0.5rem var(--pad) 1.2rem; display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 0.85rem 0; border-bottom: 1px solid color-mix(in srgb, var(--paper) 12%, transparent); font-size: 1.05rem; }
  .nav__cta { display: none; }
  .nav__toggle { display: block; }

  .pillars__grid { grid-template-columns: 1fr; gap: 2rem; }
  .soon-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .notify__field { flex-direction: column; max-width: none; }
  .notify__field .btn { justify-content: center; }
  .footer__cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
