@charset "UTF-8";
/* ---------------------------------------------------------------------------
   Ubuntu Tanzania — stylesheet
   Bron: assets/scss  →  gecompileerd naar public/css/style.css
--------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------
   Design tokens — 1:1 met het Pencil-ontwerp.

   :root                = donker thema (standaard)
   body.theme-light     = licht thema
   .is-dark             = forceert donkere tokens, ongeacht het sitethema.
                          Gebruikt voor alles wat over een foto ligt: hero's,
                          categoriekaarten, CTA-banden, kaarten.
   .is-invert           = contrastsectie (draait mee met het thema)
--------------------------------------------------------------------------- */
:root {
  /* Vlakken */
  --bg: #0e0c0a;
  --bg-alt: #16130f;
  --card: #221d18;
  --placeholder: #2e2822;
  /* Contrastsectie */
  --bg-invert: #faf6f0;
  --fg-invert: #16130f;
  --fg-invert-muted: #6b6259;
  --border-invert: #e2d9cc;
  /* Accenten */
  --accent: #d9481c;
  --accent-deep: #b03a13;
  --accent-tint: #d9481c1f;
  --gold: #e0a340;
  /* Tekst */
  --fg: #ffffff;
  --fg-muted: #a8a096;
  --text-soft: #c9c2b8;
  --text-dim: #8a8177;
  --text-faint: #6e665c;
  --text-ghost: #4a443c;
  --numeral: #332c25;
  /* Randen & velden */
  --border: #2e2822;
  --border-strong: #ffffff38;
  --field-bg: #ffffff0a;
  /* Statisch — tekst over foto's, in beide thema's gelijk */
  --on-image: #ffffff;
  --on-image-muted: #d8d2c9;
  --on-image-dim: #a8a096;
  --stroke-image: #ffffff38;
  --glass-fill: #ffffff0f;
  --glass-stroke: #ffffff1f;
  --glass-panel: #16130fe6;
  /* Typografie */
  --font-heading: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  /* Ruimte & vorm */
  --gutter: 88px;
  --maxw: 1440px;
  --content: 1264px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --section-y: 120px;
  --header-h: 96px;
  /* Verticale ritmiek. Eén set waarden, zodat secties onderling kloppen. */
  --space-heading: 52px; /* sectiekop → inhoud */
  --space-text: 26px; /* titel → lopende tekst binnen een kolom */
  --space-note: 34px; /* inhoud → notitie eronder */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

body.theme-light {
  --bg: #ffffff;
  --bg-alt: #f4efe7;
  --card: #ffffff;
  --placeholder: #e9e1d5;
  --bg-invert: #16130f;
  --fg-invert: #ffffff;
  --fg-invert-muted: #a8a096;
  --border-invert: #3a332b;
  --accent: #c13f14;
  --accent-deep: #96300f;
  --accent-tint: #c13f1414;
  --gold: #96690f;
  --fg: #16130f;
  --fg-muted: #6b6259;
  --text-soft: #443e37;
  --text-dim: #6b6259;
  --text-faint: #7c7369;
  --text-ghost: #c4bbad;
  --numeral: #e0d7c9;
  --border: #e6ddd0;
  --border-strong: #c4bbad;
  --field-bg: #0e0c0a08;
}

/* Secties die altijd donker zijn (foto-overlays) halen de donkere set terug. */
.is-dark {
  --bg: #0e0c0a;
  --bg-alt: #16130f;
  --card: #221d18;
  --placeholder: #2e2822;
  --accent: #d9481c;
  --accent-deep: #b03a13;
  --accent-tint: #d9481c1f;
  --gold: #e0a340;
  --fg: #ffffff;
  --fg-muted: #a8a096;
  --text-soft: #c9c2b8;
  --text-dim: #8a8177;
  --text-faint: #6e665c;
  --text-ghost: #4a443c;
  --numeral: #332c25;
  --border: #2e2822;
  --border-strong: #ffffff38;
  --field-bg: #ffffff0a;
  color: var(--fg);
}

@media (max-width: 1200px) {
  :root {
    --gutter: 56px;
    --section-y: 96px;
  }
}
@media (max-width: 768px) {
  :root {
    --gutter: 24px;
    --section-y: 72px;
    --header-h: 72px;
    --space-heading: 34px;
    --space-text: 20px;
    --space-note: 24px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p, figure, blockquote, ul, ol, dl, dd {
  margin: 0;
}

ul[class], ol[class] {
  list-style: none;
  padding: 0;
}

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

img {
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus {
  left: 0;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Breakpoints — mobile last, we ontwerpen desktop-first zoals het Pencil-bestand. */
/* Tekst die niet breder wordt dan comfortabel leest. */
/* Kaartraster waarin alle kolommen even hoog zijn. */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--fg);
  text-wrap: balance;
}

h1 {
  font-size: clamp(40px, 6vw, 82px);
}

h2 {
  font-size: clamp(32px, 4.2vw, 54px);
}

h3 {
  font-size: clamp(22px, 2.2vw, 30px);
}

h4 {
  font-size: clamp(19px, 1.6vw, 23px);
}

strong, b {
  color: var(--fg);
  font-weight: 600;
}

/* Eyebrow: streepje + mono label in accentkleur. */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow__rule {
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
  flex: none;
}
.eyebrow--center {
  justify-content: center;
}

/* Kleine meta-regel (mono). */
.meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.meta--accent {
  color: var(--accent);
}
.meta__accent {
  color: var(--accent);
}
.meta__dot {
  color: var(--text-ghost);
}
.meta svg {
  flex: none;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}
.link-arrow svg {
  transition: transform 0.25s var(--ease);
}
.link-arrow:hover svg {
  transform: translateX(4px);
}

.rule {
  border-top: 1px solid var(--border);
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold);
}
.stars svg {
  fill: currentColor;
}

.container {
  width: 100%;
  max-width: calc(var(--content) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow {
  width: 100%;
  max-width: calc(820px + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Elke sectie is een block. Achtergrondkeuze komt uit ACF. */
.section,
.block {
  position: relative;
  padding-block: var(--section-y);
  background: var(--bg);
  color: var(--fg-muted);
}

.section--bone,
.block.section--bone {
  background: var(--bg-alt);
}

.section--inverse,
.block.section--inverse {
  background: var(--bg-invert);
  color: var(--fg-invert-muted);
}
.section--inverse h1, .section--inverse h2, .section--inverse h3, .section--inverse h4,
.block.section--inverse h1,
.block.section--inverse h2,
.block.section--inverse h3,
.block.section--inverse h4 {
  color: var(--fg-invert);
}
.section--inverse .heading__intro,
.block.section--inverse .heading__intro {
  color: var(--fg-invert-muted);
}
.section--inverse hr, .section--inverse .rule,
.block.section--inverse hr,
.block.section--inverse .rule {
  border-color: var(--border-invert);
}

.section--tight {
  padding-block: 76px;
}

.section--flush {
  padding-block: 0;
}

.section--center {
  text-align: center;
}

/* Sectiekop */
.heading__title {
  max-width: 20ch;
  margin-bottom: 22px;
}
.heading__intro {
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.68;
  color: var(--fg-muted);
}
.heading--center {
  text-align: center;
}
.heading--center .eyebrow {
  justify-content: center;
}
.heading--center .heading__title,
.heading--center .heading__intro {
  margin-inline: auto;
}

/* Staat een sectiekop los boven de inhoud, dan komt de ruimte hiervandaan
   in plaats van uit losse inline-marges per template. */
.block > .container > .heading:not(:last-child) {
  margin-bottom: var(--space-heading);
}

/* Binnen een tekstkolom: titel → lopende tekst. */
.heading__title + .prose,
.heading__title + .checklist,
.heading__title + .heading__intro,
.text-media__title + .prose {
  margin-top: var(--space-text);
}

/* Notitie onder de inhoud van een sectie. */
.block-note,
.block > .container > .filters__empty {
  margin-top: var(--space-note);
}

/* Kop links, knop of link rechts — onderling uitgelijnd op de onderkant. */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: var(--space-heading);
}
.section-head .heading {
  flex: 1 1 auto;
  max-width: 760px;
}
.section-head > :last-child {
  flex: none;
}
@media (max-width: 1024px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}

/* Rasters — grid geeft automatisch gelijke kolomhoogtes. */
.card-grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}
.card-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .card-grid--3, .card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .card-grid--2, .card-grid--3, .card-grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Split: tekst naast beeld of naast een kaart. */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 88px;
  align-items: start;
}
.split--media {
  grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}
.split--media.split--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 600px);
}
.split--reverse > :first-child {
  order: 2;
}
@media (max-width: 1024px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }
  .split--reverse > :first-child {
    order: 0;
  }
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 56px;
}
.pagination__item {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
}
.pagination__item.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-image);
}

/* Knoppenrij onder de inhoud van een sectie. */
.block-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-note);
}

/* USP-tegels onder een intro-split staan iets ruimer. */
.intro-split__usps {
  margin-top: calc(var(--space-heading) + 20px);
}

.heading__title--sm {
  font-size: clamp(26px, 3vw, 36px);
}

.testimonial__quote--sm {
  font-size: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn svg {
  flex: none;
  transition: transform 0.25s var(--ease);
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn--sm {
  padding: 12px 22px;
  font-size: 14px;
}
.btn--block {
  width: 100%;
}
.btn {
  /* Primair: altijd witte tekst op terracotta, in beide thema's. */
}
.btn--primary {
  background: var(--accent);
  color: var(--on-image);
}
.btn--primary:hover {
  background: var(--accent-deep);
}
.btn--ghost {
  color: var(--fg);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}
.btn--ghost:hover {
  box-shadow: inset 0 0 0 1px var(--fg);
}
.btn--link {
  padding: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* Filterchips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: 0.2s var(--ease);
}
.chip:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}
.chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-image);
}

/* Filterrijen met eventueel meerdere groepen (type reis / bestemming). */
.filters {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}
.filters__group {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 768px) {
  .filters__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.filters__label {
  flex: none;
  width: 96px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
@media (max-width: 768px) {
  .filters__label {
    width: auto;
  }
}
.filters__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 15px;
  color: var(--fg-muted);
}
.filters__empty svg {
  flex: none;
  color: var(--accent);
}
.filters__empty a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--on-image);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header__inner {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 1280px) {
  .site-header__actions {
    gap: 12px;
  }
}
@media (max-width: 560px) {
  .site-header__actions {
    gap: 6px;
  }
}
.site-header {
  /* Een knoplabel hoort nooit af te breken. */
}
.site-header .btn {
  white-space: nowrap;
}
@media (max-width: 560px) {
  .site-header .btn {
    padding: 11px 16px;
    font-size: 13px;
    gap: 0;
  }
  .site-header .btn svg {
    display: none;
  }
}
.site-header__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 1280px) {
  .site-header__wa {
    display: none;
  }
}
.site-header {
  /* Zodra we scrollen of op een pagina zonder hero: dichte balk. */
}
.site-header.is-solid, .site-header.is-stuck {
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
  color: var(--fg);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.logo__mark svg {
  width: 46px;
  height: 24px;
  display: block;
}
@media (max-width: 560px) {
  .logo {
    gap: 8px;
  }
  .logo__mark svg {
    width: 36px;
    height: 19px;
  }
  .logo__word {
    font-size: 16px;
  }
  .logo__sub {
    font-size: 7px;
    letter-spacing: 0.38em;
  }
}
.logo__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.logo__word {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo__sub {
  font-family: var(--font-mono);
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.62;
}

@media (max-width: 1280px) {
  .site-nav {
    display: none;
  }
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav__item a {
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.site-nav__item a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transition: right 0.25s var(--ease);
}
.site-nav__item a:hover::after {
  right: 0;
}
.site-nav__item.current-menu-item a::after, .site-nav__item.current-menu-ancestor a::after {
  right: 0;
}

.lang {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lang__item {
  opacity: 0.55;
}
.lang__item.is-active {
  opacity: 1;
}
.lang__sep {
  opacity: 0.3;
}
@media (max-width: 768px) {
  .lang {
    display: none;
  }
}
.lang--menu {
  display: flex;
  font-size: 13px;
  letter-spacing: 0.14em;
}
.lang--menu .lang__item {
  padding-block: 4px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
@media (max-width: 1280px) {
  .burger {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: var(--bg);
  color: var(--fg);
  padding: 24px var(--gutter) 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  transition: opacity 0.26s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
}
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-h) - 24px);
}
.mobile-menu__close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -10px;
  border-radius: var(--radius-pill);
  transition: background 0.2s var(--ease);
}
.mobile-menu__close:hover {
  background: var(--field-bg);
}
.mobile-menu {
  /* De items komen één voor één binnen; dat leest rustiger dan alles
     tegelijk en maakt duidelijk dat het paneel opent. */
}
.mobile-menu__list > *, .mobile-menu__actions > *, .mobile-menu__info > * {
  opacity: 0;
  transform: translateY(16px);
}
.mobile-menu.is-open .mobile-menu__list > *, .mobile-menu.is-open .mobile-menu__actions > *, .mobile-menu.is-open .mobile-menu__info > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
}
.mobile-menu.is-open .mobile-menu__list > *:nth-child(1) {
  transition-delay: 105ms;
}
.mobile-menu.is-open .mobile-menu__list > *:nth-child(2) {
  transition-delay: 150ms;
}
.mobile-menu.is-open .mobile-menu__list > *:nth-child(3) {
  transition-delay: 195ms;
}
.mobile-menu.is-open .mobile-menu__list > *:nth-child(4) {
  transition-delay: 240ms;
}
.mobile-menu.is-open .mobile-menu__list > *:nth-child(5) {
  transition-delay: 285ms;
}
.mobile-menu.is-open .mobile-menu__list > *:nth-child(6) {
  transition-delay: 330ms;
}
.mobile-menu.is-open .mobile-menu__list > *:nth-child(7) {
  transition-delay: 375ms;
}
.mobile-menu.is-open .mobile-menu__list > *:nth-child(8) {
  transition-delay: 420ms;
}
.mobile-menu.is-open .mobile-menu__list > *:nth-child(9) {
  transition-delay: 465ms;
}
.mobile-menu.is-open .mobile-menu__list > *:nth-child(10) {
  transition-delay: 510ms;
}
.mobile-menu.is-open .mobile-menu__actions > * {
  transition-delay: 560ms;
}
.mobile-menu.is-open .mobile-menu__info > * {
  transition-delay: 620ms;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu {
    transition: none;
  }
  .mobile-menu__list > *, .mobile-menu__actions > *, .mobile-menu__info > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__list a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.1;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s var(--ease);
}
.mobile-menu__list a:hover {
  color: var(--accent);
}
.mobile-menu__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-muted);
}
.mobile-menu__info a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  color: var(--fg-muted);
  padding-block: 76px 0;
}
.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 190px 250px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
  }
}
@media (max-width: 560px) {
  .site-footer__main {
    grid-template-columns: minmax(0, 1fr);
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.site-footer .logo {
  color: var(--fg);
}
.site-footer__tagline {
  max-width: 46ch;
  font-size: 14px;
  line-height: 1.68;
}
.site-footer__heading {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}
.site-footer__list a:hover {
  color: var(--fg);
}
.site-footer__list .is-strong {
  color: var(--fg);
}
.site-footer__rule {
  margin-block: 64px 0;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
}
@media (max-width: 768px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.socials {
  display: flex;
  gap: 11px;
}
.socials__item {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--fg);
  transition: 0.2s var(--ease);
}
.socials__item:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 940px;
  padding-block: var(--header-h) 96px;
  overflow: hidden;
  color: var(--on-image);
}
.hero--page {
  min-height: 620px;
  padding-bottom: 72px;
}
.hero--event {
  min-height: 880px;
  padding-bottom: 84px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 640px;
    padding-block: calc(var(--header-h) + 28px) 56px;
  }
  .hero--page {
    min-height: 460px;
  }
}
.hero__media {
  position: absolute;
  inset: 0;
  /* Stapeling, van onder naar boven: foto → video → scrims → inhoud.
     Expliciet, anders schuift de video over de scrims heen en verliest
     de tekst zijn contrast. */
}
.hero__media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media {
  /* Video ligt over de foto; valt die weg, dan blijft de foto staan. */
}
.hero__media .hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero__media .hero__video--desktop {
    display: none;
  }
}
.hero__media::after, .hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
}
.hero__media {
  /* verticale scrim: leesbaar onderaan */
}
.hero__media::after {
  z-index: 2;
  background: linear-gradient(to bottom, rgba(14, 12, 10, 0.1490196078) 0%, rgba(14, 12, 10, 0.5019607843) 40%, rgba(14, 12, 10, 0.9490196078) 100%);
}
.hero__media {
  /* horizontale scrim: tekst links leesbaar */
}
.hero__media::before {
  z-index: 3;
  background: linear-gradient(to right, rgba(14, 12, 10, 0.7019607843) 0%, transparent 62%);
}
.hero {
  /* Bij video wisselt de helderheid per frame; een vaste foto kun je uitkiezen,
     een bewegend beeld niet. Daarom een steviger scrim zodra er video speelt. */
}
.hero--video .hero__media::after {
  background: linear-gradient(to bottom, rgba(14, 12, 10, 0.3019607843) 0%, rgba(14, 12, 10, 0.6) 40%, rgba(14, 12, 10, 0.968627451) 100%);
}
.hero--video .hero__media::before {
  background: linear-gradient(to right, rgba(14, 12, 10, 0.8) 0%, rgba(14, 12, 10, 0.2509803922) 62%, transparent 100%);
}
.hero__inner {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
}
.hero__title {
  font-size: clamp(40px, 6.2vw, 82px);
  line-height: 1.02;
  color: var(--on-image);
}
.hero--event .hero__title {
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.96;
}
.hero__sub {
  max-width: 52ch;
  font-size: 18px;
  line-height: 1.62;
  color: var(--on-image-muted);
}
.hero__crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-image-dim);
}
.hero__crumb span[aria-current] {
  color: var(--accent);
}
.hero__crumb .sep {
  opacity: 0.4;
}
.hero .eyebrow {
  color: var(--accent);
  margin-bottom: 0;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  color: var(--on-image-dim);
}

/* Zwevende glaskaart in de hero. */
.glass-card {
  position: relative;
  z-index: 2;
  width: 352px;
  max-width: 100%;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--glass-panel);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-stroke);
  color: var(--on-image);
}
.glass-card__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e0a340;
}
.glass-card__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.glass-card__title {
  font-size: 26px;
  line-height: 1.1;
  color: var(--on-image);
}
.glass-card__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--on-image-dim);
}
.glass-card hr {
  border-color: rgba(255, 255, 255, 0.1019607843);
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.countdown__unit {
  min-width: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 6px;
  border-radius: var(--radius-md);
  background: var(--glass-fill);
  border: 1px solid var(--glass-stroke);
}
.countdown__value {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  color: var(--on-image);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-image-dim);
}
.countdown__note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #e0a340;
}

/* Voortgangsbalk (plekken / slider) */
.progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.progress__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}
.progress__pct {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
}
.progress__track {
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.0784313725);
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--accent);
}

/* ---------------------------------------------------------------------------
   Alle kaarten zijn flexkolommen op volle hoogte. In een grid worden ze daarmee
   automatisch even hoog; het onderste element wordt met margin-top:auto naar de
   bodem geduwd zodat prijzen, knoppen en statistieken op één lijn liggen.
--------------------------------------------------------------------------- */
.day-card, .stage-card, .style-card, .trip-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.day-card__media, .stage-card__media, .style-card__media, .story-card__media, .trip-card__media {
  position: relative;
  display: block;
  background: var(--placeholder);
  overflow: hidden;
}
.day-card__media img, .stage-card__media img, .style-card__media img, .story-card__media img, .trip-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

/* --- Reiskaart ----------------------------------------------------------- */
.trip-card:hover .trip-card__media img {
  transform: scale(1.04);
}
.trip-card__media {
  aspect-ratio: 3/2;
  flex: none;
}
.trip-card__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(14, 12, 10, 0.8);
  backdrop-filter: blur(4px);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.trip-card__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  padding: 30px;
}
.trip-card__title {
  font-size: 27px;
  line-height: 1.14;
}
.trip-card__route {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-dim);
}
.trip-card__text {
  font-size: 14px;
  line-height: 1.62;
  color: var(--fg-muted);
}
.trip-card__foot {
  margin-top: auto;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.trip-card__foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.price__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.price__value {
  font-family: var(--font-heading);
  font-size: 23px;
  line-height: 1;
  color: var(--fg);
}

/* --- Categoriekaart (tekst over foto) ------------------------------------ */
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--placeholder);
  color: var(--on-image);
}
.cat-card--tall {
  min-height: 480px;
}
.cat-card--short {
  min-height: 230px;
}
.cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.cat-card:hover .cat-card__img {
  transform: scale(1.05);
}
.cat-card__scrim {
  position: relative;
  padding: 120px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(to bottom, rgba(14, 12, 10, 0) 0%, rgba(14, 12, 10, 0.5019607843) 30%, rgba(14, 12, 10, 0.9019607843) 52%, rgba(14, 12, 10, 0.968627451) 100%);
}
.cat-card--short .cat-card__scrim {
  padding: 70px 26px 26px;
  gap: 9px;
}
.cat-card__scrim > * {
  text-shadow: 0 1px 14px rgba(14, 12, 10, 0.6);
}
.cat-card__kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e0a340;
}
.cat-card__title {
  font-size: 30px;
  line-height: 1.12;
  color: var(--on-image);
}
.cat-card--short .cat-card__title {
  font-size: 23px;
}
.cat-card__text {
  font-size: 14px;
  line-height: 1.62;
  color: var(--on-image-muted);
}
.cat-card .link-arrow {
  color: #d9481c;
}

/* --- Verhaalkaart -------------------------------------------------------- */
.story-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}
.story-card:hover .story-card__media img {
  transform: scale(1.04);
}
.story-card__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  flex: none;
}
.story-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.story-card__title {
  font-size: 24px;
  line-height: 1.16;
}
.story-card__text {
  font-size: 14px;
  line-height: 1.62;
  color: var(--fg-muted);
}
.story-card__foot {
  margin-top: auto;
  padding-top: 4px;
}

/* --- Testimonial --------------------------------------------------------- */
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
  padding: 34px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.testimonial__quote {
  font-size: 16px;
  line-height: 1.68;
  color: var(--fg);
}
.testimonial__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testimonial__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.testimonial__trip {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.avatar {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--placeholder);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar__initials {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}

/* --- USP-tegel ----------------------------------------------------------- */
.usp {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: 34px;
  border-radius: var(--radius-md);
}
.usp--bordered {
  border: 1px solid var(--border);
}
.usp__icon {
  color: var(--accent);
}
.usp__title {
  font-size: 19px;
  line-height: 1.2;
}
.usp__text {
  font-size: 14px;
  line-height: 1.62;
  color: var(--fg-muted);
}

/* --- Stijlkaart ---------------------------------------------------------- */
.style-card {
  /* Stap 1 van de aanvraag: de hele kaart is een keuzeknop. Een button
     brengt eigen padding en uitlijning mee; die moeten eruit, anders staat
     de foto niet tegen de rand van de kaart. */
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.style-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.style-card:hover .style-card__check {
  border-color: var(--accent);
}
.style-card[aria-pressed=true] {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.style-card[aria-pressed=true] .style-card__check {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--on-image);
}
.style-card[aria-pressed=true] .style-card__check svg {
  opacity: 1;
}
.style-card__media {
  aspect-ratio: 16/9;
  flex: none;
}
.style-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 26px;
}
.style-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.style-card__title {
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.15;
  color: var(--fg);
}
.style-card__check {
  width: 22px;
  height: 22px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 2px solid var(--text-ghost);
  color: transparent;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.style-card__check svg {
  opacity: 0;
  transition: opacity 0.15s var(--ease);
}
.style-card__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.style-card__tag {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Etappekaart --------------------------------------------------------- */
.stage-card__media {
  aspect-ratio: 16/9;
  flex: none;
}
.stage-card__body {
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
  padding: 26px;
}
.stage-card__title {
  font-size: 21px;
  line-height: 1.14;
}
.stage-card__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.stage-card__stats {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.stat-mini {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stat-mini__value {
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.1;
  color: var(--fg);
}
.stat-mini__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* --- Dagkaart ------------------------------------------------------------ */
.day-card__media {
  aspect-ratio: 2/1;
  flex: none;
}
.day-card__body {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  padding: 24px;
}
.day-card__day {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.day-card__title {
  font-size: 19px;
  line-height: 1.16;
}
.day-card__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* --- Prijskaart ---------------------------------------------------------- */
.price-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  padding: 36px 34px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.price-card.is-featured {
  border: 2px solid var(--accent);
}
.price-card__badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.price-card__name {
  font-size: 28px;
  line-height: 1.1;
}
.price-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.price-card__amount {
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1;
  color: var(--fg);
}
.price-card__unit {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
}
.price-card .btn {
  margin-top: auto;
}

/* --- Contactkaart -------------------------------------------------------- */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  padding: 36px 34px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--accent-tint);
  color: var(--accent);
}
.contact-card__title {
  font-size: 24px;
  line-height: 1.14;
}
.contact-card__text {
  font-size: 14px;
  line-height: 1.62;
  color: var(--fg-muted);
}
.contact-card__value {
  margin-top: auto;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
}

/* --- Checklist ----------------------------------------------------------- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-soft);
}
.checklist__item svg {
  flex: none;
  color: var(--accent);
  margin-top: 2px;
}

/* --- Statistiek ---------------------------------------------------------- */
.stat {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.stat__value {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  color: var(--fg);
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* --- Ticker -------------------------------------------------------------- */
.ticker {
  padding-block: 20px;
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
  overflow: hidden;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: ticker-scroll 42s linear infinite;
}
.ticker:hover .ticker__track {
  animation-play-state: paused;
}
.ticker__item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.ticker__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }
}
/* --- Cijferstrip --------------------------------------------------------- */
.stats {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-block: 76px;
  border-block: 1px solid var(--border);
}

/* --- Bento ervaringen ---------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: minmax(0, 840fr) minmax(0, 404fr);
  grid-auto-rows: minmax(0, auto);
  gap: 20px;
}
.bento__col {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.bento__row {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1024px) {
  .bento {
    grid-template-columns: minmax(0, 1fr);
  }
  .bento__col {
    grid-template-rows: auto;
  }
  .bento__row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- Stappen ------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step__num {
  font-family: var(--font-heading);
  font-size: 62px;
  line-height: 1;
  color: var(--numeral);
}
.step__title {
  font-size: 23px;
  line-height: 1.18;
}
.step__text {
  font-size: 14px;
  line-height: 1.62;
}

.section--inverse .step__num {
  color: var(--border-invert);
}

.section--inverse .step__title {
  color: var(--fg-invert);
}

/* --- FAQ ----------------------------------------------------------------- */
.faq {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--fg);
}
.faq__q svg {
  flex: none;
  color: var(--accent);
  transition: transform 0.25s var(--ease);
}
.faq__item.is-open .faq__q svg {
  transform: rotate(45deg);
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}
.faq__a > div {
  overflow: hidden;
}
.faq__a p {
  padding-bottom: 26px;
  font-size: 15px;
  line-height: 1.7;
  max-width: 70ch;
}
.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

/* --- Slider (dag voor dag / etappes) ------------------------------------- */
.slider__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.slider__viewport::-webkit-scrollbar {
  display: none;
}
.slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, calc((100% - 60px) / 4));
  gap: 20px;
  align-items: stretch;
}
.slider__track > * {
  scroll-snap-align: start;
}
@media (max-width: 1280px) {
  .slider__track {
    grid-auto-columns: minmax(0, calc((100% - 40px) / 3));
  }
}
@media (max-width: 1024px) {
  .slider__track {
    grid-auto-columns: minmax(0, calc((100% - 20px) / 2));
  }
}
@media (max-width: 768px) {
  .slider__track {
    grid-auto-columns: minmax(0, 84%);
  }
}
.slider__nav {
  display: flex;
  gap: 10px;
}
.slider__btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--text-faint);
  transition: 0.2s var(--ease);
}
.slider__btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}
.slider__btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.slider__btn--next {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-image);
}
.slider__btn--next:hover:not(:disabled) {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--on-image);
}
.slider__progress {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.slider__track-bar {
  flex: 1;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--placeholder);
  overflow: hidden;
}
.slider__thumb {
  height: 100%;
  width: 33%;
  border-radius: var(--radius-pill);
  background: var(--accent);
  transition: width 0.3s var(--ease), transform 0.3s var(--ease);
}
.slider__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* --- Seizoenstabel ------------------------------------------------------- */
.season {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
}
.season__scroll {
  overflow-x: auto;
}
.season__grid {
  min-width: 860px;
}
.season__row {
  display: grid;
  grid-template-columns: 230px repeat(12, minmax(0, 1fr));
  gap: 6px;
  align-items: center;
  padding: 15px 24px;
  border-bottom: 1px solid var(--border);
}
.season__row:last-child {
  border-bottom: 0;
}
.season__row--head {
  padding-block: 18px;
}
.season__month {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--text-faint);
}
.season__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.season__cell {
  height: 26px;
  border-radius: 4px;
  background: var(--placeholder);
}
.season__cell.is-best {
  background: var(--accent);
}
.season__cell.is-good {
  background: var(--gold);
}
.season__legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.season__key {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
}
.season__key span {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex: none;
}

/* --- Kaart met pins ------------------------------------------------------ */
.map-block {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--placeholder);
  aspect-ratio: 1264/600;
  color: var(--on-image);
}
.map-block__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 12, 10, 0.4509803922);
}
.map-block__pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  background: var(--glass-panel);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: var(--on-image);
  transform: translate(-50%, -50%);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  cursor: pointer;
  /* Ligt de pin tegen een rand, dan haakt het label naar binnen zodat
     het niet buiten de kaart valt. */
}
.map-block__pin.is-right {
  transform: translate(-100%, -50%);
}
.map-block__pin.is-left {
  transform: translate(0, -50%);
}
.map-block__pin.is-bottom {
  transform: translate(-50%, -100%);
}
.map-block__pin.is-top {
  transform: translate(-50%, 0);
}
.map-block__pin.is-right.is-bottom {
  transform: translate(-100%, -100%);
}
.map-block__pin.is-left.is-bottom {
  transform: translate(0, -100%);
}
.map-block__pin.is-right.is-top {
  transform: translate(-100%, 0);
}
.map-block__pin.is-left.is-top {
  transform: translate(0, 0);
}
.map-block__pin::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e0a340;
  flex: none;
}
.map-block__pin.is-active, .map-block__pin:hover {
  background: #d9481c;
  border-color: #d9481c;
}
.map-block__pin.is-active::before, .map-block__pin:hover::before {
  background: #fff;
}
.map-block__info {
  position: absolute;
  z-index: 3;
  left: 40px;
  bottom: 40px;
  width: 330px;
  max-width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(22, 19, 15, 0.9490196078);
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
  backdrop-filter: blur(10px);
}
.map-block__info-kicker {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d9481c;
}
.map-block__info-title {
  font-size: 22px;
  line-height: 1.14;
  color: var(--on-image);
}
.map-block__info-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--on-image-dim);
}
@media (max-width: 768px) {
  .map-block {
    aspect-ratio: 3/4;
  }
  .map-block__info {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    max-width: none;
  }
}

/* --- CTA-band / eventband ----------------------------------------------- */
.band {
  position: relative;
  overflow: hidden;
  padding-block: 96px;
  color: var(--on-image);
}
.band__media {
  position: absolute;
  inset: 0;
}
.band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 12, 10, 0.9490196078), rgba(14, 12, 10, 0.7019607843));
}
.band--left .band__media::after {
  background: linear-gradient(to right, rgba(14, 12, 10, 0.9490196078) 0%, rgba(14, 12, 10, 0.8) 42%, rgba(14, 12, 10, 0.2509803922) 100%);
}
.band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}
.band--left .band__inner {
  align-items: flex-start;
  text-align: left;
  max-width: 680px;
}
.band__title {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.06;
  color: var(--on-image);
  max-width: 22ch;
}
.band__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--on-image-muted);
  max-width: 58ch;
}
.band__note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--on-image-dim);
}
.band .eyebrow {
  color: #d9481c;
  margin-bottom: 0;
}

/* --- Instagram ----------------------------------------------------------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1024px) {
  .insta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .insta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.insta-grid__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--placeholder);
}
.insta-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.insta-grid__item:hover img {
  transform: scale(1.06);
}

/* --- Media/tekst split --------------------------------------------------- */
.text-media__media {
  position: relative;
  min-height: 480px;
  background: var(--placeholder);
  overflow: hidden;
}
.text-media__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .text-media__media {
    position: relative;
    min-height: 0;
    aspect-ratio: 4/3;
  }
}
.text-media__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 100px var(--gutter) 100px 76px;
}
@media (max-width: 1024px) {
  .text-media__body {
    padding: 56px var(--gutter);
  }
}
.text-media--reverse .text-media__body {
  padding: 100px 76px 100px var(--gutter);
}
.text-media__kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.text-media__title {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.06;
}
.text-media p {
  font-size: 16px;
  line-height: 1.7;
}

.people {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.person {
  display: flex;
  align-items: center;
  gap: 13px;
}
.person__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.person__role {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* --- Quote-kaart --------------------------------------------------------- */
.quote-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border-left: 3px solid var(--accent);
}
.quote-card__q {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.2;
  color: var(--fg);
}
.quote-card__a {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* Live-badge in de event-hero */
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-image);
}
.badge-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* ---------------------------------------------------------------------------
   Reis-detailpagina
--------------------------------------------------------------------------- */
.hero--trip {
  min-height: 760px;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .hero--trip {
    min-height: 560px;
  }
}
.hero--trip .hero__title {
  font-size: clamp(38px, 5.4vw, 68px);
}
.hero--trip .hero__route {
  max-width: 70ch;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--on-image-muted);
}

.badge-outline {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  background: rgba(22, 19, 15, 0.8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1803921569);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-image);
}

/* Kerngegevenskaart in de hero */
.glass-card--facts {
  gap: 0;
}
.glass-card--facts hr {
  margin-block: 18px;
}

.glass-card__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.glass-card__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e0a340;
}

.glass-card__amount {
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.05;
  color: var(--on-image);
}

.glass-card__note {
  font-size: 12px;
  color: var(--on-image-dim);
}

.facts {
  display: flex;
  flex-direction: column;
}

.fact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 13px;
}
.fact svg {
  flex: none;
  color: #d9481c;
}
.fact__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fact__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-image-dim);
}
.fact__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--on-image);
}

/* --- Ankerbalk ----------------------------------------------------------- */
.anchorbar,
.block.anchorbar {
  /* Slanke balk: niet de verticale ruimte van een gewone sectie. */
  padding-block: 0;
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg-alt) 94%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.anchorbar__inner,
.block.anchorbar__inner {
  width: 100%;
  max-width: calc(var(--content) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.anchorbar__list,
.block.anchorbar__list {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}
.anchorbar__list::-webkit-scrollbar,
.block.anchorbar__list::-webkit-scrollbar {
  display: none;
}
.anchorbar__list a,
.block.anchorbar__list a {
  display: block;
  padding-block: 24px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--fg-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.anchorbar__list a:hover,
.block.anchorbar__list a:hover {
  color: var(--fg);
}
.anchorbar__list a.is-active,
.block.anchorbar__list a.is-active {
  color: var(--fg);
  border-bottom-color: var(--accent);
}
.anchorbar__cta,
.block.anchorbar__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: none;
}
.anchorbar__price,
.block.anchorbar__price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}
@media (max-width: 1024px) {
  .anchorbar__price,
  .block.anchorbar__price {
    display: none;
  }
}
@media (max-width: 768px) {
  .anchorbar__cta .btn,
  .block.anchorbar__cta .btn {
    display: none;
  }
}

/* --- Tijdlijn dag voor dag ----------------------------------------------- */
.timeline {
  display: flex;
  flex-direction: column;
}
.timeline__day {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: start;
  padding-block: 30px;
  border-bottom: 1px solid var(--border);
}
.timeline__day.is-hidden {
  display: none;
}
@media (max-width: 1024px) {
  .timeline__day {
    grid-template-columns: 104px minmax(0, 1fr);
  }
  .timeline__day .timeline__thumb {
    display: none;
  }
}
@media (max-width: 560px) {
  .timeline__day {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}
.timeline__num {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.timeline__dag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.timeline__nachten {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
}
.timeline__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.timeline__title {
  font-size: 24px;
  line-height: 1.14;
}
.timeline__text {
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.68;
  color: var(--text-soft);
}
.timeline__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.timeline__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
}
.timeline__meta svg {
  flex: none;
  color: var(--text-faint);
}
.timeline__thumb {
  aspect-ratio: 3/2;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--placeholder);
}
.timeline__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.timeline__more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* --- Comfortniveaus ------------------------------------------------------ */
.level-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.level-card.is-featured {
  border: 2px solid var(--accent);
}
.level-card__media {
  position: relative;
  aspect-ratio: 16/10;
  flex: none;
  background: var(--placeholder);
  overflow: hidden;
}
.level-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.level-card:hover .level-card__media img {
  transform: scale(1.04);
}
.level-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-image);
}
.level-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  padding: 30px;
}
.level-card__level {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.level-card__title {
  font-size: 24px;
  line-height: 1.14;
}
.level-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}
.level-card__examples {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.level-card__examples-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.level-card__example {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-muted);
}
.level-card__example svg {
  flex: none;
  color: var(--text-ghost);
  margin-top: 2px;
}
.level-card__price {
  margin-top: auto;
  padding-top: 6px;
}

/* --- Losse onderdelen ---------------------------------------------------- */
.checklist--negative .checklist__item svg {
  color: var(--text-ghost);
}

.block-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-faint);
  text-align: center;
}
.block-note svg {
  flex: none;
}

.map-block__pin-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #e0a340;
}

.map-block__pin.is-active .map-block__pin-num {
  color: #fff;
}

.map-block__legend-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--on-image);
}
.map-block__legend-row svg {
  flex: none;
  color: var(--on-image-dim);
  margin-top: 2px;
}

/* ---------------------------------------------------------------------------
   Reisverhalen
--------------------------------------------------------------------------- */
.hero--story {
  min-height: 640px;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .hero--story {
    min-height: 480px;
  }
}
.hero--story .hero__title {
  font-size: clamp(34px, 4.6vw, 60px);
}
.hero--story .hero__sub {
  max-width: 58ch;
}

/* --- Artikel met zijkolom ------------------------------------------------ */
.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .article {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }
}
.article__body {
  max-width: 72ch;
  font-size: 18px;
  line-height: 1.78;
}
.article__body > * + * {
  margin-top: var(--space-text);
}
.article__body h2 {
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.14;
  margin-top: calc(var(--space-text) * 1.7);
}
.article__body h3 {
  font-size: clamp(21px, 2.2vw, 25px);
  margin-top: calc(var(--space-text) * 1.4);
}
.article__body figure {
  margin-block: calc(var(--space-text) * 1.4);
}
.article__body img {
  border-radius: var(--radius-md);
}
.article__body figcaption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-faint);
}
.article__body blockquote {
  margin-block: calc(var(--space-text) * 1.4);
  padding: 34px;
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  background: var(--card);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  color: var(--fg);
}
.article__body blockquote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.12em;
  color: var(--text-faint);
}
.article__body ul {
  padding-left: 1.2em;
  list-style: disc;
}
.article__body ol {
  padding-left: 1.4em;
  list-style: decimal;
}
.article__body li {
  padding-left: 0.35em;
}
.article__body li::marker {
  color: var(--accent);
}
.article__body li + li {
  margin-top: 0.5em;
}
.article__aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .article__aside {
    position: static;
  }
}
.article__trip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.article__trip-media {
  display: block;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--placeholder);
}
.article__trip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article__trip-title {
  font-size: 21px;
  line-height: 1.15;
}
.article__trip-meta {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* --- Auteurskaartje ------------------------------------------------------ */
.author-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.author-card__kicker {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.author-card__row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-card__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.author-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}
.author-card__role {
  font-size: 13px;
  color: var(--fg-muted);
}
.author-card__bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* --- Delen ---------------------------------------------------------------- */
.share {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.share__row {
  display: flex;
  gap: 10px;
}
.share__item {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--fg-muted);
  transition: 0.2s var(--ease);
}
.share__item:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Uitgelicht verhaal --------------------------------------------------- */
.featured-story {
  display: grid;
  grid-template-columns: minmax(0, 640fr) minmax(0, 624fr);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .featured-story {
    grid-template-columns: minmax(0, 1fr);
  }
}
.featured-story__media {
  display: block;
  aspect-ratio: 16/11;
  background: var(--placeholder);
  overflow: hidden;
}
.featured-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.featured-story:hover .featured-story__media img {
  transform: scale(1.04);
}
.featured-story__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 48px;
}
@media (max-width: 768px) {
  .featured-story__body {
    padding: 30px;
  }
}
.featured-story__title {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.1;
}
.featured-story__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
}
.featured-story__author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .form-card {
    padding: 28px;
  }
}

/* Formulier + zijkolom. */
.form-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 28px;
  align-items: start;
  margin-top: 52px;
}
@media (max-width: 1024px) {
  .form-split {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Voortgangsstappen van een meerstaps Gravity Form. */
.gf_page_steps {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border: 0;
  padding: 0;
}

.gf_step {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 4px;
  margin: 0 !important;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 1;
}
.gf_step::before {
  content: "";
  flex: 0 0 100%;
  height: 3px;
  margin-bottom: 10px;
  border-radius: var(--radius-pill);
  background: var(--placeholder);
  transition: background 0.3s var(--ease);
}
.gf_step .gf_step_number,
.gf_step .gf_step_label {
  display: inline;
}
.gf_step .gf_step_number {
  margin-right: 4px;
}
.gf_step .gf_step_number::after {
  content: " ·";
}
.gf_step.gf_step_active {
  color: var(--fg);
}
.gf_step.gf_step_active::before {
  background: var(--accent);
}
.gf_step.gf_step_completed::before {
  background: var(--accent-deep);
}

.fieldset-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Gravity Forms in ons designsysteem. */
.gform_wrapper .gform_fields {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px !important;
}
.gform_wrapper .gfield {
  grid-column: span 12;
}
.gform_wrapper .gfield--width-half {
  grid-column: span 6;
}
.gform_wrapper .gfield--width-third {
  grid-column: span 4;
}
@media (max-width: 768px) {
  .gform_wrapper .gfield--width-half,
  .gform_wrapper .gfield--width-third {
    grid-column: span 12;
  }
}
.gform_wrapper .gfield_label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 9px;
}
.gform_wrapper .gfield_required {
  margin-left: 7px;
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 0.1em;
}
.gform_wrapper input[type=text],
.gform_wrapper input[type=email],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=url],
.gform_wrapper input[type=number],
.gform_wrapper input[type=date],
.gform_wrapper select,
.gform_wrapper textarea {
  width: 100%;
  padding: 0 18px;
  height: 54px;
  background: var(--field-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--fg);
  font-size: 15px;
  transition: border-color 0.2s var(--ease);
}
.gform_wrapper input[type=text]::placeholder,
.gform_wrapper input[type=email]::placeholder,
.gform_wrapper input[type=tel]::placeholder,
.gform_wrapper input[type=url]::placeholder,
.gform_wrapper input[type=number]::placeholder,
.gform_wrapper input[type=date]::placeholder,
.gform_wrapper select::placeholder,
.gform_wrapper textarea::placeholder {
  color: var(--text-faint);
}
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=email]:focus,
.gform_wrapper input[type=tel]:focus,
.gform_wrapper input[type=url]:focus,
.gform_wrapper input[type=number]:focus,
.gform_wrapper input[type=date]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.gform_wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8177' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 46px;
}
.gform_wrapper textarea {
  height: auto;
  min-height: 150px;
  padding: 16px 18px;
  line-height: 1.6;
  resize: vertical;
}
.gform_wrapper .gfield_description,
.gform_wrapper .charleft {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 8px;
}
.gform_wrapper .gfield_checkbox,
.gform_wrapper .gfield_radio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gform_wrapper .gchoice {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.gform_wrapper .gchoice label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  cursor: pointer;
}
.gform_wrapper input[type=checkbox],
.gform_wrapper input[type=radio] {
  appearance: none;
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 2px;
  background: var(--field-bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gform_wrapper input[type=checkbox]:checked,
.gform_wrapper input[type=radio]:checked {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
.gform_wrapper input[type=radio] {
  border-radius: 50%;
}
.gform_wrapper .gform_footer {
  margin-top: 4px;
}
.gform_wrapper .gform_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--on-image);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.gform_wrapper .gform_button:hover {
  background: var(--accent-deep);
}
.gform_wrapper .gform_validation_errors {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--accent-tint);
  border: 1px solid var(--accent);
  color: var(--fg);
}
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea {
  border-color: var(--accent);
}
.gform_wrapper .validation_message {
  font-size: 12px;
  color: var(--accent);
  margin-top: 6px;
}

.gform_confirmation_message {
  padding: 26px 30px;
  border-radius: var(--radius-md);
  background: var(--accent-tint);
  border: 1px solid var(--accent);
  color: var(--fg);
}

/* Zijkolom bij formulieren */
.form-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-aside__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.form-aside__card--filled {
  background: var(--card);
}
.form-aside__title {
  font-size: 23px;
  line-height: 1.15;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-row__icon {
  width: 42px;
  height: 42px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--accent-tint);
  color: var(--accent);
}
.contact-row__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.contact-row__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}

.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.numbered-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  line-height: 1.6;
}
.numbered-list__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  flex: none;
  padding-top: 2px;
}

/* GF rendert keuzevelden in een fieldset; die rand hoort niet in ons ontwerp. */
.gform_wrapper fieldset.gfield {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.gform_wrapper legend.gfield_label {
  padding: 0;
}

/* ---------------------------------------------------------------------------
   Keuzevelden als chips.
   Zet in Gravity Forms de CSS-class `gfield--chips` op een checkbox- of
   radioveld; de native inputs blijven bestaan (en focusbaar) maar worden
   visueel vervangen door pills.
--------------------------------------------------------------------------- */
.gform_wrapper .gfield--chips .gfield_checkbox,
.gform_wrapper .gfield--chips .gfield_radio {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 9px;
}
.gform_wrapper .gfield--chips .gchoice {
  margin: 0;
}
.gform_wrapper .gfield--chips input[type=checkbox],
.gform_wrapper .gfield--chips input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.gform_wrapper .gfield--chips label {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 10px 17px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--fg-muted);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.gform_wrapper .gfield--chips label:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}
.gform_wrapper .gfield--chips input:checked + label {
  background: var(--accent-tint);
  border-color: var(--accent);
  color: var(--fg);
}
.gform_wrapper .gfield--chips input:focus-visible + label {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Notitie naast de verstuurknop ("Vrijblijvend · reactie binnen 24 uur"). */
.form-card__form.has-note {
  position: relative;
}
.form-card__form.has-note .gform_footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.form-card__note {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
}

/* Navigatieknoppen van een meerstaps formulier. */
.gform_wrapper .gform_page_footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.gform_wrapper .gform_next_button,
.gform_wrapper .gform_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--on-image);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.gform_wrapper .gform_next_button:hover,
.gform_wrapper .gform_button:hover {
  background: var(--accent-deep);
}
.gform_wrapper .gform_previous_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border: 0;
  border-radius: var(--radius-pill);
  background: none;
  box-shadow: inset 0 0 0 1px var(--border-strong);
  color: var(--fg);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.gform_wrapper .gform_previous_button:hover {
  box-shadow: inset 0 0 0 1px var(--fg);
}

.prose {
  max-width: 70ch;
  font-size: 17px;
  line-height: 1.72;
  color: var(--fg-muted);
}
.prose > * + * {
  margin-top: 1.1em;
}
.prose h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-top: 1.6em;
}
.prose h3 {
  font-size: clamp(21px, 2.2vw, 27px);
  margin-top: 1.4em;
}
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose ul, .prose ol {
  padding-left: 1.3em;
}
.prose li + li {
  margin-top: 0.5em;
}
.prose blockquote {
  padding-left: 24px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.3;
  color: var(--fg);
}
.prose img {
  border-radius: var(--radius-md);
}

.prose-title {
  font-size: clamp(32px, 4.6vw, 56px);
  margin-bottom: 28px;
}

/* Scroll-reveal: subtiel, en volledig uit bij prefers-reduced-motion. */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
