@charset "utf-8";
/* ==========================================================================
   NATURE vzw, richting 3: "rivier". De agenda is de site.
   Chronologie als interface. Kalme visuele taal, de structuur is de ster.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --paper:      #F5F4EF;
  --paper-2:    #EDEBE2;
  --paper-3:    #E4E1D5;
  --ink:        #14181A;
  --ink-2:      #55605C;
  --ink-3:      #7C857F;
  --rule:       #D6D2C4;
  --rule-2:     #C2BDAB;
  --accent:     #C31428;   /* AA op papier (5.6:1) */
  --accent-2:   #BD0BB1;   /* AA op papier (5.2:1) */
  --cyan:       #44B4D4;   /* NOOIT tekst op papier: enkel grafisch */
  --olive:      #B3B200;   /* idem */
  --forest:     #1E2A23;

  --gut: clamp(1.15rem, 4vw, 3.5rem);
  --maxw: 1220px;
  --headerH: 60px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --slow: 620ms;
  --med: 340ms;
  --fast: 170ms;

  --ff-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --ff-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --ff-place: "Newsreader", Georgia, "Times New Roman", serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--headerH) + 78px);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.55;
  font-variant-numeric: tabular-nums;
  hyphens: auto;
  overflow-x: hidden;
  /* fijne papierstructuur, geen foto nodig */
  background-image:
    radial-gradient(circle at 18% 12%, rgba(68,180,212,.055), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(179,178,0,.05), transparent 46%);
  background-attachment: fixed;
}

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

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

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

::selection { background: #14181A; color: var(--paper); }

/* ---------- hulpklassen ---------- */
.vh {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; border: 0;
}
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* focus: overal zichtbaar, nooit verwijderd */
:where(a, button, summary, input, [tabindex]):focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: 8px; top: -60px; z-index: 90;
  background: var(--ink); color: var(--paper);
  padding: .7rem 1rem; border-radius: 3px; text-decoration: none;
  transition: top var(--fast) var(--ease);
}
.skip:focus { top: 8px; }

/* terug naar de hub */
.hub {
  position: fixed; left: 10px; top: calc(var(--headerH) + 10px); z-index: 60;
  font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(245,244,239,.9);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--rule-2); border-radius: 999px;
  padding: .5rem .8rem; text-decoration: none; color: var(--ink-2);
  min-height: 24px; display: inline-flex; align-items: center;
  transition: color var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.hub:hover { color: var(--ink); border-color: var(--ink); }
@media (max-width: 760px) {
  /* op kleine schermen zit de seizoensband bovenaan, dus de hub gaat naar onder */
  .hub { top: auto; bottom: calc(.75rem + env(safe-area-inset-bottom)); }
  body.has-mobilebar .hub { bottom: calc(5.2rem + env(safe-area-inset-bottom)); }
}

/* ---------- intro (één keer per sessie, < 1.5 s) ---------- */
.intro {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  background: var(--paper);
}
.intro__inner { display: grid; justify-items: center; gap: 1.1rem; }
.intro__logo { width: min(190px, 46vw); height: auto; opacity: 0; }
.intro__line { width: 1px; height: 0; background: var(--ink); }
.intro__word {
  font-size: .74rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--ink-3); opacity: 0;
}
html.is-intro body { overflow: hidden; }
html:not(.is-intro) .intro { display: none; }

@media (prefers-reduced-motion: no-preference) {
  html.is-intro .intro__logo { animation: introLogo 700ms var(--ease) 80ms forwards; }
  html.is-intro .intro__line { animation: introLine 620ms var(--ease) 340ms forwards; }
  html.is-intro .intro__word { animation: introWord 500ms var(--ease) 620ms forwards; }
  html.is-intro .intro { animation: introOut 460ms var(--ease) 1000ms forwards; }
}
@media (prefers-reduced-motion: reduce) {
  html.is-intro .intro { display: none; }
}
@keyframes introLogo { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes introLine { from { height: 0; } to { height: 74px; } }
@keyframes introWord { to { opacity: 1; } }
@keyframes introOut { to { opacity: 0; visibility: hidden; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,244,239,.88);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  view-transition-name: site-header;
}
.site-header__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--headerH);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; padding: .35rem 0; }
.brand img { height: 34px; width: auto; view-transition-name: brand; }

.nav { display: flex; gap: clamp(.85rem, 2.4vw, 1.8rem); }
.nav a {
  position: relative; text-decoration: none;
  font-size: .84rem; letter-spacing: .045em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-2);
  padding: .55rem 0; min-height: 24px; display: inline-flex; align-items: center;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .28rem; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
}
@media (prefers-reduced-motion: no-preference) {
  .nav a::after { transition: transform var(--med) var(--ease); }
}
.nav a:hover, .nav a:focus-visible { color: var(--ink); }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after { transform: scaleX(1); background: var(--accent); }
@media (max-width: 420px) {
  .nav { gap: .7rem; }
  .nav a { font-size: .72rem; letter-spacing: .03em; }
  .brand img { height: 28px; }
}

/* ---------- seizoensband ---------- */
.seasons {
  position: sticky; top: var(--headerH); z-index: 40;
  background: rgba(245,244,239,.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  view-transition-name: seasons;
}
.seasons__in { padding-block: .55rem .5rem; }
.seasons__track {
  position: relative; display: grid;
  grid-template-columns: 3fr 3fr 3fr 1.4fr;
  gap: 4px; list-style: none; margin: 0; padding: 0;
}
.seasons__seg {
  --tint: var(--rule-2);
  position: relative; padding-top: .42rem;
  border-top: 3px solid var(--tint);
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.seasons__seg[data-season="herfst"] { --tint: #C31428; }
.seasons__seg[data-season="winter"] { --tint: #44B4D4; }
.seasons__seg[data-season="lente"]  { --tint: #B3B200; }
.seasons__seg[data-season="zomer"]  { --tint: #BD0BB1; }
.seasons__seg.is-now { color: var(--ink); font-weight: 600; }

.seasons__marker {
  position: absolute; top: -6px; left: 0; width: 2px; height: 15px;
  background: var(--ink);
  transform: translateX(calc(var(--flow, 0) * (100cqw - 2px)));
}
.seasons__rail { container-type: inline-size; position: relative; }
@media (prefers-reduced-motion: no-preference) {
  .seasons__marker { transition: transform 120ms linear; }
}
.seasons__marker::after {
  content: ""; position: absolute; left: 50%; top: -4px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink); transform: translateX(-50%);
}

/* ---------- hero ---------- */
.hero { padding-block: clamp(2.6rem, 8vw, 5.4rem) clamp(1.6rem, 4vw, 2.6rem); }
.eyebrow {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 clamp(1rem, 3vw, 1.9rem);
  display: flex; align-items: center; gap: .6rem;
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--rule); }

.hero h1 {
  font-size: clamp(2.5rem, 8.4vw, 6.1rem);
  font-stretch: 108%;
  letter-spacing: -.03em;
  max-width: 16ch;
}
.hero h1 .soft { color: var(--ink-3); }
.hero__lede {
  margin-top: clamp(1.1rem, 3vw, 1.8rem);
  max-width: 46ch; font-size: clamp(1.02rem, .98rem + .35vw, 1.25rem);
  color: var(--ink-2);
}
.hero__now {
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: .55rem .9rem;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3);
}
.hero__now b { color: var(--ink); font-weight: 600; letter-spacing: .04em; }
@media (max-width: 560px) {
  .hero__now { flex-direction: column; align-items: flex-start; gap: .35rem; }
  .hero__now > span[aria-hidden="true"] { display: none; }
}

/* gestaffelde titelreveal, aria-veilig */
.stagger > span { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  .stagger > span { opacity: 0; transform: translateY(.5em); animation: rise 760ms var(--ease) forwards; }
  .stagger > span:nth-child(1) { animation-delay: 40ms; }
  .stagger > span:nth-child(2) { animation-delay: 130ms; }
  .stagger > span:nth-child(3) { animation-delay: 220ms; }
  .stagger > span:nth-child(4) { animation-delay: 310ms; }
  .stagger > span:nth-child(5) { animation-delay: 400ms; }
  html.is-intro .stagger > span { animation-play-state: paused; }
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* horizonstrip: poster is LCP, video komt er na load in */
.horizon {
  position: relative; margin-top: clamp(1.8rem, 5vw, 3rem);
  border-radius: 14px; overflow: hidden; background: var(--paper-3);
  aspect-ratio: 16 / 9;
}
@media (min-width: 760px) { .horizon { aspect-ratio: 21 / 7; border-radius: 4px; } }
.horizon img, .horizon video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
}
@media (min-width: 760px) {
  /* op breed scherm tonen we de kalkrots, niet het ingebakken logo */
  .horizon img, .horizon video { object-position: 50% 76%; }
}
.horizon video { opacity: 0; }
.horizon.is-playing video { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .horizon video { transition: opacity 700ms var(--ease); }
}
.horizon__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .8rem 1rem;
  background: linear-gradient(to top, rgba(20,24,26,.62), transparent);
  color: #fff; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
}

/* ---------- tijdchips + filters ---------- */
.chips {
  display: flex; flex-wrap: wrap; gap: .5rem;
  list-style: none; margin: 0; padding: 0;
}
.chip {
  font: inherit; font-size: .82rem; line-height: 1;
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 40px; padding: .6rem .95rem;
  border: 1px solid var(--rule-2); border-radius: 999px;
  background: transparent; color: var(--ink-2); cursor: pointer;
  text-decoration: none;
}
@media (prefers-reduced-motion: no-preference) {
  .chip { transition: background var(--fast) var(--ease), color var(--fast) var(--ease), border-color var(--fast) var(--ease), transform var(--fast) var(--ease); }
}
.chip:hover { color: var(--ink); border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chip .count { font-size: .74rem; opacity: .6; font-variant-numeric: tabular-nums; }

.filterbar {
  display: flex; flex-wrap: wrap; gap: 1rem 1.6rem;
  align-items: center; justify-content: space-between;
  padding-block: clamp(1rem, 3vw, 1.6rem);
}
.filterbar__note { font-size: .84rem; color: var(--ink-3); margin: 0; }

/* ---------- de rivier ---------- */
.river { padding-bottom: clamp(3rem, 8vw, 6rem); }
.month {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .month { grid-template-columns: minmax(9rem, 15rem) 1fr; column-gap: clamp(1.5rem, 4vw, 3.5rem); }
}
.month__marker {
  position: sticky; top: calc(var(--headerH) + 46px);
  align-self: start;
  padding-block: 1.1rem .6rem;
  z-index: 5;
  background: linear-gradient(to bottom, var(--paper) 72%, rgba(245,244,239,0));
}
@media (min-width: 900px) { .month__marker { padding-block: 2.2rem 1rem; background: none; } }
.month__name {
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.35rem);
  font-stretch: 112%; letter-spacing: -.03em; text-transform: lowercase;
}
.month__year {
  display: block; font-size: .72rem; letter-spacing: .22em;
  color: var(--ink-3); margin-top: .35rem; font-weight: 500;
}
.month__count { display: block; font-size: .78rem; color: var(--ink-3); margin-top: .1rem; }

.month__list {
  position: relative; list-style: none; margin: 0;
  padding: 0 0 clamp(1.5rem, 4vw, 2.6rem) clamp(1.5rem, 4vw, 2.6rem);
}
/* de stroomlijn: grijze bedding + inkt die meevloeit */
.month__list::before,
.month__list::after {
  content: ""; position: absolute; left: 0; top: 1.6rem; bottom: 1.6rem; width: 1px;
}
.month__list::before { background: var(--rule); }
.month__list::after {
  background: var(--ink); transform-origin: top; transform: scaleY(var(--fill, 0));
}
@media (prefers-reduced-motion: no-preference) {
  .month__list::after { transition: transform 900ms var(--ease); }
}
@media (prefers-reduced-motion: reduce) {
  .month__list::after { transform: scaleY(1); opacity: .35; }
}

/* ---------- de kaart (het item in de stroom) ---------- */
.entry {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: .55rem 0;
  padding: clamp(1.4rem, 3.4vw, 2.1rem) 0;
  border-bottom: 1px solid var(--rule);
}
.entry:last-child { border-bottom: 0; }
@media (min-width: 720px) {
  .entry {
    grid-template-columns: minmax(7.5rem, 9.5rem) minmax(0, 1fr) minmax(0, auto);
    column-gap: clamp(1.2rem, 3vw, 2.6rem);
    align-items: start;
  }
}
/* knoop op de lijn */
.entry::before {
  content: ""; position: absolute;
  left: calc(clamp(1.5rem, 4vw, 2.6rem) * -1 - 4.5px);
  top: calc(clamp(1.4rem, 3.4vw, 2.1rem) + .55rem);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--paper); border: 1.5px solid var(--rule-2);
}
@media (prefers-reduced-motion: no-preference) {
  .entry::before { transition: transform var(--med) var(--ease), background var(--med) var(--ease), border-color var(--med) var(--ease); }
}
.entry.is-in::before { border-color: var(--ink); }
.entry[data-status="open"].is-in::before { background: var(--ink); }
.entry[data-status="voorbij"]::before { border-color: var(--rule-2); background: var(--paper-3); }

/* datum als displaytype */
.entry__date {
  font-family: var(--ff-display); font-weight: 700;
  line-height: .92; letter-spacing: -.04em;
  color: var(--ink);
  display: flex; align-items: baseline; flex-wrap: wrap; gap: .25rem .5rem;
}
.entry__d {
  font-size: clamp(2.1rem, 1.2rem + 3.4vw, 3.5rem);
  font-stretch: 105%;
}
.entry__to { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--ink-3); font-weight: 500; }
.entry__my {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600; width: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .entry__date { transition: transform var(--med) var(--ease); }
  .entry:hover .entry__date, .entry:focus-within .entry__date { transform: translateX(6px); }
  .entry:hover::before, .entry:focus-within::before { transform: scale(1.5); }
}
.entry__dur {
  display: inline-block; margin-top: .55rem;
  font-family: var(--ff-body); font-weight: 500; letter-spacing: .02em;
  font-size: .74rem; color: var(--ink-2);
  border: 1px solid var(--rule-2); border-radius: 999px; padding: .2rem .55rem;
}

.entry__body { min-width: 0; }
.entry__title {
  font-size: clamp(1.22rem, 1.05rem + .7vw, 1.65rem);
  font-weight: 600; letter-spacing: -.018em;
}
.entry__title a { text-decoration: none; }
.entry__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.entry__title a::before {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: right; z-index: 2;
}
@media (prefers-reduced-motion: no-preference) {
  .entry__title a::before { transition: transform var(--med) var(--ease); }
}
.entry:hover .entry__title a::before,
.entry__title a:focus-visible::before { transform: scaleX(1); transform-origin: left; }
.entry__title a:focus-visible { outline-offset: 4px; }

.entry__place {
  font-family: var(--ff-place); font-style: italic;
  font-size: clamp(1.02rem, .98rem + .3vw, 1.2rem);
  color: var(--ink-2); margin: .3rem 0 0;
}
.entry__who { margin: .5rem 0 0; font-size: .9rem; color: var(--ink-2); }
.entry__price { margin: .35rem 0 0; font-size: .95rem; font-weight: 600; }
.entry__price .alt { font-weight: 400; color: var(--ink-2); }
.entry__note { margin: .3rem 0 0; font-size: .84rem; color: var(--ink-3); }

.entry__status { display: flex; justify-content: flex-start; padding-top: .2rem; }
@media (min-width: 720px) { .entry__status { justify-content: flex-end; } }

/* status: woord + vorm, nooit kleur alleen */
.status {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  white-space: nowrap;
}
.status svg { flex: none; }
.status--open { color: var(--accent); }
.status--binnenkort { color: var(--ink-2); }
.status--voorbij { color: var(--ink-3); font-weight: 500; }

/* uitklap via :target, puur CSS */
.entry__deep {
  display: grid; grid-template-rows: 0fr; overflow: hidden;
  color: var(--ink-2); font-size: .93rem;
}
@media (prefers-reduced-motion: no-preference) {
  .entry__deep { transition: grid-template-rows 420ms var(--ease); }
}
.entry__deep > div { min-height: 0; }
.entry:target .entry__deep { grid-template-rows: 1fr; }
.entry__deep p { margin: .9rem 0 0; max-width: 60ch; }
.entry__deep a { position: relative; z-index: 3; }
.entry:target { background: linear-gradient(to right, rgba(228,225,213,.6), rgba(228,225,213,0) 70%); }
.entry:target::before { background: var(--accent); border-color: var(--accent); }

.entry[data-status="voorbij"] .entry__date,
.entry[data-status="voorbij"] .entry__title { color: var(--ink-2); }

.entry[hidden] { display: none; }
.month[hidden] { display: none; }

/* ---------- secties ---------- */
.section { padding-block: clamp(3rem, 8vw, 6rem); }
.section--tint { background: var(--paper-2); border-block: 1px solid var(--rule); }
.section__head { max-width: 60ch; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.section__head h2 {
  font-size: clamp(1.8rem, 1.3rem + 2.2vw, 3.1rem);
  font-stretch: 106%;
}
.section__head p { margin-top: .9rem; color: var(--ink-2); max-width: 52ch; }

/* vier sporen */
.tracks { display: grid; gap: 1px; background: var(--rule); border-block: 1px solid var(--rule); }
@media (min-width: 700px) { .tracks { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .tracks { grid-template-columns: repeat(4, 1fr); } }
.track {
  position: relative; background: var(--paper);
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.2rem, 2.4vw, 1.6rem) clamp(1.8rem, 4vw, 2.4rem);
  display: flex; flex-direction: column; gap: .7rem;
}
@media (prefers-reduced-motion: no-preference) {
  .track { transition: background var(--med) var(--ease); }
}
.track:hover { background: var(--paper-2); }
.track__icon { color: var(--ink); }
.track h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -.01em; }
.track h3 a { text-decoration: none; }
.track h3 a::after { content: ""; position: absolute; inset: 0; }
.track p { font-size: .93rem; color: var(--ink-2); margin: 0; }
.track__go {
  margin-top: auto; padding-top: .8rem;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2); display: inline-flex; align-items: center; gap: .5rem;
}
@media (prefers-reduced-motion: no-preference) {
  .track__go svg { transition: transform var(--med) var(--ease); }
  .track:hover .track__go svg { transform: translateX(5px); }
}
.track__strand { position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--tint, var(--rule-2)); }

/* geld en vertrouwen */
.trust { display: grid; gap: clamp(1.6rem, 4vw, 3rem); }
@media (min-width: 900px) { .trust { grid-template-columns: 1.05fr .95fr; } }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; }
.steps li {
  counter-increment: s; position: relative;
  padding: 1rem 0 1rem 3.2rem; border-top: 1px solid var(--rule);
}
.steps li:last-child { border-bottom: 1px solid var(--rule); }
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: 1rem;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem;
  color: var(--ink-3); line-height: 1;
}
.steps b { font-weight: 600; }
.factsheet { list-style: none; margin: 0; padding: 0; }
.factsheet li {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: .75rem 0; border-bottom: 1px solid var(--rule); font-size: .95rem;
}
.factsheet span:first-child { color: var(--ink-2); }
.factsheet span:last-child { font-weight: 600; text-align: right; }

/* knoppen */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  min-height: 48px; padding: .85rem 1.5rem;
  background: var(--ink); color: var(--paper); text-decoration: none;
  border: 1px solid var(--ink); border-radius: 999px;
  font-weight: 600; font-size: .96rem; letter-spacing: .01em;
}
@media (prefers-reduced-motion: no-preference) {
  .btn { transition: transform var(--med) var(--ease), background var(--med) var(--ease); }
  .btn:hover { transform: translateY(-2px) scale(1.015); background: #000; }
}
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--paper-2); }
.btn svg { flex: none; }
.btn[aria-disabled="true"] {
  background: var(--paper-2); color: var(--ink-2); border-color: var(--rule-2);
  cursor: not-allowed; pointer-events: none;
}

.linklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.linklist a {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 40px; padding: .4rem 0; text-decoration: none; color: var(--ink-2);
}
.linklist a:hover { color: var(--ink); }
.linklist a span { text-decoration: underline; text-underline-offset: .22em; text-decoration-thickness: 1px; }

/* ---------- detailpagina ---------- */
.detail-hero { padding-block: clamp(2.2rem, 6vw, 4rem) clamp(1.4rem, 4vw, 2.4rem); }
.detail-hero h1 {
  font-size: clamp(2.2rem, 1.4rem + 4.4vw, 4.6rem);
  font-stretch: 108%; max-width: 15ch;
}
.bigdate {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.6rem, 1.4rem + 6.2vw, 6.5rem);
  font-stretch: 112%; letter-spacing: -.045em; line-height: .9;
  margin: clamp(1rem, 3vw, 1.8rem) 0 0;
}
.bigdate .to { color: var(--ink-3); }
.bigdate .yr { display: block; font-size: .26em; letter-spacing: .2em; color: var(--ink-2); margin-top: .8rem; }

.detail-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 980px) { .detail-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 380px); } }
.booking {
  border: 1px solid var(--ink); border-radius: 6px; padding: clamp(1.2rem, 3vw, 1.7rem);
  background: var(--paper);
}
@media (min-width: 980px) { .booking { position: sticky; top: calc(var(--headerH) + 24px); } }
.booking h2 { font-size: 1.25rem; }
.booking .price { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; letter-spacing: -.03em; margin-top: .7rem; }
.booking .price small { display: block; font-size: .95rem; font-weight: 500; color: var(--ink-2); letter-spacing: 0; margin-top: .3rem; }
.booking .btn { width: 100%; justify-content: center; margin-top: 1.1rem; }
.booking__pay { font-size: .88rem; color: var(--ink-2); margin-top: 1rem; }

.prose h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); margin-top: clamp(2rem, 5vw, 3rem); }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: .9rem; max-width: 62ch; color: var(--ink-2); }
.prose p.lead { color: var(--ink); font-size: clamp(1.08rem, 1rem + .5vw, 1.3rem); }

details.pract {
  border-top: 1px solid var(--rule);
}
details.pract:last-of-type { border-bottom: 1px solid var(--rule); }
details.pract > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 0; min-height: 48px;
  font-weight: 600; font-size: 1.02rem;
}
details.pract > summary::-webkit-details-marker { display: none; }
details.pract > summary .plus { position: relative; width: 14px; height: 14px; flex: none; }
details.pract > summary .plus::before,
details.pract > summary .plus::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--ink);
}
details.pract > summary .plus::before { width: 14px; height: 1.5px; }
details.pract > summary .plus::after { width: 1.5px; height: 14px; }
@media (prefers-reduced-motion: no-preference) {
  details.pract > summary .plus::after { transition: transform var(--med) var(--ease); }
}
details.pract[open] > summary .plus::after { transform: scaleY(0); }
details.pract > div { padding-bottom: 1.2rem; color: var(--ink-2); max-width: 62ch; }
details.pract ul { margin: 0; padding-left: 1.1rem; }
details.pract li { margin-bottom: .35rem; }

.facts {
  display: grid; gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: 6px; overflow: hidden;
  margin-top: clamp(1.4rem, 3vw, 2rem);
}
@media (min-width: 620px) { .facts { grid-template-columns: 1fr 1fr; } }
.facts > div { background: var(--paper); padding: 1rem 1.1rem; }
.facts dt { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.facts dd { margin: .35rem 0 0; font-size: 1.05rem; font-weight: 600; }
.facts dd small { display: block; font-weight: 400; font-size: .88rem; color: var(--ink-2); margin-top: .2rem; }

/* mobiele vaste balk */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(245,244,239,.96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--rule-2);
  padding: .7rem var(--gut) calc(.7rem + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.mobilebar .p { font-size: .88rem; font-weight: 600; }
.mobilebar .p small { display: block; font-weight: 400; color: var(--ink-2); font-size: .78rem; }
.mobilebar .btn { min-height: 44px; padding: .6rem 1.1rem; font-size: .9rem; }
@media (min-width: 980px) { .mobilebar { display: none; } }
body.has-mobilebar { padding-bottom: 84px; }
@media (min-width: 980px) { body.has-mobilebar { padding-bottom: 0; } }

/* ---------- footer ---------- */
.site-footer {
  background: var(--forest); color: #EAEDE8;
  padding-block: clamp(2.6rem, 7vw, 4.5rem) clamp(1.6rem, 4vw, 2.4rem);
  margin-top: clamp(2rem, 6vw, 4rem);
}
.site-footer a { color: #EAEDE8; }
.site-footer__grid { display: grid; gap: clamp(1.8rem, 4vw, 3rem); }
@media (min-width: 760px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.site-footer h2 { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: #9FB3A6; font-weight: 600; margin-bottom: .9rem; }
.site-footer p { color: #C8D2CB; font-size: .95rem; }
.site-footer .linklist a { color: #EAEDE8; }
.site-footer .linklist a:hover { color: #fff; }
.site-footer address { font-style: normal; color: #C8D2CB; font-size: .95rem; line-height: 1.7; }
.site-footer .brandmark { width: 132px; height: auto; margin-bottom: 1.2rem; }
.footer-strands { display: flex; gap: 6px; margin-bottom: 1.4rem; }
.footer-strands span { display: block; width: 34px; height: 3px; border-radius: 2px; }
.legal {
  margin-top: clamp(2rem, 5vw, 3rem); padding-top: 1.2rem;
  border-top: 1px solid rgba(234,237,232,.18);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: #9FB3A6;
}
.site-footer :where(a):focus-visible { outline-color: #EAEDE8; }

/* ---------- reveals ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js-on .reveal { opacity: 0; transform: translateY(16px); }
  html.js-on .reveal.is-in { opacity: 1; transform: none; transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease); }
  html.js-on .entry:not(.is-in) .entry__body,
  html.js-on .entry:not(.is-in) .entry__date,
  html.js-on .entry:not(.is-in) .entry__status { opacity: 0; transform: translateY(10px); }
  .entry.is-in .entry__body, .entry.is-in .entry__date, .entry.is-in .entry__status {
    opacity: 1; transform: none;
    transition: opacity 560ms var(--ease), transform 560ms var(--ease);
  }
  .entry.is-in .entry__body { transition-delay: 60ms; }
  .entry.is-in .entry__status { transition-delay: 110ms; }
}

/* ---------- view transitions ---------- */
@view-transition { navigation: auto; }

/* ---------- print ---------- */
@media print {
  .site-header, .seasons, .hub, .mobilebar, .horizon { display: none; }
  body { background: #fff; }
}

/* ---------- prototypenoot: eerlijk zeggen wat we nog niet weten ---------- */
.note-proto {
  font-size: .84rem; color: var(--ink-3);
  border-left: 2px solid var(--rule-2); padding-left: .85rem;
  margin-top: 1rem; max-width: 54ch;
}
.stub {
  border: 1px dashed var(--rule-2); border-radius: 6px;
  padding: clamp(1.2rem, 3vw, 1.8rem); background: var(--paper-2);
  margin-top: clamp(1.4rem, 3vw, 2rem);
}
.stub h2 { font-size: 1.3rem; }
.stub p { margin-top: .8rem; color: var(--ink-2); max-width: 58ch; }

.btn:disabled { background: var(--paper-2); color: var(--ink-2); border-color: var(--rule-2); cursor: not-allowed; font-family: inherit; }
