/* ============================================================
   veldwerk, documentary warmth
   NATURE vzw prototype, richting 5. Field notebook furniture:
   scanned paper, disciplined tape, hand-drawn diagrams,
   one warm accent, a hard grid under the mess.
   ============================================================ */

/* ---------- 1. Tokens ---------------------------------------------------- */

:root {
  /* paper stack */
  --paper:        #EFE9DC;
  --paper-2:      #E7DFCE;
  --paper-3:      #DCD2BD;
  --card:         #F6F2E8;

  /* ink */
  --ink:          #23201B;   /* 12.9:1 on paper */
  --ink-2:        #5C5548;   /* 6.0:1  */
  --ink-3:        #6E6759;   /* 4.7:1  */
  --rule:         #C9BFA9;

  /* the one warm accent */
  --accent:       #C31428;   /* 7.5:1 on paper */
  --accent-soft:  rgba(195, 20, 40, 0.10);

  /* dark ground (only place cyan/olive are allowed) */
  --forest:       #1E2A23;
  --forest-2:     #16201A;
  --cyan:         #44B4D4;   /* 6.1:1 on forest */
  --olive:        #B3B200;   /* 6.5:1 on forest */
  --magenta:      #BD0BB1;   /* graphic only */

  /* tape */
  --tape:         rgba(206, 189, 152, 0.62);
  --tape-edge:    rgba(150, 132, 96, 0.35);

  /* type */
  --display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --prose:   "Newsreader", Georgia, "Times New Roman", serif;
  --label:   "DM Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  /* grid */
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --maxw: 1200px;
  --radius: 2px;

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. Reset & base ---------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--prose);
  font-size: clamp(1.0rem, 0.96rem + 0.22vw, 1.12rem);
  line-height: 1.62;
  font-optical-sizing: auto;
  hyphens: auto;
  overflow-x: hidden;
}

/* the scan: a single fixed grain plate over everything, cheap and quiet */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.075;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg, video { max-width: 100%; display: block; }
video { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.018em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 1.5rem + 4.6vw, 5.1rem); }
h2 { font-size: clamp(1.85rem, 1.3rem + 2.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem); letter-spacing: -0.01em; }

p { margin: 0 0 1em; max-width: 62ch; }

a { color: var(--accent); }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 1px;
}

::selection { background: var(--accent); color: var(--paper); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; border: 0;
}

.defs {
  position: absolute; left: 0; top: 0;
  width: 1px; height: 1px; overflow: hidden;
  pointer-events: none;
}

.skip {
  position: absolute; left: var(--gut); top: -100px; z-index: 1000;
  background: var(--ink); color: var(--paper);
  font-family: var(--label); font-size: 0.85rem;
  padding: 0.7rem 1rem; text-decoration: none;
  transition: top 0.15s var(--ease);
}
.skip:focus { top: 0.6rem; }

/* ---------- 3. Layout ---------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.wrap--narrow { max-width: 860px; }

section { position: relative; }

.band { padding-block: clamp(3rem, 7vw, 6rem); }
.band--tight { padding-block: clamp(2rem, 4vw, 3.25rem); }

/* the hard grid under the mess: a ruled margin line, notebook style */
.ruled {
  position: relative;
}
.ruled::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: calc(var(--gut) - 0.75rem);
  width: 1px;
  background: var(--accent);
  opacity: 0.32;
}

/* section marker: a hand-numbered tab in the margin */
.marker {
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.marker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ---------- 4. Intro curtain --------------------------------------------- */

.intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--paper-2);
  transform: translateY(0);
}
.intro[hidden] { display: none; }
.intro__knot { width: min(46vw, 190px); height: auto; }
.intro__word {
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  margin-top: 1.4rem;
  opacity: 0;
}

/* ---------- 5. Header / nav ---------------------------------------------- */

.hub {
  position: fixed;
  top: 0.55rem; left: 0.55rem;
  z-index: 800;
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink-2);
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 0.42rem 0.65rem;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  box-shadow: 1px 1px 0 var(--rule);
}
.hub:hover { color: var(--accent); border-color: var(--accent); }

.site-header {
  position: relative;
  z-index: 700;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  view-transition-name: kop;
}

.site-header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
  padding-top: 2.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand__knot { width: 34px; height: 34px; flex: none; }
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
}
.brand__sub {
  font-family: var(--label);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-top: 0.1rem;
}

.nav { display: flex; gap: 0.15rem; flex-wrap: wrap; }
.nav a {
  font-family: var(--label);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink-2);
  padding: 0.55rem 0.7rem;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0.7rem; right: 0.7rem; bottom: 0.34rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after,
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- 6. Hero: a notebook spread ----------------------------------- */

.spread {
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(2.2rem, 5vw, 4.5rem);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.spread__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 62rem) {
  .spread__grid { grid-template-columns: 1.05fr 0.95fr; }
}

.eyebrow {
  font-family: var(--label);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 1.2rem;
}

.spread h1 { margin-bottom: 0.55rem; }
.spread h1 .brk { color: var(--accent); }

.lede {
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem);
  color: var(--ink-2);
  max-width: 36ch;
}

/* the drawn knot diagram, annotated like a field note */
.spread__rechts { display: grid; gap: 1.8rem; }

.diagram {
  margin-top: 0;
  max-width: 430px;
}
.diagram svg { width: 100%; height: auto; }
.diagram figcaption {
  font-family: var(--label);
  font-size: 0.72rem;
  color: var(--ink-3);
  line-height: 1.5;
  margin-top: 0.5rem;
  border-top: 1px solid var(--rule);
  padding-top: 0.5rem;
}

/* the taped-in print */
.print {
  position: relative;
  margin: 0;
  background: var(--card);
  padding: 0.7rem 0.7rem 0.35rem;
  border: 1px solid var(--rule);
  box-shadow: 2px 3px 0 rgba(90, 78, 56, 0.10);
  transform: rotate(-1.1deg);
}
.print__media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 10;
}
.print__media img,
.print__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  /* de uitsnede houdt het bij rots en handen, niet bij gezichten */
  object-position: 50% 45%;
  filter: saturate(0.82) contrast(1.04) sepia(0.14);
}
.print__media video { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s var(--ease); }
.print__media video.is-on { opacity: 1; }
.print figcaption {
  font-family: var(--label);
  font-size: 0.7rem;
  color: var(--ink-3);
  padding-top: 0.55rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* tape: two disciplined strips, never more */
.tape {
  position: absolute;
  width: 92px; height: 26px;
  background: var(--tape);
  border-left: 1px solid var(--tape-edge);
  border-right: 1px solid var(--tape-edge);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.tape--tl { top: -12px; left: -16px; transform: rotate(-24deg); }
.tape--br { bottom: -11px; right: -18px; transform: rotate(-19deg); }

/* ---------- 7. Buttons --------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--label);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.85rem 1.15rem;
  min-height: 44px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 3px 3px 0 rgba(35, 32, 27, 0.18);
}
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn svg { flex: none; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--rule);
}
.btn--ghost:hover { background: var(--accent-soft); color: var(--accent); border-color: var(--accent); }

.btn--light {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.28);
}
.btn--light:hover { background: var(--cyan); border-color: var(--cyan); color: var(--forest-2); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }

/* text link with the scaleX underline */
.tlink {
  font-family: var(--label);
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--accent);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 24px;
}
.tlink::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.15rem;
  height: 1.5px; background: currentColor;
  transform: scaleX(1); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.tlink:hover::after { transform: scaleX(0); transform-origin: right; }

/* ---------- 8. Tracks (four audiences) ----------------------------------- */

.tracks {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 46rem) { .tracks { grid-template-columns: 1fr 1fr; } }
@media (min-width: 74rem) { .tracks { grid-template-columns: repeat(4, 1fr); } }

.track {
  position: relative;
  background: var(--card);
  padding: 1.5rem 1.35rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background-color 0.3s var(--ease);
}
.track:hover { background: var(--paper); }
.track__icon { width: 46px; height: 46px; color: var(--ink); }
.track h3 { margin: 0.35rem 0 0; }
.track p { font-size: 0.95rem; color: var(--ink-2); margin: 0; }
.track__go { margin-top: auto; padding-top: 1rem; }
.track__go a::before {
  content: "";
  position: absolute;
  inset: 0;
}
.track__num {
  position: absolute;
  top: 0.9rem; right: 1rem;
  font-family: var(--label);
  font-size: 0.68rem;
  color: var(--ink-3);
}

/* ---------- 9. Card contract --------------------------------------------- */

.cards { display: grid; gap: 1.1rem; }
@media (min-width: 48rem) { .cards--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 68rem) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  box-shadow: 2px 2px 0 rgba(90, 78, 56, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover {
  transform: translate(-2px, -3px);
  box-shadow: 5px 6px 0 rgba(90, 78, 56, 0.13);
  border-color: var(--ink-3);
}
.card:has(a:focus-visible) { border-color: var(--accent); }

/* the corner tape on cards, settles on hover */
.card__tape {
  position: absolute;
  top: -9px; left: 1.4rem;
  width: 64px; height: 20px;
  background: var(--tape);
  border-left: 1px solid var(--tape-edge);
  border-right: 1px solid var(--tape-edge);
  mix-blend-mode: multiply;
  transform: rotate(-3.5deg);
  transform-origin: 50% 100%;
  transition: transform 0.4s var(--ease);
  pointer-events: none;
}
.card:hover .card__tape { transform: rotate(0.5deg) translateY(1px); }

.card__date {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-family: var(--label);
  font-size: 0.8rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.chip-duur {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--rule);
  padding: 0.12rem 0.42rem;
}

.card h3 { margin: 0.1rem 0 0; font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.42rem); }
.card h3 a { color: var(--ink); text-decoration: none; }
.card h3 a::before { content: ""; position: absolute; inset: 0; }
.card h3 a:hover { color: var(--accent); }

.card__meta {
  font-family: var(--label);
  font-size: 0.76rem;
  color: var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
}
.card__meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.card__meta svg { width: 15px; height: 15px; flex: none; color: var(--ink-3); }

.card__prijs {
  font-family: var(--label);
  font-size: 0.86rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  border-top: 1px dashed var(--rule);
  padding-top: 0.6rem;
  margin-top: 0.15rem;
}
.card__prijs .sec { color: var(--ink-2); }

.card__note {
  font-family: var(--label);
  font-size: 0.72rem;
  color: var(--ink-3);
  margin: 0;
}

/* status slot: always present, word + shape */
.card__status { margin-top: auto; padding-top: 0.7rem; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status svg { width: 14px; height: 14px; flex: none; }
.status--open { color: var(--accent); }
.status--binnenkort { color: var(--ink-2); }
.status--voorbij { color: var(--ink-3); }
.status--overleg { color: var(--ink-2); }

.card--voorbij { opacity: 0.82; background: var(--paper-2); }
.card--voorbij h3 a { color: var(--ink-2); }

/* ---------- 10. Agenda --------------------------------------------------- */

.filters {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding-block: 0.75rem;
}
.filters__in {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  align-items: center;
}
.filters__in > * { flex: none; }
.filters__in [data-telling] { margin-left: auto; }
.filters__label {
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-right: 0.3rem;
}

.chip {
  position: relative;
  font-family: var(--label);
  font-size: 0.78rem;
  color: var(--ink-2);
  background: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 0.85rem;
  min-height: 40px;
  cursor: pointer;
  border-radius: 40px;
}
.chip:hover { color: var(--ink); }
.chip__ring {
  position: absolute;
  inset: -3px -5px;
  width: calc(100% + 10px); height: calc(100% + 6px);
  pointer-events: none;
  overflow: visible;
}
.chip__ring path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: var(--len, 400);
  stroke-dashoffset: var(--len, 400);
}
.chip[aria-pressed="true"] { color: var(--ink); }
.chip[aria-pressed="true"] .chip__ring path { stroke-dashoffset: 0; }

.maand {
  position: sticky;
  top: 4.15rem;
  z-index: 400;
  background: var(--paper);
  padding: 0.85rem 0 0.5rem;
  margin-top: 2.4rem;
  border-bottom: 2px solid var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.maand h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
  margin: 0;
}
.maand__tel {
  font-family: var(--label);
  font-size: 0.72rem;
  color: var(--ink-3);
  white-space: nowrap;
}
.maand-groep[hidden] { display: none; }
.maand-groep .cards { margin-top: 1.3rem; }

.leeg {
  font-family: var(--label);
  font-size: 0.85rem;
  color: var(--ink-2);
  padding: 2.5rem 0;
}

/* ---------- 11. Dark band (geld en vertrouwen) --------------------------- */

.donker {
  background: var(--forest);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.donker::before {
  /* contour lines, drawn once, very quiet */
  content: "";
  position: absolute;
  inset: -10% -5%;
  opacity: 0.13;
  background-image: repeating-radial-gradient(ellipse at 22% 40%, transparent 0 26px, var(--cyan) 26px 27px);
  pointer-events: none;
}
.donker h2, .donker h3 { color: var(--paper); }
.donker p { color: #D9D3C6; }
.donker .marker { color: var(--olive); }
.donker .marker::after { background: rgba(217, 211, 198, 0.3); }

.stappen {
  counter-reset: stap;
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 54rem) { .stappen { grid-template-columns: repeat(4, 1fr); } }
.stappen li {
  counter-increment: stap;
  border-top: 1px solid rgba(217, 211, 198, 0.28);
  padding-top: 0.85rem;
  font-family: var(--label);
  font-size: 0.85rem;
  line-height: 1.55;
  color: #D9D3C6;
}
.stappen li::before {
  content: "0" counter(stap);
  display: block;
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.knoop-uitleg {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 54rem) { .knoop-uitleg { grid-template-columns: 1fr 320px; } }

/* ---------- 12. Detail page ---------------------------------------------- */

.detail-hero {
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(2rem, 4.5vw, 3.5rem);
}
.detail-grid {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 64rem) { .detail-grid { grid-template-columns: minmax(0, 1fr) 340px; } }

.feiten {
  border: 1px solid var(--ink);
  background: var(--card);
  padding: 0;
  margin: 1.8rem 0 0;
}
.feiten > div {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.6rem 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px dashed var(--rule);
  font-family: var(--label);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}
.feiten > div:last-child { border-bottom: 0; }
.feiten dt { color: var(--ink-3); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0; align-self: center; }
.feiten dd { margin: 0; color: var(--ink); }
@media (max-width: 30rem) {
  .feiten > div { grid-template-columns: 1fr; gap: 0.2rem; }
}

.boek {
  border: 1.5px solid var(--ink);
  background: var(--card);
  padding: 1.2rem 1.2rem 1.35rem;
  box-shadow: 4px 4px 0 rgba(90, 78, 56, 0.14);
}
@media (min-width: 64rem) {
  .boek { position: sticky; top: 1.5rem; }
}
.boek h2 { font-size: 1.35rem; }
.boek__prijs {
  font-family: var(--label);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
  border-block: 1px solid var(--rule);
  padding-block: 0.7rem;
  margin-block: 0.9rem;
}
.boek__prijs small { display: block; font-size: 0.74rem; color: var(--ink-2); margin-top: 0.25rem; letter-spacing: 0; }

.betaal {
  font-family: var(--label);
  font-size: 0.79rem;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--accent-soft);
  border-left: 2px solid var(--accent);
  padding: 0.8rem 0.9rem;
  margin: 0 0 1rem;
  max-width: none;
}

details {
  border-bottom: 1px solid var(--rule);
  padding: 0.2rem 0;
}
details summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 0.2rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "";
  width: 13px; height: 13px; flex: none;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.28s var(--ease);
}
details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
details .details__body { padding: 0 0.2rem 1rem; }
details .details__body p:last-child { margin-bottom: 0; }

.stub {
  border: 2px dashed var(--rule);
  background: var(--paper-2);
  padding: 1.4rem 1.3rem;
  font-family: var(--label);
  font-size: 0.86rem;
  color: var(--ink-2);
}
.stub p { max-width: 58ch; }
.stub p:last-child { margin-bottom: 0; }

.btn[aria-disabled="true"], .btn:disabled {
  background: var(--paper-3);
  border-color: var(--rule);
  color: var(--ink-3);
  box-shadow: none;
  cursor: not-allowed;
}
.btn[aria-disabled="true"]:hover { background: var(--paper-3); border-color: var(--rule); }

/* mobile sticky CTA */
.mobiele-balk {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 750;
  background: var(--card);
  border-top: 1px solid var(--ink);
  padding: 0.7rem var(--gut) calc(0.7rem + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  box-shadow: 0 -3px 14px rgba(35, 32, 27, 0.10);
}
.mobiele-balk__prijs {
  font-family: var(--label);
  font-size: 0.76rem;
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
}
.mobiele-balk__prijs small { display: block; color: var(--ink-2); font-size: 0.7rem; }
.mobiele-balk .btn { padding: 0.7rem 0.95rem; box-shadow: none; white-space: nowrap; flex: none; }
@media (min-width: 64rem) { .mobiele-balk { display: none; } }
@media (max-width: 63.99rem) { body.heeft-balk { padding-bottom: 5rem; } }

/* ---------- 13. Footer --------------------------------------------------- */

.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  padding-block: clamp(2.5rem, 5vw, 4rem) 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 52rem) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.site-footer h2 { font-size: 1.15rem; }
.site-footer address {
  font-style: normal;
  font-family: var(--label);
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--ink-2);
}
.footer-links { list-style: none; margin: 0; padding: 0; font-family: var(--label); font-size: 0.82rem; }
.footer-links li { margin-bottom: 0.35rem; }
.footer-links a { color: var(--ink-2); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }

.erkenning {
  margin-top: 2.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
  font-family: var(--label);
  font-size: 0.72rem;
  color: var(--ink-3);
  display: flex;
  gap: 0.6rem 1.4rem;
  flex-wrap: wrap;
  align-items: center;
}
.erkenning span { display: inline-flex; align-items: center; gap: 0.45rem; }
.erkenning svg { width: 14px; height: 14px; color: var(--accent); }

/* ---------- 14. Reveals & motion ----------------------------------------- */

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

  .reveal {
    opacity: 0;
    transform: translateY(14px);
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--d, 0ms);
  }

  /* the taped print straightens itself when you reach it */
  .print { transition: transform 1.1s var(--ease); }
  .print.is-in { transform: rotate(0.15deg); }

  .btn:hover { transform: translate(-1px, -2px); }
  .btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 rgba(35,32,27,0.2); }

  .chip__ring path { transition: stroke-dashoffset 0.55s var(--ease); }

  /* knot draw-on */
  .knoop-draw path { stroke-dasharray: 100; stroke-dashoffset: 100; }
  .knoop-draw.is-in path {
    animation: teken 1.05s var(--ease) forwards;
    animation-delay: calc(var(--i, 0) * 130ms);
  }
  .brand:hover .knoop-draw path,
  .brand:focus-visible .knoop-draw path {
    animation: teken 0.9s var(--ease) forwards;
    animation-delay: calc(var(--i, 0) * 80ms);
  }

  @keyframes teken { to { stroke-dashoffset: 0; } }

  /* intro */
  .intro__knot path { stroke-dasharray: 100; stroke-dashoffset: 100; animation: teken 0.72s var(--ease) forwards; animation-delay: calc(var(--i, 0) * 90ms); }
  .intro__word { animation: opdoemen 0.4s var(--ease) 0.55s forwards; }
  .intro.is-weg { animation: gordijn 0.62s var(--ease) forwards; }
  @keyframes opdoemen { to { opacity: 1; } }
  @keyframes gordijn {
    to { transform: translateY(-101%); }
  }

  @view-transition { navigation: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
  .knoop-draw path, .intro__knot path { stroke-dashoffset: 0; }
}

/* ---------- 15. Mobile: radical simplification --------------------------- */

@media (max-width: 47.99rem) {
  /* the mess comes off: no rotations, less tape, no ruled margin */
  .print { transform: none; box-shadow: none; }
  .print.is-in { transform: none; }
  .tape--tl { top: -9px; left: 50%; margin-left: -46px; transform: rotate(-2deg); }
  .tape--br { display: none; }
  .card__tape { display: none; }
  .ruled::before { display: none; }
  body::after { opacity: 0.05; }
  .donker::before { opacity: 0.09; }
  .card { box-shadow: none; }
  .card:hover { transform: none; box-shadow: none; }
  .site-header__in { padding-top: 2.9rem; align-items: flex-start; flex-direction: column; gap: 0.4rem; }
  .nav { margin-left: -0.7rem; }

  /* de hub-chip scrolt mee, zodat hij nooit iets bedekt */
  .hub { position: absolute; }

  /* de filters blijven één rij, je schuift ze opzij */
  .filters__in {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .filters__in::-webkit-scrollbar { display: none; }
  .filters__in [data-telling] { margin-left: 0.8rem; padding-right: 0.2rem; }
  .maand { top: 4.05rem; }
  .btn { width: 100%; justify-content: center; }
  .mobiele-balk .btn { width: auto; }
  .btn-row { gap: 0.55rem; }
}

@media (max-width: 23.5rem) {
  .nav a { padding-inline: 0.45rem; font-size: 0.74rem; }
  .brand__knot { width: 28px; height: 28px; }
}
