/* ═══════════════════════════════════════════════════════
   Wooncollectief La Finca — stylesheet
   Eén bestand, geen framework, geen buildstap.
   Volgorde: fonts · tokens · reset · basis · helpers ·
             header · secties · footer · responsive
   ═══════════════════════════════════════════════════════ */

/* ─── Fonts (self-hosted, latin-subset) ─────────────── */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-opsz-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-opsz-italic.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken-grotesk-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Tokens ────────────────────────────────────────── */
:root {
  /* Kleur */
  --cream: #f7efe4;
  --cream-2: #fdfaf4;
  --sand: #fbf0d2;
  --blush: #ead0c1;
  --forest: #2e4635;
  --forest-2: #3a5341;
  --forest-deep: #223528;
  --gold: #d2a03c;
  --gold-deep: #b4862c;
  --terracotta: #be4326;
  --terracotta-deep: #9e351c;
  --ink: #1c1a15;
  --ink-soft: #5b5548;
  --teal: #3ca8ad;          /* turquoise struiken uit het logo */
  --teal-deep: #2d8589;
  --logo-orange: #e46c48;   /* oranje heuvels uit het logo */
  --bronze: #a5713f;
  --silver: #8d9298;

  /* Type */
  --font-body: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", ui-serif, Georgia, serif;

  /* Maten */
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --wrap: 68rem;
  --wrap-narrow: 44rem;
  --radius: 6px;
  --radius-lg: 10px;
  --section-y: clamp(3.5rem, 7vw, 6.5rem);
  --section-y-tight: clamp(2.5rem, 5vw, 4.5rem);

  --line: rgba(28, 26, 21, 0.1);
}

/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
img,
svg {
  display: block;
  max-width: 100%;
}
ul[class] {
  list-style: none;
  padding: 0;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ─── Basis ─────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.25rem;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 40;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
a {
  color: inherit;
  text-underline-offset: 3px;
}
::selection {
  background: var(--gold);
  color: var(--forest);
}
:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Skiplink */
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 60;
  background: var(--cream);
  color: var(--ink);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
}

/* ─── Layout-helpers ────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow {
  width: 100%;
  max-width: var(--wrap-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--section-y);
}
.section-tight {
  padding-block: var(--section-y-tight);
}

/* ─── Typografie-helpers ────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.eyebrow--gold {
  color: var(--gold);
}
.eyebrow--rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow--rule::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  flex: none;
}
.h1 {
  font-size: clamp(2.125rem, 1.3rem + 3.4vw, 3.5rem);
  font-variation-settings: "opsz" 90;
}
.h2 {
  font-size: clamp(1.625rem, 1.1rem + 2.1vw, 2.375rem);
  font-variation-settings: "opsz" 60;
}
.h3 {
  font-size: 1.1875rem;
  font-variation-settings: "opsz" 20;
}
.lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 46ch;
}
.body-sm {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.on-dark {
  color: rgba(247, 239, 228, 0.82);
}
.mt-1 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.75rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.25rem; }
.mt-5 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2rem; }
.mt-8 { margin-top: 2.5rem; }
.mt-10 { margin-top: 3rem; }

/* ─── Knoppen ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn svg {
  flex: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--forest);
}
.btn--gold:hover {
  background: var(--gold-deep);
}
.btn--terracotta {
  background: var(--terracotta);
  color: var(--cream-2);
}
.btn--terracotta:hover {
  background: var(--terracotta-deep);
}
.link-underline {
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: underline;
}

/* Ronde icoonknop */
.btn-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  transition: background-color 0.18s ease, transform 0.18s ease, opacity 0.3s ease;
}

/* ─── Kaarten & callouts ────────────────────────────── */
.card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--forest);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.card--terracotta { border-top-color: var(--terracotta); }
.card--gold { border-top-color: var(--gold); }
.card--bronze { border-top-color: var(--bronze); }
.card--silver { border-top-color: var(--silver); }

.callout {
  border-left: 4px solid var(--terracotta);
  background: var(--cream-2);
  padding: clamp(1.125rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout--sand {
  background: var(--sand);
  border-left-color: var(--gold);
}

/* ─── Grids ─────────────────────────────────────────── */
.grid-2 {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
.grid-3 {
  display: grid;
  gap: 1.25rem;
}

/* ─── Header ────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header[data-scrolled="true"] {
  background: var(--forest);
  box-shadow: 0 1px 0 rgba(247, 239, 228, 0.12);
}
.site-header__bar {
  display: flex;
  height: 5.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-decoration: none;
  font-variation-settings: "opsz" 30;
  font-weight: 600;
}
.wordmark em {
  font-weight: 500;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav a:not(.btn) {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(247, 239, 228, 0.85);
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav a:not(.btn):hover {
  color: var(--cream);
}
.nav-toggle {
  display: none;
  color: var(--cream);
}
.mobile-nav {
  display: none;
  background: var(--forest);
  border-top: 1px solid rgba(247, 239, 228, 0.15);
}
.mobile-nav[data-open="true"] {
  display: block;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-block: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  padding-inline: 0;
}
.mobile-nav a:not(.btn) {
  display: block;
  padding-block: 0.625rem;
  color: rgba(247, 239, 228, 0.9);
  text-decoration: none;
}
.mobile-nav .btn {
  margin-top: 0.75rem;
  align-self: flex-start;
}

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 38rem;
  overflow: hidden;
  background: var(--forest);
}
.hero__media,
.band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(34, 53, 40, 0.78) 0%,
    rgba(34, 53, 40, 0.55) 42%,
    rgba(34, 53, 40, 0.88) 100%
  );
}
.hero__inner {
  padding-block: 8rem 4rem;
  max-width: 40rem;
}
.hero h1 {
  color: var(--cream);
}
.hero .lead {
  color: rgba(247, 239, 228, 0.8);
  max-width: 34rem;
}

/* ─── Kerncijfers-balk ──────────────────────────────── */
.statbar {
  background: var(--forest-2);
  color: var(--cream);
}
.statbar ul {
  display: grid;
  gap: 1.25rem;
  padding-block: 1.5rem;
  list-style: none;
  margin: 0;
}
.statbar li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.35;
}
.statbar svg {
  flex: none;
  color: var(--gold);
}

/* ─── Filmblok ──────────────────────────────────────── */
.film {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forest);
}
.film__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(34, 53, 40, 0.55) 0%, rgba(34, 53, 40, 0.86) 100%);
}
.film__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--cream);
}
.film__play {
  border: 1px solid rgba(247, 239, 228, 0.5);
  color: var(--cream);
}
a.film__play:hover {
  background: rgba(247, 239, 228, 0.12);
  transform: translateY(-2px);
}
.film__play[aria-hidden="true"] {
  border-color: rgba(247, 239, 228, 0.35);
  color: rgba(247, 239, 228, 0.6);
}
.film h2 {
  color: var(--cream);
  max-width: 34rem;
}
.film p {
  max-width: 28rem;
  color: rgba(247, 239, 228, 0.8);
}
.film__note {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Callout met icoon ─────────────────────────────── */
.callout-cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.callout-cta__text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.callout-cta__text svg {
  flex: none;
  margin-top: 0.15rem;
  color: var(--terracotta);
}
.callout-cta p {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24;
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.4;
  max-width: 44rem;
}

/* ─── Donkere sectie (droom) ────────────────────────── */
.dark {
  background: var(--forest);
  color: var(--cream);
}
.dark h2 {
  color: var(--cream);
}
.droom__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ─── Voortgang ─────────────────────────────────────── */
.progress__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.progress__amount {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 40;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1;
}
.progress__meta {
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.progress__track {
  margin-top: 1rem;
  height: 10px;
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: var(--cream);
}
.progress__fill {
  height: 100%;
  border-radius: 999px;
  background: var(--terracotta);
  min-width: 2px;
}
.stats {
  display: grid;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stats > div {
  background: var(--cream-2);
  padding: 1rem 1.25rem;
}
.stats > div + div {
  border-top: 1px solid var(--line);
}
.stats dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.stats dd {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 30;
  font-weight: 600;
  font-size: 1.25rem;
}

/* ─── Tier-kaarten ──────────────────────────────────── */
.tier__label {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 20;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: var(--terracotta);
}
.tier__label--caps {
  text-transform: uppercase;
}

/* ─── WhyDonate-widget ──────────────────────────────── */
.donate-widget {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream-2);
  padding: clamp(1rem, 3vw, 1.75rem);
}

/* ─── Zakelijk ──────────────────────────────────────── */
.blush {
  background: var(--blush);
}

/* ─── Slot-band ─────────────────────────────────────── */
.band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--forest);
}
.band__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(34, 53, 40, 0.82) 0%, rgba(34, 53, 40, 0.72) 100%);
}
.band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--cream);
}
.band p {
  max-width: 30rem;
  color: rgba(247, 239, 228, 0.8);
}

/* ─── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--forest-deep);
  color: rgba(247, 239, 228, 0.75);
}
.site-footer__cols {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
}
.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  gap: 0.625rem;
  font-size: 0.9375rem;
}
.site-footer a {
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--cream);
  text-decoration: underline;
}
.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.site-footer__social a {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(247, 239, 228, 0.25);
  color: rgba(247, 239, 228, 0.8);
}
.site-footer__social a:hover {
  background: rgba(247, 239, 228, 0.1);
  color: var(--cream);
}
.icon-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer__bottom {
  border-top: 1px solid rgba(247, 239, 228, 0.1);
}
.site-footer__bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-block: 1.25rem;
  font-size: 0.75rem;
  color: rgba(247, 239, 228, 0.55);
}

/* ─── Terug naar boven ──────────────────────────────── */
.to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(28, 26, 21, 0.25);
  opacity: 0;
  pointer-events: none;
}
.to-top[data-visible="true"] {
  opacity: 1;
  pointer-events: auto;
}
.to-top:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
}

/* ═══ Responsive ════════════════════════════════════ */
@media (min-width: 40rem) {
  .statbar ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stats > div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
  }
  .callout-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .callout-cta .btn {
    flex: none;
  }
}

@media (min-width: 48rem) {
  .hero {
    min-height: 42rem;
  }
  .hero__inner {
    padding-block: 10rem 6rem;
  }
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .droom__intro {
    padding-top: 2.5rem;
  }
  .site-footer__cols {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .film__inner {
    padding-block: 6rem;
  }
}

@media (max-width: 47.99rem) {
  .site-logo img {
    height: 3rem;
  }
  .site-footer .site-logo img {
    height: 3.5rem;
  }
  .nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ═══════════════════════════════════════════════════════
   Onderdelen voor de binnenpagina's
   ═══════════════════════════════════════════════════════ */

/* ─── Logo in header en footer ──────────────────────── */
.site-logo {
  display: inline-flex;
  align-items: center;
  transition: transform 0.18s ease;
}
a.site-logo:hover {
  transform: translateY(-1px);
}
.site-logo img {
  height: 3.75rem;
  width: auto;
  /* Het logo heeft zwarte contourlijnen; op de donkere header en op foto's
     tilt deze zachte schaduw ze los van de achtergrond. */
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}
.site-footer .site-logo img {
  height: 4.5rem;
}

/* ─── Paginakop (binnenpagina's) ────────────────────── */
.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 22rem;
  overflow: hidden;
  background: var(--forest);
}
.page-hero__inner {
  padding-block: 8rem 3rem;
  color: var(--cream);
}
.page-hero h1 {
  color: var(--cream);
  max-width: 20ch;
}
.crumbs {
  font-size: 0.8125rem;
  color: rgba(247, 239, 228, 0.7);
  margin-bottom: 0.75rem;
}
.crumbs a {
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--cream);
  text-decoration: underline;
}

/* ─── Lopende tekst ─────────────────────────────────── */
.prose {
  max-width: 40rem;
}
.prose p + p {
  margin-top: 1rem;
}
.prose h2 {
  margin-top: 2.5rem;
}
.prose h2:first-child {
  margin-top: 0;
}

/* Voordelenlijst met vinkjes */
.checklist {
  list-style: none;
  padding: 0;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.checklist svg {
  flex: none;
  margin-top: 0.3rem;
  color: var(--terracotta);
}

/* ─── Kaartenraster met foto (woongemeenschappen) ───── */
.tile-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.tile {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 14rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--forest);
  color: var(--cream);
  text-decoration: none;
  transition: transform 0.2s ease;
}
a.tile:hover {
  transform: translateY(-3px);
}
.tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(34, 53, 40, 0.15) 0%, rgba(34, 53, 40, 0.85) 100%);
}
.tile h3 {
  font-size: 1.0625rem;
  color: var(--cream);
}
.tile__ext {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Personen ──────────────────────────────────────── */
.people {
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
}
.person {
  text-align: center;
}
.person img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}
.person h3 {
  margin-top: 0.75rem;
  font-size: 1.0625rem;
}
.person p {
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.person--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  aspect-ratio: 1;
  border: 2px dashed rgba(28, 26, 21, 0.2);
  border-radius: var(--radius);
  padding: 1rem;
}
.person--empty h3 {
  margin: 0;
}

/* ─── Fotogalerij ───────────────────────────────────── */
.gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ─── Video's (YouTube, pas geladen na klik) ────────── */
.video-grid {
  display: grid;
  gap: 1.5rem;
}
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--forest);
  border: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
  display: block;
}
.video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 53, 40, 0.35);
  transition: background-color 0.2s ease;
}
.video:hover::after {
  background: rgba(34, 53, 40, 0.15);
}
.video__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video__play span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 6px 18px rgba(28, 26, 21, 0.3);
}
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── Formulier ─────────────────────────────────────── */
.form-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--forest);
}
.form-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-band__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(34, 53, 40, 0.88);
}
.form-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.field {
  display: grid;
  gap: 0.375rem;
  margin-top: 1rem;
}
.field label {
  font-size: 0.875rem;
  font-weight: 600;
}
.field input,
.field textarea {
  font: inherit;
  font-size: 0.9375rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid rgba(28, 26, 21, 0.2);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.field textarea {
  min-height: 7rem;
  resize: vertical;
}
.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 1px;
}
.field-row {
  display: grid;
  gap: 1rem;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
}
.check input {
  margin-top: 0.3rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--terracotta);
  flex: none;
}
.honeypot {
  position: absolute;
  left: -9999px;
}

/* ─── Contactgegevens ───────────────────────────────── */
.contact-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  font-weight: 500;
}
.contact-list a:hover {
  text-decoration: underline;
}
.contact-list svg {
  flex: none;
  color: var(--terracotta);
}

/* ─── Blok met foto naast tekst ─────────────────────── */
.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (min-width: 40rem) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 48rem) {
  .page-hero {
    min-height: 26rem;
  }
  .page-hero__inner {
    padding-block: 10rem 4rem;
  }
}

/* ─── Donateurs (live uit WhyDonate) ────────────────── */
.donors {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}
.donor {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
}
.donor__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.donor__name {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 20;
  font-weight: 600;
  font-size: 1rem;
}
.donor__amount {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--terracotta);
  white-space: nowrap;
}
.donor__message {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ═══════════════════════════════════════════════════════
   Speelse laag — golvende sectieranden, krabbel-onderlijnen
   en kleine kantelingen. Houdt de handgetekende toon van
   het logo vast.
   ═══════════════════════════════════════════════════════ */

/* ─── Golvende overgang tussen twee vlakken ─────────── */
/* De golf hoort bij de sectie waar hij op staat: hij steekt
   met de eigen achtergrondkleur omhoog in het vlak erboven. */
.wave {
  position: relative;
}
.wave::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1.625rem;
  height: 1.75rem;
  z-index: 2;
  pointer-events: none;
  background: var(--wave-bg, var(--cream));
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 28' preserveAspectRatio='none'><path d='M0 13 C12 5 21 20 32 16 C43 12 52 2 64 9 C76 16 85 22 97 15 C109 8 119 4 130 10 C134 12 137 13 140 12 L140 28 L0 28 Z' fill='white'/></svg>") repeat-x bottom / 140px 100%;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 28' preserveAspectRatio='none'><path d='M0 13 C12 5 21 20 32 16 C43 12 52 2 64 9 C76 16 85 22 97 15 C109 8 119 4 130 10 C134 12 137 13 140 12 L140 28 L0 28 Z' fill='white'/></svg>") repeat-x bottom / 140px 100%;
}
.wave--cream    { --wave-bg: var(--cream); }
.wave--cream-2  { --wave-bg: var(--cream-2); }
.wave--forest   { --wave-bg: var(--forest); }
.wave--blush    { --wave-bg: var(--blush); }
.wave--sand     { --wave-bg: var(--sand); }

/* Deze twee knippen hun eigen inhoud af; de golf moet erbuiten kunnen. */
.form-band.wave,
.band.wave {
  overflow: visible;
}

/* ─── Menu: krabbel onder de link ───────────────────── */
.nav a:not(.btn),
.mobile-nav a:not(.btn) {
  position: relative;
  padding-bottom: 0.35rem;
}
.nav a:not(.btn)::after,
.mobile-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1rem;
  height: 0.5rem;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'><path d='M1 5 C 12 1, 22 7, 33 4 S 55 1, 66 5 S 88 8, 99 4' fill='none' stroke='%233ca8ad' stroke-width='2.4' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.nav a:not(.btn):hover::after,
.nav a:not(.btn)[aria-current="page"]::after,
.mobile-nav a:not(.btn):hover::after,
.mobile-nav a:not(.btn)[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ─── Eyebrow: krabbel in plaats van een kaarsrechte lijn ── */
.eyebrow--rule::before {
  width: 2.25rem;
  height: 0.5rem;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'><path d='M1 5 C 12 1, 22 7, 33 4 S 55 1, 66 5 S 88 8, 99 4' fill='none' stroke='%23d2a03c' stroke-width='3' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
}

/* ─── Knoppen krijgen wat veerkracht ────────────────── */
.btn {
  transition: background-color 0.18s ease, color 0.18s ease,
    transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.btn--gold:hover,
.btn--terracotta:hover {
  transform: translateY(-2px) rotate(-1deg);
}
.btn:active {
  transform: translateY(1px) rotate(0deg);
}

/* ─── Logo wiebelt even bij hover ───────────────────── */
a.site-logo:hover {
  transform: translateY(-1px) rotate(-2deg);
}
.site-logo {
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* ─── Kaarten en tegels: klein kantelen ─────────────── */
.card {
  transition: transform 0.22s cubic-bezier(0.34, 1.3, 0.64, 1),
    box-shadow 0.22s ease;
}
.grid-3 > .card:hover {
  transform: translateY(-4px) rotate(-0.6deg);
  box-shadow: 0 10px 24px rgba(28, 26, 21, 0.1);
}
a.tile:hover {
  transform: translateY(-4px) rotate(-0.7deg);
}
.person img {
  transition: transform 0.22s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.person:hover img {
  transform: rotate(-1.5deg) scale(1.02);
}

/* ─── Turquoise als tweede accent ───────────────────── */
.checklist svg {
  color: var(--teal);
}
.contact-list svg {
  color: var(--teal);
}
.donor {
  border-left-color: var(--teal);
}
.statbar svg {
  color: var(--gold);
}
.link-underline:hover {
  color: var(--teal-deep);
}

@media (prefers-reduced-motion: reduce) {
  .btn--gold:hover,
  .btn--terracotta:hover,
  a.site-logo:hover,
  .grid-3 > .card:hover,
  a.tile:hover,
  .person:hover img {
    transform: none;
  }
  .nav a:not(.btn)::after,
  .mobile-nav a:not(.btn)::after {
    transition: none;
  }
}

/* Omgekeerde golf: de kleur van het vlak erbóven zakt naar beneden.
   Gebruikt waar de eigen achtergrond een foto met waas is en de kleur
   dus niet exact te benoemen valt. */
.wave-down {
  position: relative;
}
.wave-down::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1.75rem;
  z-index: 2;
  pointer-events: none;
  background: var(--wave-bg, var(--cream));
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 28' preserveAspectRatio='none'><path d='M0 0 H140 V12 C137 13 134 12 130 10 C119 4 109 8 97 15 C85 22 76 16 64 9 C52 2 43 12 32 16 C21 20 12 5 0 13 Z' fill='white'/></svg>") repeat-x top / 140px 100%;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 28' preserveAspectRatio='none'><path d='M0 0 H140 V12 C137 13 134 12 130 10 C119 4 109 8 97 15 C85 22 76 16 64 9 C52 2 43 12 32 16 C21 20 12 5 0 13 Z' fill='white'/></svg>") repeat-x top / 140px 100%;
}

/* ─── Crowdfundfilm ─────────────────────────────────── */
.film__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--forest);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(28, 26, 21, 0.35);
  transition: transform 0.22s cubic-bezier(0.34, 1.4, 0.64, 1),
    background-color 0.18s ease;
}
.film__play svg {
  margin-left: 3px; /* optisch midden van de driehoek */
}
.film__play:hover {
  background: var(--gold-deep);
  transform: scale(1.07) rotate(-3deg);
}
.film__play:active {
  transform: scale(0.98);
}

/* Zodra de film speelt, valt de band terug op het beeld zelf. */
.film--playing {
  aspect-ratio: 16 / 9;
  background: #000;
}
.film--playing .film__inner,
.film--playing .film__scrim,
.film--playing .hero__media {
  display: none;
}
.film__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

@media (prefers-reduced-motion: reduce) {
  .film__play:hover {
    transform: none;
  }
}
