/* =========================================================
   Nature Adventures — light, calm, photo-led
   White page, sand bands, one inverted block, generous air.
   ========================================================= */

:root {
  --paper:      #FFFFFF;
  --sand:       #F6F2EA;
  --sand-2:     #EFE9DC;
  --ink:        #17191A;
  --ink-2:      #40464A;
  --muted:      #75797C;
  --line:       #E8E3D7;
  --line-soft:  #F0ECE2;

  --accent:      #2E6B52;
  --accent-deep: #1F4A39;
  --accent-soft: #EBF2EE;
  --star:        #DC9C34;
  --danger:      #A63A25;

  --shadow-card: 0 1px 2px rgba(23,25,26,.04), 0 10px 30px rgba(23,25,26,.06);
  --shadow-lift: 0 2px 6px rgba(23,25,26,.06), 0 22px 48px rgba(23,25,26,.10);

  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 48px);

  --ff-head: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  color-scheme: light only;
}

/* This site is light, always. No automatic dark mode: a viewer whose
   system is set to dark still gets the white version. */

/* ---------- base ---------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; }
p { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 14px; top: -80px; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; border-radius: var(--r-xs);
  transition: top .15s ease;
}
.skip-link:focus { top: 14px; }

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

/* [hidden] has to beat every display rule further down — a `display: grid`
   on a component silently un-hides it otherwise. */
[hidden] { display: none !important; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: 820px; }

/* grid/flex children may shrink below their content */
.fleet > *, .steps > *, .kit-grid > *, .contact-grid > *, .footer-grid > *,
.field-grid > *, .booking-shell > *, .inspo-grid > *, .pick > *, .extra > *,
.delivery-grid > * { min-width: 0; }

/* ---------- type ---------- */

.eyebrow {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0;
  display: block;
  margin-bottom: 12px;
}

h2.title {
  font-size: clamp(28px, 3.9vw, 42px);
}
h3.subtitle { font-size: clamp(21px, 2.4vw, 26px); }

.lead {
  color: var(--ink-2);
  font-size: clamp(16.5px, 1.5vw, 19px);
  max-width: 60ch;
  margin-top: 16px;
}

.num { font-variant-numeric: tabular-nums; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- buttons ---------- */

.btn {
  --bg: var(--accent);
  --fg: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--bg); color: var(--fg);
  font-family: var(--ff-body); font-size: 16px; font-weight: 600; line-height: 1.2;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.btn-primary:hover { --bg: var(--accent-deep); }
.btn-quiet { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn-quiet:hover { --bg: var(--sand); border-color: var(--line); }
.btn-ink { --bg: var(--ink); --fg: var(--paper); }
.btn-sm { padding: 9px 17px; font-size: 15px; }
.btn-lg { padding: 16px 30px; font-size: 17px; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--accent); font-weight: 600; text-decoration: none;
}
.link-arrow:hover { text-decoration: underline; }
.link-arrow svg { width: 17px; height: 17px; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header[data-solid="true"] { border-bottom-color: var(--line-soft); }

.header-inner { display: flex; align-items: center; gap: 16px; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); flex: 0 0 auto; }
.brand-mark { width: 38px; height: 38px; color: var(--accent); flex: 0 0 auto; }
.site-header .brand-text { display: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--ff-head); font-weight: 600; font-size: 17.5px; letter-spacing: -.01em; }
.brand-sub { font-size: 12.5px; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 2px; margin-inline-start: auto; }
.nav > a {
  padding: 9px 14px; border-radius: var(--r-pill);
  text-decoration: none; font-size: 16px; color: var(--ink-2);
  transition: color .15s ease, background .15s ease;
}
.nav > a:hover { color: var(--ink); background: var(--sand); }

.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.lang { position: relative; }
.lang-current {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 13px;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: transparent; color: var(--ink);
  font: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer;
}
.lang-current .flag { font-size: 16px; line-height: 1; }
.lang-current svg { width: 12px; height: 12px; opacity: .55; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  min-width: 180px; padding: 6px;
  background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  box-shadow: var(--shadow-card);
  display: grid; gap: 2px;
}
.lang-menu[hidden] { display: none; }
.lang-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 9px 11px; border: 0; border-radius: var(--r-xs);
  background: transparent; color: var(--ink);
  font: inherit; font-size: 15.5px; text-align: start; cursor: pointer;
}
.lang-menu button:hover { background: var(--sand); }
.lang-menu button[aria-current="true"] { background: var(--accent-soft); color: var(--accent-deep); font-weight: 600; }
.lang-menu .flag { font-size: 17px; }

.menu-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: transparent; color: var(--ink); cursor: pointer;
}
.menu-toggle svg { width: 19px; height: 19px; }

@media (max-width: 1040px) {
  .nav {
    position: fixed; inset: 0 0 auto 0;
    top: calc(76px + env(safe-area-inset-top, 0px));
    flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    padding: 10px var(--gutter) 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
  }
  .nav[hidden] { display: none; }
  .nav > a { font-size: 18px; padding: 14px 4px; border-radius: 0; border-bottom: 1px solid var(--line-soft); }
  .nav > a:last-child { border-bottom: 0; }
  .nav > a:hover { background: transparent; }
  .menu-toggle { display: inline-flex; order: 9; }
  .header-actions .btn-header { display: none; }
}

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

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(40px, 6vw, 92px) var(--gutter);
  max-width: calc(var(--maxw) / 2 + var(--gutter));
  margin-inline-start: auto;
  width: 100%;
}
@media (max-width: 900px) {
  .hero-side { order: 2; max-width: none; margin-inline-start: 0; padding-block: clamp(32px, 7vw, 56px); }
  .hero-photo { order: 1; }
}

.hero-lockup { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 20px); color: var(--ink); }
.lockup-mark { width: clamp(46px, 4.4vw, 66px); height: auto; flex: 0 0 auto; color: var(--accent); }
.wordmark {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 50px);
  letter-spacing: -.035em;
  line-height: 1;
}

.hero-tagline {
  font-size: clamp(18px, 1.9vw, 23px);
  color: var(--ink-2);
  max-width: 34ch;
}

.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.hero-facts { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 10px; }
.hero-facts li {
  position: relative; padding-inline-start: 26px;
  color: var(--ink-2); font-size: 16px;
}
.hero-facts li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .62em;
  width: 11px; height: 6px;
  border-inline-start: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.hero-photo { position: relative; overflow: hidden; background: var(--sand-2); min-height: 460px; }
/* absolute, so a portrait photo cannot stretch the hero to its own height */
.hero-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 34% 64%;
}
@media (max-width: 900px) { .hero-photo { aspect-ratio: 4 / 3; min-height: 0; } }

.hero-badge {
  position: absolute;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 2;
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(16, 20, 18, .18), 0 14px 34px rgba(16, 20, 18, .18);
  color: var(--ink);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  transition: transform .16s ease, box-shadow .16s ease;
}
.hero-badge:hover { transform: translateY(-2px); box-shadow: 0 3px 10px rgba(16,20,18,.2), 0 20px 44px rgba(16,20,18,.24); }
.hero-badge b { font-family: var(--ff-head); font-size: 26px; font-weight: 700; letter-spacing: -.02em; }
.hero-badge .hb-label, .hero-badge .hb-unit { font-size: 14.5px; color: var(--muted); }

/* ---------- services ---------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 880px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  background: var(--paper);
  padding: 24px 24px 22px;
  display: grid;
  gap: 10px;
  align-content: start;
  text-decoration: none;
  color: inherit;
  transition: background .15s ease;
}
.svc:hover { background: var(--sand); }
.svc-icon { width: 24px; height: 24px; color: var(--accent); }
.svc h3 { font-size: 18px; }
.svc p { color: var(--muted); font-size: 15.5px; }
.svc-price {
  margin-top: 6px;
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.svc-price b { font-family: var(--ff-head); font-size: 22px; font-weight: 600; }
.svc-price small { color: var(--muted); font-size: 14px; }
.svc-price .lbl { color: var(--muted); font-size: 14.5px; }

/* ---------- intro ---------- */

.intro-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-grid .photo { aspect-ratio: 4 / 3; }
.intro-body p + p { margin-top: 16px; }
.intro-body .lead { margin-top: 18px; }

/* trust row */

.trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 40px;
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: 0;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--ink-2); font-size: 15.5px;
}
.trust-item svg { width: 19px; height: 19px; color: var(--accent); flex: 0 0 auto; }

/* ---------- sections ---------- */

.section { padding-block: clamp(58px, 8vw, 96px); }
/* white by default; one section carries a tint, on purpose */
.section--tint { background: var(--sand); }
.section--tint + .section { padding-top: clamp(58px, 8vw, 96px); }

.built-by { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); text-decoration: none; }
.built-by:hover { color: var(--accent); }
.built-by img { width: 18px; height: 18px; border-radius: 4px; flex: 0 0 auto; }

/* separation comes from space, not from bands */
.section + .section { padding-top: 0; }
.section-rule { border-top: 1px solid var(--line-soft); padding-top: clamp(58px, 8vw, 96px); }

.section-head { max-width: 62ch; }
.section-head.center { margin-inline: auto; }

.head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}

/* ---------- photo slots ---------- */

.photo {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--sand-2);
  max-width: 100%;
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--empty {
  display: grid; place-items: center;
  border: 1px dashed var(--line);
  background: var(--sand);
  padding: 20px;
  text-align: center;
}
.photo--empty span {
  color: var(--muted); font-size: 13.5px; line-height: 1.45;
  display: grid; gap: 6px; justify-items: center;
}
.photo--empty svg { width: 24px; height: 24px; color: var(--muted); opacity: .7; }

/* ---------- fleet listing (TripAdvisor-ish rows) ---------- */

.fleet { display: grid; gap: 18px; margin-top: 40px; }

.unit {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.unit:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
@media (max-width: 820px) { .unit { grid-template-columns: 1fr; } }

.unit-media { position: relative; aspect-ratio: 4 / 3; background: var(--sand-2); }
.unit-media .photo { height: 100%; border-radius: 0; }
.unit-media .photo--empty { border: 0; border-inline-end: 1px solid var(--line); }
@media (max-width: 820px) { .unit-media { aspect-ratio: 16 / 9; } }

.unit-flag {
  position: absolute; left: 12px; top: 12px;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.94);
  color: var(--ink); font-size: 13px; font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,.14);
}

.unit-body { padding: 22px 24px 20px; display: flex; flex-direction: column; gap: 12px; }
.unit-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.unit-name { font-family: var(--ff-head); font-size: 23px; font-weight: 600; }
.unit-kind { font-size: 14.5px; color: var(--muted); margin-top: 2px; }
.unit-where {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px; font-size: 14.5px; color: var(--accent); font-weight: 600;
}
.unit-where svg { width: 15px; height: 15px; }
.unit-avail { font-size: 14px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.unit-avail[data-free="false"] { color: var(--muted); font-weight: 400; }
.unit-desc { color: var(--ink-2); font-size: 16px; }

.pills { display: flex; flex-wrap: wrap; gap: 7px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--sand); color: var(--ink-2);
  font-size: 14px;
}
.pill svg { width: 15px; height: 15px; color: var(--accent); }

.unit-foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.unit-price b { font-family: var(--ff-head); font-size: 25px; font-weight: 600; font-variant-numeric: tabular-nums; }
.unit-price span { display: block; font-size: 13.5px; color: var(--muted); }

/* ---------- fleet intro with cut-out ---------- */

.fleet-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
@media (max-width: 900px) { .fleet-intro { grid-template-columns: 1fr; } }
.fleet-cutout img { width: 100%; }

/* ---------- delivery / pickup ---------- */

.delivery-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin-top: 38px;
}
@media (max-width: 760px) { .delivery-grid { grid-template-columns: 1fr; } }
.delivery {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 26px 24px;
  display: grid; gap: 10px; align-content: start;
}
.delivery h3 { font-size: 20px; }
.delivery p { color: var(--ink-2); font-size: 15.5px; }
.delivery .price-note { color: var(--accent); font-weight: 600; font-size: 15.5px; }

/* ---------- steps ---------- */

.steps {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(22px, 3vw, 40px); margin-top: 44px;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 26px; } }
.step { display: grid; gap: 8px; }
.step-n {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-deep);
  font-size: 14.5px; font-weight: 700;
}
.step h3 { font-size: 19px; }
.step p { color: var(--ink-2); font-size: 16px; }

/* ---------- kit list ---------- */

.kit-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 4px 46px; margin-top: 38px;
}
@media (max-width: 900px) { .kit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 4px 30px; } }
@media (max-width: 560px) { .kit-grid { grid-template-columns: 1fr; } }
.kit {
  display: grid; grid-template-columns: 24px 1fr; gap: 14px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.kit svg { width: 21px; height: 21px; color: var(--accent); margin-top: 3px; }
.kit b { display: block; font-family: var(--ff-head); font-weight: 600; font-size: 16.5px; }
.kit p { color: var(--muted); font-size: 15px; margin-top: 2px; }

/* ---------- inspiration (Gambia) ---------- */

.inspo-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px; margin-top: 40px;
}
@media (max-width: 900px) { .inspo-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .inspo-grid { grid-template-columns: 1fr; } }
.inspo { display: grid; gap: 12px; }
.inspo .photo { aspect-ratio: 4 / 3; }
.inspo h3 { font-size: 18.5px; }
.inspo p { color: var(--ink-2); font-size: 15.5px; }
.inspo .meta { color: var(--muted); font-size: 14px; }

/* =========================================================
   DE AANBODKAART
   Overal waar we iets verkopen dezelfde opbouw: beeld, titel,
   drie punten, streep, prijs rechtsonder, knop linksonder.
   ========================================================= */

.offer {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.offer:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); border-color: var(--line); }

.offer-media { position: relative; aspect-ratio: 3 / 2; background: var(--sand-2); }
.offer-media .photo { height: 100%; border-radius: 0; }
.offer-media .photo--empty { border: 0; border-bottom: 1px solid var(--line); }

.offer-flag { position: absolute; top: 12px; inset-inline-start: 12px; }
.offer-avail {
  display: inline-block; padding: 5px 11px; border-radius: 999px;
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-size: 12.5px; font-weight: 600; color: var(--accent);
  box-shadow: 0 1px 4px rgba(16, 20, 18, .14);
}
.offer-avail[data-free="false"] { color: var(--muted); font-weight: 500; }

.offer-body {
  display: flex; flex-direction: column;
  padding: clamp(18px, 2vw, 24px);
  flex: 1 1 auto;
}
.offer-eyebrow {
  display: block; font-size: 13.5px; font-weight: 600; color: var(--accent); margin-bottom: 7px;
}
.offer-body h3 {
  font-size: 19px; line-height: 1.25; letter-spacing: -.01em; margin: 0;
}
.offer-lead { color: var(--ink-2); font-size: 15px; line-height: 1.5; margin: 8px 0 0; }

.offer-points { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 9px; }
.offer-points li {
  display: grid; grid-template-columns: 19px 1fr; gap: 9px; align-items: start;
  color: var(--ink-2); font-size: 15px; line-height: 1.45;
}
.offer-points svg { width: 17px; height: 17px; color: var(--accent); margin-top: 2px; }

.offer-sub { font-size: 16px; font-weight: 600; margin: 22px 0 0; }
.offer-p { color: var(--ink-2); font-size: 15px; line-height: 1.55; margin: 7px 0 0; }
.offer-pricenote { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; margin: 14px 0 0; }
.offer-note {
  margin: 16px 0 0; padding-top: 13px; border-top: 1px solid var(--line-soft);
  color: var(--muted); font-size: 13.5px; line-height: 1.6;
}

.offer-foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.offer-points + .offer-foot,
.offer-body > *:not(.offer-foot) + .offer-foot { margin-top: 20px; }

.offer-meta { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 14px; min-width: 0; }
.offer-meta svg { width: 19px; height: 19px; flex: 0 0 auto; opacity: .75; }
.offer-meta span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.offer-price { text-align: end; white-space: nowrap; }
.offer-price span { display: block; color: var(--muted); font-size: 13px; }
.offer-price b {
  font-family: var(--ff-head); font-size: 25px; font-weight: 700;
  letter-spacing: -.02em; color: var(--accent); font-variant-numeric: tabular-nums;
}
.offer-price b.offer-soft { font-size: 19px; }
.offer-price small { display: block; color: var(--muted); font-size: 12.5px; font-weight: 400; }

.offer-cta { margin-top: 18px; align-self: flex-start; }

/* de brede variant: beeld naast de tekst, voor diensten met uitleg eronder */
.offer--wide { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); }
.offer--wide > * { min-width: 0; }
.offer--wide .offer-media { aspect-ratio: auto; min-height: 260px; }
@media (max-width: 900px) {
  .offer--wide { grid-template-columns: 1fr; }
  .offer--wide .offer-media { aspect-ratio: 3 / 2; min-height: 0; }
}

/* de uitklapbare specificaties binnen een vlootkaart */
.offer .spec-toggle { margin-top: 16px; }

/* ---------- waar de kaarten staan ---------- */

.svc-grid, .exc-list, .fleet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}
.svc-grid > *, .exc-list > *, .fleet > * { min-width: 0; }
.svc-grid { margin-top: 40px; }
.exc-list { margin-top: 36px; }
.fleet { margin-top: 26px; }

@media (max-width: 1040px) {
  .svc-grid, .exc-list, .fleet { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .svc-grid, .exc-list, .fleet { grid-template-columns: 1fr; }
}

/* vier wagens staan mooier op twee kolommen dan op drie */
@media (min-width: 1041px) { .fleet { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.dz-wrap { display: grid; gap: clamp(20px, 2.6vw, 30px); }

/* ---------- booking ---------- */

.booking-shell {
  margin-top: 40px;
  display: grid; grid-template-columns: minmax(0,1fr) 360px;
  gap: 24px; align-items: start;
}
@media (max-width: 1000px) { .booking-shell { grid-template-columns: 1fr; } }

.booking-main {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.wiz-steps { display: flex; border-bottom: 1px solid var(--line); overflow-x: auto; }
.wiz-tab {
  flex: 1 0 auto;
  display: flex; align-items: center; gap: 9px;
  padding: 15px 18px;
  border: 0; background: transparent; color: var(--muted);
  font: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.wiz-tab b {
  width: 22px; height: 22px; display: grid; place-items: center;
  border-radius: 50%; background: var(--sand-2); color: var(--muted);
  font-size: 12px; font-weight: 700;
}
.wiz-tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--accent); }
.wiz-tab[aria-selected="true"] b { background: var(--accent); color: #fff; }
.wiz-tab[data-done="true"] b { background: var(--accent-soft); color: var(--accent-deep); }
.wiz-tab[disabled] { opacity: .5; cursor: not-allowed; }

.wiz-panel { padding: 26px; display: grid; gap: 22px; }
.wiz-panel[hidden] { display: none; }
.panel-head h3 { font-size: 21px; }
.panel-head p { color: var(--muted); font-size: 15.5px; margin-top: 6px; }

/* calendar */
.cal { display: grid; gap: 14px; }
.cal-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cal-title { font-family: var(--ff-head); font-size: 18px; font-weight: 600; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--paper); color: var(--ink); cursor: pointer;
}
.cal-nav button:hover:not([disabled]) { background: var(--sand); }
.cal-nav button[disabled] { opacity: .35; cursor: not-allowed; }
.cal-nav svg { width: 15px; height: 15px; }

.cal-months { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 720px) { .cal-months { grid-template-columns: 1fr; } }
.cal-month h4 { font-size: 15px; font-weight: 600; color: var(--ink-2); text-align: center; margin-bottom: 10px; }
.cal-dow, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-dow span { text-align: center; font-size: 12.5px; color: var(--muted); padding-bottom: 6px; }
.cal-day {
  position: relative; aspect-ratio: 1; min-height: 34px;
  display: grid; place-items: center;
  border: 0; border-radius: var(--r-xs);
  background: transparent; color: var(--ink);
  font: inherit; font-size: 14.5px; font-variant-numeric: tabular-nums;
  cursor: pointer; transition: background .12s ease, color .12s ease;
}
.cal-day:hover:not(:disabled) { background: var(--accent-soft); }
.cal-day.empty { visibility: hidden; pointer-events: none; }
.cal-day:disabled { color: var(--muted); opacity: .35; cursor: not-allowed; }
.cal-day.occupied { background: repeating-linear-gradient(135deg, transparent 0 3px, var(--line) 3px 6px); }
.cal-day.in-range { background: var(--accent-soft); border-radius: 0; }
.cal-day.range-start { background: var(--accent); color: #fff; border-radius: var(--r-xs) 0 0 var(--r-xs); }
.cal-day.range-end { background: var(--accent); color: #fff; border-radius: 0 var(--r-xs) var(--r-xs) 0; }
.cal-day.range-start.range-end { border-radius: var(--r-xs); }
.cal-day.partial::before {
  content: ""; position: absolute; top: 5px; right: 5px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--star);
}
.cal-day.today::after {
  content: ""; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}

.cal-legend { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14px; color: var(--muted); }
.cal-legend i { display: inline-flex; align-items: center; gap: 7px; font-style: normal; }
.cal-legend .sw { width: 13px; height: 13px; border-radius: 3px; display: inline-block; position: relative; }
.sw-free { background: var(--accent-soft); border: 1px solid var(--accent); }
.sw-sel { background: var(--accent); }
.sw-busy { background: repeating-linear-gradient(135deg, var(--sand) 0 3px, var(--line) 3px 6px); border: 1px solid var(--line); }
.sw-partial { background: var(--sand); border: 1px solid var(--line); }
.sw-partial::after {
  content: ""; position: absolute; top: 1px; right: 1px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--star);
}

/* fields */
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
@media (max-width: 620px) { .field-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--r-xs);
  background: var(--paper); color: var(--ink);
  font: inherit; font-size: 16px;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field .hint { font-size: 13.5px; color: var(--muted); }
.field .err { font-size: 13.5px; color: var(--danger); }
.field[data-invalid="true"] input, .field[data-invalid="true"] select { border-color: var(--danger); }

/* trailer picker */
.pick-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
@media (max-width: 620px) { .pick-grid { grid-template-columns: 1fr; } }
.pick {
  position: relative;
  display: grid; grid-template-columns: 76px 1fr; gap: 14px; align-items: center;
  padding: 12px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.pick:hover { border-color: var(--accent); }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.pick:has(input:disabled) { opacity: .5; cursor: not-allowed; }
.pick-art { aspect-ratio: 1; border-radius: var(--r-xs); overflow: hidden; background: var(--sand-2); }
.pick-art .photo { height: 100%; border-radius: 0; }
.pick-art .photo--empty { border: 0; padding: 6px; }
.pick-art .photo--empty span { font-size: 11px; }
.pick-art .photo--empty svg { width: 18px; height: 18px; }
.pick b { font-family: var(--ff-head); font-size: 16.5px; font-weight: 600; display: block; }
.pick span { font-size: 14px; color: var(--muted); display: block; }
.pick em { font-style: normal; font-size: 14px; color: var(--ink-2); display: block; margin-top: 3px; }

/* extras */
.extras { display: grid; gap: 10px; }
.extra {
  display: grid; grid-template-columns: 20px 1fr auto; gap: 14px; align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); cursor: pointer;
}
.extra:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.extra input { width: 18px; height: 18px; accent-color: var(--accent); }
.extra b { display: block; font-size: 16px; font-weight: 600; }
.extra span { display: block; font-size: 14.5px; color: var(--muted); }
.extra .amt { font-size: 15px; font-variant-numeric: tabular-nums; white-space: nowrap; }

.wiz-foot { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* summary */
.summary {
  position: sticky; top: calc(98px + env(safe-area-inset-top, 0px));
  background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 1000px) { .summary { position: static; } }
.summary-head {
  padding: 16px 20px;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.summary-head b { font-family: var(--ff-head); font-size: 17px; font-weight: 600; }
.summary-head span { font-size: 13.5px; color: var(--muted); }
.summary-body { padding: 18px 20px; display: grid; gap: 11px; }
.sum-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; font-size: 15.5px; }
.sum-row .k { color: var(--muted); }
.sum-row .v { font-variant-numeric: tabular-nums; text-align: end; }
.sum-row.strong .k, .sum-row.strong .v { color: var(--ink); font-weight: 600; }
.sum-sep { height: 1px; background: var(--line-soft); }
.sum-total { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.sum-total .k { font-family: var(--ff-head); font-size: 17px; font-weight: 600; }
.sum-total .v { font-family: var(--ff-head); font-size: 26px; font-weight: 600; font-variant-numeric: tabular-nums; }
.sum-note { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.sum-empty { color: var(--muted); font-size: 15.5px; }
.summary-foot { padding: 0 20px 20px; display: grid; gap: 12px; }

.pay-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.pay-badge {
  padding: 4px 10px; border: 1px solid var(--line); border-radius: var(--r-xs);
  background: var(--paper); font-size: 12.5px; color: var(--muted);
}

.notice {
  display: flex; gap: 11px; padding: 13px 15px;
  border-radius: var(--r-sm); font-size: 15px; line-height: 1.5;
  border: 1px solid var(--line); background: var(--sand); color: var(--ink);
}
.notice svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; color: var(--muted); }
.notice-info { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 26%, transparent); }
.notice-info svg { color: var(--accent); }
.notice-err { background: color-mix(in srgb, var(--danger) 8%, var(--paper)); border-color: color-mix(in srgb, var(--danger) 34%, transparent); }
.notice-err svg { color: var(--danger); }

.confirm { display: grid; gap: 16px; place-items: start; }
.confirm-mark {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 50%; background: var(--accent-soft); color: var(--accent);
}
.confirm-mark svg { width: 26px; height: 26px; }
.ref-box {
  font-size: 19px; font-weight: 600; letter-spacing: .06em;
  padding: 12px 18px; border: 1px dashed var(--accent); border-radius: var(--r-xs);
  background: var(--accent-soft); color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
}

/* ---------- impact (the one inverted block) ---------- */

.impact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
@media (max-width: 900px) { .impact-grid { grid-template-columns: 1fr; } }
.impact-points { display: grid; gap: 20px; margin-top: 30px; }
.impact-point b { display: block; font-family: var(--ff-head); font-size: 17.5px; font-weight: 600; }
.impact-point p { font-size: 16px; margin-top: 4px; color: var(--ink-2); }


/* ---------- faq ---------- */

.faq { margin-top: 36px; border-top: 1px solid var(--line); max-width: 78ch; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding-block: 19px; cursor: pointer; list-style: none;
  font-family: var(--ff-head); font-size: 17.5px; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 11px; height: 11px; flex: 0 0 auto;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-3px);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq .faq-a { padding-bottom: 20px; color: var(--ink-2); font-size: 16px; max-width: 68ch; }

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

.contact-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px; margin-top: 40px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  padding: 26px 24px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--paper); display: grid; gap: 9px; align-content: start;
}
.contact-card h3 { font-size: 18.5px; }
.contact-card p { color: var(--muted); font-size: 15.5px; }
.contact-card .big {
  font-family: var(--ff-head); font-size: 19px; font-weight: 600;
  color: inherit; text-decoration: none; overflow-wrap: anywhere;
}
.contact-card .big:hover { color: var(--accent); }

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

.site-footer { background: var(--paper); padding-block: 52px 28px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-about { color: var(--muted); font-size: 15px; margin-top: 14px; max-width: 34ch; }
.footer-col h4 { font-family: var(--ff-head); font-size: 15.5px; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 9px; }
.footer-col a { color: var(--ink-2); text-decoration: none; font-size: 15.5px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--muted);
}

/* ---------- floating whatsapp ---------- */

.wa-float {
  position: fixed; right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 18px; border-radius: var(--r-pill);
  background: #128C7E; color: #fff;
  text-decoration: none; font-weight: 600; font-size: 15.5px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 20px; height: 20px; }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: 14px; } }

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

@media (prefers-reduced-motion: no-preference) {
  .js-reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
  .js-reveal.reveal { opacity: 1; transform: none; }
}

/* ---------- unit spec sheet ---------- */

.spec-toggle {
  background: none; border: 0; padding: 0;
  color: var(--accent); font: inherit; font-weight: 600; font-size: 15.5px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
}
.spec-toggle svg { width: 15px; height: 15px; transition: transform .2s ease; }
.spec-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.unit-specs { padding-top: 4px; }
.unit-specs[hidden] { display: none; }
.spec-rows {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px; margin: 0;
}
@media (max-width: 620px) { .spec-rows { grid-template-columns: 1fr; } }
.spec-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding-block: 9px; border-bottom: 1px solid var(--line-soft); font-size: 15px;
}
.spec-row dt { margin: 0; color: var(--muted); }
.spec-row dd { margin: 0; font-variant-numeric: tabular-nums; text-align: end; }

/* ---------- price table ---------- */

.table-scroll { overflow-x: auto; margin-top: 38px; }
.price-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 16px; }
.price-table th, .price-table td { text-align: start; padding: 15px 16px; border-bottom: 1px solid var(--line); }
.price-table thead th {
  font-family: var(--ff-head); font-weight: 600; font-size: 15px;
  color: var(--ink); border-bottom: 1.5px solid var(--ink); vertical-align: bottom;
}
.price-table thead small { display: block; color: var(--muted); font-weight: 400; font-size: 13.5px; margin-top: 2px; }
.price-table .num { text-align: end; font-variant-numeric: tabular-nums; }
.price-table tbody tr:hover { background: var(--sand); }
.price-table .unit-cell b { font-family: var(--ff-head); font-weight: 600; display: block; }
.price-table .unit-cell span { display: block; color: var(--muted); font-size: 14px; }
.price-table tbody td.num.best { color: var(--accent); font-weight: 600; }
.table-note { margin-top: 16px; color: var(--muted); font-size: 14.5px; }

/* ---------- practical ---------- */

.prac-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 56px; margin: 34px 0 0; }
@media (max-width: 760px) { .prac-grid { grid-template-columns: 1fr; } }
.prac { padding-block: 20px; border-bottom: 1px solid var(--line-soft); }
.prac dt { font-family: var(--ff-head); font-weight: 600; font-size: 16.5px; }
.prac dd { margin: 6px 0 0; color: var(--ink-2); font-size: 16px; }

/* ---------- routes ---------- */

.tours { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); margin-top: 40px; }
@media (max-width: 820px) { .tours { grid-template-columns: 1fr; } }
.tour .photo { aspect-ratio: 3 / 2; margin-bottom: 18px; }
.tour h3 { font-size: 21px; }
.tour p { color: var(--ink-2); margin-top: 8px; }
.tour .meta { display: block; margin-top: 10px; color: var(--accent); font-weight: 600; font-size: 15px; }
.tour-note { margin-top: 28px; color: var(--muted); font-size: 15.5px; max-width: 70ch; }

/* ---------- editorial pairs ---------- */

.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .editorial { grid-template-columns: 1fr; } }
.editorial.reverse > :first-child { order: 2; }
@media (max-width: 900px) { .editorial.reverse > :first-child { order: 0; } }
.editorial .photo { aspect-ratio: 4 / 3; }
.prose p + p { margin-top: 16px; }
.prose p { color: var(--ink-2); font-size: 17px; }

.two-col-text { columns: 2; column-gap: 48px; margin-top: 22px; }
@media (max-width: 760px) { .two-col-text { columns: 1; } }
.two-col-text p { break-inside: avoid; color: var(--ink-2); }
.two-col-text p + p { margin-top: 16px; }

/* ---------- map ---------- */

.map-figure { margin: 38px 0 0; }
figure { margin-inline: 0; }
.map-svg {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
}
.map-sea, .map-sea-shape { fill: var(--accent-soft); }
.map-sea-label { fill: var(--muted); font-family: var(--ff-body); font-size: 15px; }
.map-country { fill: var(--muted); font-family: var(--ff-body); font-size: 15px; letter-spacing: .22em; text-anchor: middle; opacity: .55; }
.map-land { fill: var(--sand); stroke: var(--line); stroke-width: 1.5; }
.map-river { fill: none; stroke: var(--accent-soft); stroke-width: 9; stroke-linecap: round; }
.map-river-label { fill: var(--muted); font-family: var(--ff-body); font-size: 14px; font-style: italic; text-anchor: middle; }
.map-route { fill: none; stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round; }
.map-route-1 { stroke: var(--accent); }
.map-route-2 { stroke: var(--star); stroke-dasharray: 11 9; }
.map-dot { fill: var(--ink); }
.map-label { fill: var(--ink-2); font-family: var(--ff-body); font-size: 15px; }
.map-label-strong { fill: var(--accent-deep); font-weight: 600; }
.map-depot { fill: var(--accent); }
.map-depot-ring { fill: none; stroke: var(--accent); stroke-width: 2; opacity: .45; }
.map-scale line { stroke: var(--muted); stroke-width: 1.5; }
.map-scale text { fill: var(--muted); font-family: var(--ff-body); font-size: 13px; }

.map-legend {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 18px; font-size: 15px; color: var(--ink-2);
}
.lg { display: inline-flex; align-items: center; gap: 9px; }
.lg::before { content: ""; width: 26px; height: 4px; border-radius: 2px; flex: 0 0 auto; }
.lg-depot::before { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.lg-r1::before { background: var(--accent); }
.lg-r2::before { background: repeating-linear-gradient(to right, var(--star) 0 7px, transparent 7px 12px); }
.lg-note { color: var(--muted); font-size: 14px; }

/* ---------- the first unit reads as the feature ---------- */

.unit--feature { grid-template-columns: 1fr; }
.unit--feature .unit-media { aspect-ratio: 21 / 9; }
.unit--feature .unit-media .photo--empty { border-inline-end: 0; border-bottom: 1px solid var(--line); }
.unit--feature .unit-body { padding: 26px 28px 24px; }
.unit--feature .unit-name { font-size: 28px; }
@media (min-width: 900px) {
  .unit--feature .unit-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas: "top top" "desc specs" "foot foot";
    gap: 14px 40px;
  }
  .unit--feature .unit-top { grid-area: top; }
  .unit--feature .unit-desc { grid-area: desc; font-size: 17px; }
  .unit--feature .pills { grid-area: desc; align-self: end; margin-top: 8px; }
  .unit--feature .unit-foot { grid-area: foot; }
}

/* ---------- full-bleed photo band ---------- */

.band {
  width: 100%;
  margin-inline: 0;
  margin-block: clamp(20px, 4vw, 44px);
  aspect-ratio: 24 / 7;
  min-height: 220px;
  max-height: 460px;
  overflow: hidden;
  background: var(--sand-2);
}
.band img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
@media (max-width: 700px) { .band { aspect-ratio: 3 / 2; min-height: 0; } }

/* ---------- the offer sits inside the fleet section ---------- */

.fleet-subtitle {
  margin-top: clamp(40px, 5vw, 60px);
  font-size: clamp(20px, 2.2vw, 25px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.fleet-subtitle + .fleet { margin-top: 22px; }

/* ---------- booking panel ---------- */

.sheet { position: fixed; inset: 0; z-index: 200; }
.sheet[hidden] { display: none; }

.sheet-backdrop {
  position: absolute; inset: 0;
  background: rgba(18, 20, 20, .45);
  backdrop-filter: blur(3px);
}

.sheet-panel {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: min(1180px, 100%);
  background: var(--paper);
  box-shadow: -18px 0 60px rgba(18, 20, 20, .22);
  display: flex;
  flex-direction: column;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
@media (prefers-reduced-motion: no-preference) {
  .sheet:not([hidden]) .sheet-panel { animation: sheet-in .28s cubic-bezier(.22,.7,.3,1) both; }
  .sheet:not([hidden]) .sheet-backdrop { animation: fade-in .28s ease both; }
}
@keyframes sheet-in { from { transform: translateX(26px); opacity: .6; } to { transform: none; opacity: 1; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.sheet-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 22px var(--gutter) 18px;
  border-bottom: 1px solid var(--line);
  flex: 0 0 auto;
}
.sheet-head .eyebrow { margin-bottom: 6px; }
.sheet-head .title { font-size: clamp(22px, 2.6vw, 30px); }

.sheet-close {
  width: 42px; height: 42px; flex: 0 0 auto;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--paper); color: var(--ink); cursor: pointer;
}
.sheet-close:hover { background: var(--sand); }
.sheet-close svg { width: 19px; height: 19px; }

.sheet-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 26px clamp(16px, 2.4vw, 30px) 44px;
  background: var(--sand);
}
.sheet-body .booking-shell { margin-top: 0; }
.sheet-body .summary { top: 0; }
@media (max-width: 1280px) { .sheet-body .booking-shell { grid-template-columns: 1fr; } }
@media (max-width: 1280px) { .sheet-body .summary { position: static; } }

body.sheet-open { overflow: hidden; }

/* ---------- diensten in gambia (aparte pagina) ---------- */

.page-head { padding-block: clamp(52px, 7vw, 86px) clamp(30px, 4vw, 48px); }
.page-head h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 17ch;
}
.page-head .lead { max-width: 62ch; }

.dz-wrap { display: grid; gap: 0; }

.dz {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-block: clamp(46px, 6.5vw, 80px);
  border-top: 1px solid var(--line-soft);
}
.dz:first-child { border-top: 0; padding-top: 0; }
.dz[data-flip="true"] .dz-media { order: 2; }

.dz-media { position: sticky; top: 104px; }
.dz-media .photo { aspect-ratio: 4 / 3; }
@media (max-width: 900px) {
  .dz { grid-template-columns: 1fr; }
  .dz[data-flip="true"] .dz-media { order: 0; }
  .dz-media { position: static; }
}

.dz-body > * + * { margin-top: 16px; }

.dz-eyebrow {
  display: block;
  font-size: 14.5px; font-weight: 600; color: var(--accent);
  margin-bottom: 10px;
}
.dz-body h2 {
  font-size: clamp(25px, 3.1vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.012em;
  margin: 0;
}
.dz-lead { color: var(--ink-2); font-size: clamp(16.5px, 1.4vw, 18.5px); max-width: 58ch; }

.dz-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  max-width: 58ch;
  border-top: 1px solid var(--line-soft);
}
.dz-list li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.5;
}
.dz-list li::before {
  content: "";
  position: absolute; left: 0; top: 21px;
  width: 9px; height: 1px;
  background: var(--accent);
}

.dz-sub {
  font-size: 18.5px;
  font-weight: 600;
  margin-top: 30px !important;
  margin-bottom: -4px;
}
.dz-p { color: var(--ink-2); max-width: 58ch; }

.dz-price {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: 28px !important;
}
.dz-price span { color: var(--muted); font-size: 15px; }
.dz-price b {
  font-family: var(--ff-head);
  font-size: clamp(27px, 3.2vw, 36px);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}
.dz-pricenote { color: var(--ink-2); font-size: 15.5px; max-width: 56ch; margin-top: 8px !important; }

.dz-note {
  margin-top: 22px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 62ch;
}

.dz-body .link-arrow { margin-top: 26px; }

.dz-back { padding-block: clamp(46px, 6vw, 76px); background: var(--sand); }
.dz-back .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.dz-back h2 { font-size: clamp(22px, 2.6vw, 29px); margin: 0 0 6px; }
.dz-back p { color: var(--ink-2); margin: 0; max-width: 52ch; }

/* homepage teaser naar de dienstenpagina */
.dzt {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.dzt > * { min-width: 0; }
@media (max-width: 900px) { .dzt { grid-template-columns: 1fr; } }
.dzt-side .link-arrow { margin-top: 22px; }

.dzt-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-soft); }
.dzt-list a {
  display: grid;
  gap: 4px;
  padding: 18px 34px 18px 0;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: padding-left .15s ease;
}
.dzt-list a::after {
  content: "";
  position: absolute; right: 8px; top: 50%;
  width: 8px; height: 8px;
  border-top: 1.6px solid var(--accent);
  border-right: 1.6px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
  opacity: .55;
  transition: opacity .15s ease, right .15s ease;
}
.dzt-list a:hover { padding-left: 8px; }
.dzt-list a:hover::after { opacity: 1; right: 4px; }
.dzt-list b { font-family: var(--ff-head); font-size: 18.5px; font-weight: 600; letter-spacing: -0.008em; }
.dzt-list span { color: var(--ink-2); font-size: 15.5px; line-height: 1.5; }

/* lange knoplabels (FR/ES) mogen op smalle schermen afbreken */
@media (max-width: 560px) {
  .btn { white-space: normal; text-align: center; }
}
.contact-card { min-width: 0; overflow-wrap: anywhere; }

/* ---------- gedenkboom (Suriname) ---------- */

.gb-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.gb-intro > * { min-width: 0; }
@media (max-width: 900px) { .gb-intro { grid-template-columns: 1fr; } }
.gb-intro .photo { aspect-ratio: 4 / 3; }

.gb-p { color: var(--ink-2); font-size: clamp(16.5px, 1.4vw, 18px); max-width: 58ch; margin-top: 14px; }
.gb-h3 { font-size: 19px; font-weight: 600; margin-top: 34px; }

.gb-steps { list-style: none; margin: 16px 0 0; padding: 0; max-width: 56ch; }
.gb-step {
  display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2); font-size: 16.5px; line-height: 1.5;
}
.gb-step:first-child { border-top: 1px solid var(--line-soft); }
.gb-step-n {
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* --- donatiemodule --- */

.gb-donate { background: var(--sand); }
.gb-form, .gb-done { max-width: 900px; margin-top: 36px; }
.gb-form > * + * { margin-top: 30px; }

.gb-fieldset { border: 0; margin: 0; padding: 0; }
.gb-fieldset legend {
  padding: 0; margin-bottom: 14px;
  font-size: 14.5px; font-weight: 600; color: var(--accent);
}

.gb-tiers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 720px) { .gb-tiers { grid-template-columns: 1fr; } }

.gb-tier {
  position: relative;
  display: grid; gap: 10px;
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.gb-tier:hover { border-color: var(--accent); }
.gb-tier[data-on="true"] { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.gb-tier input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.gb-tier:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(31, 106, 74, .18); }
.gb-tier > *:not(input) { pointer-events: none; }
.gb-tier-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.gb-tier-head b { font-family: var(--ff-head); font-size: 18px; font-weight: 600; }
.gb-tier-amt {
  font-family: var(--ff-head); font-size: 23px; font-weight: 600;
  color: var(--accent); font-variant-numeric: tabular-nums; white-space: nowrap;
}
.gb-tier-amt small { display: block; font-size: 12.5px; font-weight: 400; color: var(--muted); text-align: end; }
.gb-tier-d { color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }

.gb-split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: clamp(20px, 3vw, 36px); align-items: start;
}
.gb-split > * { min-width: 0; }
@media (max-width: 820px) { .gb-split { grid-template-columns: 1fr; } }

.gb-fields { display: grid; gap: 16px; }
.gb-fields--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gb-fields--two > * { min-width: 0; }
.gb-fields--two .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .gb-fields--two { grid-template-columns: 1fr; } }

.gb-count { font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }
.gb-fields label i { font-style: normal; color: var(--muted); font-weight: 400; }
[data-invalid="true"] input, [data-invalid="true"] textarea, [data-invalid="true"] select {
  border-color: #B4442F;
}

/* het bordje: teakkleurig, gegraveerde tekst */
.gb-plaque { margin: 0; display: grid; gap: 10px; }
.gb-plaque figcaption { font-size: 13.5px; color: var(--muted); }
.gb-plaque-board {
  display: grid; gap: 8px; place-content: center; text-align: center;
  min-height: 190px; padding: 26px 22px;
  border-radius: 8px;
  background: linear-gradient(168deg, #B98B57 0%, #A97A48 46%, #9C6E3E 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 2px 10px rgba(63, 42, 20, .22);
  overflow-wrap: anywhere;
}
.gb-plaque-board b {
  font-family: var(--ff-head); font-size: clamp(19px, 2.3vw, 24px); font-weight: 600;
  letter-spacing: .01em; line-height: 1.2;
  color: #40290F;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .22);
}
.gb-plaque-board span {
  font-size: 15px; line-height: 1.45;
  color: #59401F;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .18);
}

.gb-note { color: var(--muted); font-size: 14.5px; line-height: 1.6; max-width: 66ch; }
.gb-error {
  color: #8E2F1E; background: #FBEDE9; border: 1px solid #EBC8BF;
  border-radius: var(--r-sm); padding: 12px 15px; font-size: 15px;
}
.gb-actions { display: grid; gap: 10px; justify-items: start; }
.gb-requestnote { color: var(--muted); font-size: 14.5px; max-width: 58ch; margin: 0; }

.gb-done .confirm { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(24px, 4vw, 40px); }

/* ---------- feesten en bruiloften (cafeteria model) ---------- */

.ev-form { margin-top: 36px; }
.ev-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}
.ev-shell > * { min-width: 0; }
@media (max-width: 1040px) { .ev-shell { grid-template-columns: 1fr; } }

.ev-main > * + * { margin-top: 28px; }

.ev-basics {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) auto;
  gap: 16px; align-items: end;
}
.ev-basics > * { min-width: 0; }
@media (max-width: 720px) { .ev-basics { grid-template-columns: 1fr; align-items: stretch; } }
.ev-fill-wrap { display: grid; gap: 6px; }
.ev-filled { font-size: 13px; color: var(--muted); }

/* de keuzelijst zelf */
.ev-items { border-top: 1px solid var(--line); }
.ev-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.ev-item > * { min-width: 0; }
.ev-item[data-on="true"] .ev-item-body b { color: var(--accent); }
@media (max-width: 640px) {
  .ev-item { grid-template-columns: minmax(0, 1fr) auto; row-gap: 10px; }
  .ev-item-price { grid-column: 1; grid-row: 2; text-align: start; }
  .ev-step { grid-column: 2; grid-row: 2; }
}

.ev-item-body { display: grid; gap: 3px; }
.ev-item-body b { font-family: var(--ff-head); font-size: 17.5px; font-weight: 600; }
.ev-item-body span { color: var(--ink-2); font-size: 14.5px; line-height: 1.45; }

.ev-item-price {
  font-family: var(--ff-head); font-size: 17px; font-weight: 600;
  font-variant-numeric: tabular-nums; white-space: nowrap; text-align: end;
}
.ev-item-price small { display: block; font-family: var(--ff-body); font-size: 12.5px; font-weight: 400; color: var(--muted); }

/* de teller */
.ev-step {
  display: grid; grid-template-columns: 38px 54px 38px;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: var(--paper); overflow: hidden;
}
.ev-step button {
  display: grid; place-items: center;
  border: 0; background: transparent; cursor: pointer; color: var(--ink);
  padding: 0; height: 40px;
  transition: background .12s ease, color .12s ease;
}
.ev-step button:hover { background: var(--sand); color: var(--accent); }
.ev-step button svg { width: 16px; height: 16px; }
.ev-step input {
  border: 0; border-inline: 1px solid var(--line);
  text-align: center; height: 40px; padding: 0;
  font-family: var(--ff-head); font-size: 16px; font-weight: 600;
  font-variant-numeric: tabular-nums;
  background: transparent; color: var(--ink);
  border-radius: 0;
}
.ev-step input:focus { outline: 2px solid var(--accent); outline-offset: -2px; }
.ev-items-err { display: block; margin-top: 10px; }

.ev-contact { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.ev-contact > * { min-width: 0; }
.ev-contact .full { grid-column: 1 / -1; }
.ev-contact label i { font-style: normal; color: var(--muted); font-weight: 400; }
@media (max-width: 640px) { .ev-contact { grid-template-columns: 1fr; } }

/* het meelopende totaal */
.ev-aside { position: sticky; top: 96px; }
@media (max-width: 1040px) { .ev-aside { position: static; } }
.ev-sum {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.ev-sum-head {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-head); font-size: 15.5px; font-weight: 600;
}
.ev-sum > div { padding: 6px 20px 18px; }
.ev-sum-empty { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 12px 0 0; }

.ev-sum-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.ev-sum-table td { padding: 11px 0; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.ev-sum-table td span { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; font-variant-numeric: tabular-nums; }
.ev-sum-table .num { text-align: end; font-variant-numeric: tabular-nums; white-space: nowrap; }
.ev-sum-table tfoot td {
  border-bottom: 0; border-top: 1.5px solid var(--ink);
  padding-top: 13px;
  font-family: var(--ff-head); font-size: 19px; font-weight: 600;
}
.ev-sum-note { color: var(--muted); font-size: 13px; line-height: 1.55; margin: 14px 0 0; }

/* ---------- kortingscode ---------- */
.promo { display: grid; gap: 7px; max-width: 340px; margin-top: 26px; }
.promo label { font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.promo input { text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.promo-msg { margin: 0; font-size: 14px; line-height: 1.5; }
.promo-msg[data-ok="true"] { color: var(--accent); font-weight: 600; }
.promo-msg[data-ok="false"] { color: #8E2F1E; }

/* ---------- mobiele hero: de foto als achtergrond ---------- */
@media (max-width: 900px) {
  .hero {
    position: relative;
    display: block;
    min-height: 78svh;
    border-bottom: 0;
    isolation: isolate;
  }

  /* de foto vult de hele hero */
  .hero-photo {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    min-height: 0;
    z-index: 0;
  }
  .hero-photo > img { object-position: 50% 58%; }

  /* donkere sluier, zodat wit leesbaar blijft op elke foto */
  .hero-photo::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(12, 18, 14, .58) 0%, rgba(12, 18, 14, .50) 24%, rgba(12, 18, 14, .16) 36%, rgba(12, 18, 14, .26) 45%, rgba(12, 18, 14, .62) 56%, rgba(12, 18, 14, .86) 100%);
  }

  .hero-side {
    position: relative;
    z-index: 2;
    justify-content: space-between;   /* merk bovenin, actie onderin, foto ertussen */
    min-height: 78svh;
    max-width: none;
    padding: clamp(30px, 8vw, 48px) var(--gutter) clamp(30px, 7vw, 46px);
    color: #FFFFFF;
    gap: 18px;
  }
  .hero-side > .hero-tagline { margin-top: auto; }

  /* merkteken boven de naam, als één blok */
  .hero-lockup {
    color: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .lockup-mark {
    color: #FFFFFF;
    width: clamp(52px, 14vw, 72px);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .35));
  }
  .wordmark {
    color: #FFFFFF;
    font-size: clamp(32px, 9.5vw, 46px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
  }

  .hero-tagline {
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .32);
    max-width: 24ch;
  }

  .hero-facts li { color: rgba(255, 255, 255, .9); text-shadow: 0 1px 2px rgba(0, 0, 0, .3); }
  .hero-facts li::before { border-color: #FFFFFF; }

  /* de tweede actie moet ook wit zijn, de groene knop blijft groen */
  .hero-actions .link-arrow { color: #FFFFFF; }

  /* prijsbadge naar rechtsboven, anders botst hij met de tekst */
  .hero-badge {
    top: clamp(14px, 4vw, 22px);
    right: var(--gutter);
    bottom: auto;
    left: auto;
    padding: 9px 14px;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .hero-badge b { font-size: 21px; }
  .hero-badge .hb-label, .hero-badge .hb-unit { font-size: 13px; }
}

/* op hele kleine schermen scheelt het als de feiten wegvallen */
@media (max-width: 400px) {
  .hero-facts li:nth-child(3) { display: none; }
}

/* de gedenkboom-bijdragen volgen dezelfde opbouw als de aanbodkaarten */
.gb-tier-points { margin: 4px 0 0 !important; }
.gb-tier-points li { font-size: 14.5px; }
.gb-tier-foot {
  display: flex; justify-content: flex-end; align-items: flex-end;
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft);
}
.gb-tier { align-content: start; }
