/*
 * ============================================================
 * HEEMHUYS - Gedeeld ontwerpsysteem
 * ============================================================
 *
 * GOOGLE FONTS - Kopieer deze link-tags naar de <head> van elke pagina,
 * direct na de <meta charset> en <meta viewport> tags:
 *
 * <link rel="preconnect" href="https://fonts.googleapis.com">
 * <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
 * <link href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Hanken+Grotesk:wght@300;400;500;600&display=swap" rel="stylesheet">
 *
 * Fraunces (optisch, expressief serif) voor koppen
 * Hanken Grotesk (warm, menselijk) voor body
 * ============================================================
 *
 * SIGNATUURELEMENT
 * Een zachte organische boogvorm als sectie-overgang, terugkerende
 * accentlijn in warme terracotta, en ronde hoeken die warmte uitstralen.
 * Passend bij kleinschalige, natuurgerichte kinderopvang.
 * ============================================================
 */

/* ============================================================
   0. CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Palet - afgeleid van logo (warm donkergroen), headerafbeelding (naturel
     beige/leem), en de antroposofisch-warme sfeer van de branche */
  --color-forest:       #3a5a3e;   /* primair donkergroen */
  --color-forest-deep:  #2b4330;   /* hover / diepere variant */
  --color-forest-light: #eef4ee;   /* lichte groentint voor achtergronden */
  --color-terra:        #c47c4a;   /* terracotta accent */
  --color-terra-light:  #f5e8db;   /* lichte terracottawas */
  --color-sand:         #f7f2eb;   /* paginaachtergrond */
  --color-linen:        #efe8dd;   /* kaartachtergrond */
  --color-text:         #2c2920;   /* vrijwel zwart, warm */
  --color-text-muted:   #6b5e50;   /* subtiel */
  --color-white:        #ffffff;
  --color-border:       #ddd4c5;

  /* Typografie */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'Hanken Grotesk', Helvetica, sans-serif;

  /* Typeschaal */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-md:   1.125rem;   /* 18px */
  --text-lg:   1.375rem;   /* 22px */
  --text-xl:   1.75rem;    /* 28px */
  --text-2xl:  2.25rem;    /* 36px */
  --text-3xl:  3rem;       /* 48px */
  --text-4xl:  3.75rem;    /* 60px */
  --text-5xl:  4.75rem;    /* 76px */

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* Layout */
  --container-max:   1140px;
  --container-wide:  1320px;
  --container-narrow: 720px;
  --gutter:          clamp(1.25rem, 4vw, 2.5rem);

  /* Hoeken */
  --radius-sm:   0.375rem;
  --radius-md:   0.75rem;
  --radius-lg:   1.5rem;
  --radius-xl:   2.5rem;
  --radius-full: 9999px;

  /* Schaduwen */
  --shadow-sm: 0 1px 3px rgba(44, 41, 32, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 41, 32, 0.10);
  --shadow-lg: 0 12px 40px rgba(44, 41, 32, 0.13);

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.55s cubic-bezier(0.16, 1, 0.3, 1);

  /* Header hoogte */
  --header-h: 72px;
}

/* ============================================================
   1. RESET EN BASIS
   ============================================================ */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-sand);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
}

/* ============================================================
   2. TYPOGRAFIE
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

h1 {
  font-size: clamp(var(--text-3xl), 6.5vw, var(--text-5xl));
  font-weight: 300;
  line-height: 1.08;
}

h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 300;
}

h3 {
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  font-weight: 400;
}

h4 {
  font-size: var(--text-lg);
  font-weight: 500;
}

h5 {
  font-size: var(--text-md);
  font-weight: 500;
}

p {
  line-height: 1.75;
  color: var(--color-text);
}

p + p {
  margin-top: var(--space-4);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* Eyebrow-label - geen streepje, staat op zichzelf */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terra);
  margin-bottom: var(--space-4);
}

/* Lead-tekst */
.lead {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 60ch;
}

/* ============================================================
   3. LAYOUT HELPERS
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.section--sm {
  padding-block: clamp(var(--space-10), 5vw, var(--space-20));
}

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

.section--sand {
  background-color: var(--color-sand);
}

.section--linen {
  background-color: var(--color-linen);
}

.section--forest {
  background-color: var(--color-forest);
  color: var(--color-white);
}

.section--forest h1,
.section--forest h2,
.section--forest h3,
.section--forest h4,
.section--forest p {
  color: var(--color-white);
}

.section--forest-light {
  background-color: var(--color-forest-light);
}

.section--terra-light {
  background-color: var(--color-terra-light);
}

/* Sectie-overgang: organische bovenrand (signatuurelement) */
.section--wave-top {
  position: relative;
  margin-top: -2px;
}

.section--wave-top::before {
  content: '';
  display: block;
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  height: 50px;
  background: inherit;
  clip-path: ellipse(56% 100% at 50% 100%);
  pointer-events: none;
}

/* Grid hulpen */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: var(--space-10);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--space-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--space-6);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.text-center .lead {
  margin-inline: auto;
}

.mt-4  { margin-top: var(--space-4);  }
.mt-6  { margin-top: var(--space-6);  }
.mt-8  { margin-top: var(--space-8);  }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }

/* ============================================================
   4. HEADER EN NAVIGATIE
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background-color: var(--color-sand);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition-base),
              background-color var(--transition-base);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(247, 242, 235, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo img {
  height: 44px;
  width: auto;
}

/* Desktop navigatie */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.site-nav a {
  display: inline-block;
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition-fast);
}

/* Onderstrepinganimatie voor nav-links */
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: var(--space-3);
  right: var(--space-3);
  height: 1.5px;
  background-color: var(--color-terra);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--transition-base);
}

.site-nav a:hover {
  color: var(--color-forest);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-nav a[aria-current="page"] {
  color: var(--color-forest);
}

/* CTA-knop in header */
.header-cta {
  flex-shrink: 0;
}

/* Hamburger-knop */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition: background-color var(--transition-fast);
}

.nav-toggle:hover {
  background-color: var(--color-linen);
}

.nav-toggle svg {
  pointer-events: none;
}

/* Mobiel menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background-color: var(--color-sand);
  padding: var(--header-h) var(--gutter) var(--space-10);
  overflow-y: auto;
  flex-direction: column;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-8);
}

.mobile-nav a {
  display: block;
  padding: var(--space-4) 0;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-fast),
              padding-left var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--color-forest);
  padding-left: var(--space-3);
}

.mobile-nav a[aria-current="page"] {
  color: var(--color-forest);
}

/* ============================================================
   5. KNOPPEN
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
  will-change: transform;
}

.btn:focus-visible {
  outline: 3px solid var(--color-terra);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.97);
}

/* Primaire knop */
.btn--primary {
  background-color: var(--color-forest);
  color: var(--color-white);
  border-color: var(--color-forest);
}

.btn--primary:hover {
  background-color: var(--color-forest-deep);
  border-color: var(--color-forest-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Secondaire knop */
.btn--secondary {
  background-color: transparent;
  color: var(--color-forest);
  border-color: var(--color-forest);
}

.btn--secondary:hover {
  background-color: var(--color-forest);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Terra accent */
.btn--terra {
  background-color: var(--color-terra);
  color: var(--color-white);
  border-color: var(--color-terra);
}

.btn--terra:hover {
  background-color: #a8663a;
  border-color: #a8663a;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Ghost (wit op donkere achtergrond) */
.btn--ghost {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

/* Klein formaat */
.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

/* ============================================================
   6. HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: clamp(480px, 75vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--color-forest);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Kleuroverlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 67, 48, 0.88) 0%,
    rgba(42, 67, 48, 0.45) 50%,
    rgba(42, 67, 48, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-32));
}

.hero__content h1 {
  color: var(--color-white);
  max-width: 16ch;
}

.hero__content .lead {
  color: rgba(255, 255, 255, 0.85);
  margin-top: var(--space-6);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

/* Organische boogovergang onderaan hero (signatuurelement) */
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 2;
  pointer-events: none;
}

.hero__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================
   7. DIENSTENKAARTEN
   ============================================================ */

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base),
              transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__img img {
  transform: scale(1.04);
}

.card__body {
  padding: var(--space-6) var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__body h3 {
  margin-bottom: var(--space-3);
}

.card__body p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  flex: 1;
}

.card__footer {
  margin-top: var(--space-6);
}

/* Kaart variant: linen achtergrond */
.card--linen {
  background-color: var(--color-linen);
  box-shadow: none;
  border: 1px solid var(--color-border);
}

/* Kaart variant: horizontaal */
.card--horizontal {
  flex-direction: row;
  align-items: stretch;
}

.card--horizontal .card__img {
  width: 40%;
  flex-shrink: 0;
  aspect-ratio: auto;
}

/* Feature-kaart (geen afbeelding, icoon) */
.feature-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base),
              transform var(--transition-base),
              border-color var(--transition-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-terra);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-terra-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  flex-shrink: 0;
  color: var(--color-terra);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ============================================================
   8. TEAM / MENSEN
   ============================================================ */

.person-card {
  text-align: center;
}

.person-card__photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: var(--space-4);
  border: 3px solid var(--color-border);
}

.person-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.person-card:hover .person-card__photo img {
  transform: scale(1.06);
}

.person-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-1);
}

.person-card__role {
  font-size: var(--text-sm);
  color: var(--color-terra);
  font-weight: 500;
}

.person-card__bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}

/* ============================================================
   9. ERVARINGEN (GETUIGENISSEN)
   ============================================================ */

.testimonial {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-8) var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
}

/* Aanhalingsteken als signatuurelement */
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-terra-light);
  pointer-events: none;
  user-select: none;
}

.testimonial__text {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  position: relative;
  z-index: 1;
  padding-top: var(--space-6);
}

.testimonial__author {
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial__author-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-forest);
}

.testimonial__author-meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   10. CONTACTFORMULIER
   ============================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(58, 90, 62, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* Honeypot verborgen veld */
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Statusberichten */
.form-status {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  display: none;
}

.form-status.is-success {
  display: block;
  background-color: var(--color-forest-light);
  color: var(--color-forest-deep);
  border: 1px solid rgba(58, 90, 62, 0.25);
}

.form-status.is-error {
  display: block;
  background-color: #fdf0ef;
  color: #8b2e2e;
  border: 1px solid rgba(139, 46, 46, 0.2);
}

/* ============================================================
   11. SECTIE-HEADER PATROON
   ============================================================ */

.section-header {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.section-header h2 {
  max-width: 18ch;
}

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

.section-header--center h2 {
  margin-inline: auto;
}

/* Splits-layout voor breed scherm */
.section-header--split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-8);
}

.section-header--split h2 {
  flex: 0 0 auto;
  max-width: 16ch;
}

.section-header--split .section-header__aside {
  max-width: 42ch;
}

/* ============================================================
   12. ACCENT-BAND
   ============================================================ */

.accent-band {
  background-color: var(--color-forest);
  color: var(--color-white);
  padding-block: clamp(var(--space-16), 7vw, var(--space-24));
}

.accent-band h2,
.accent-band p {
  color: var(--color-white);
}

.accent-band .lead {
  color: rgba(255, 255, 255, 0.8);
}

/* Statistieken / kerncijfers */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-10);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 300;
  line-height: 1;
  color: var(--color-white);
}

.stat__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ============================================================
   13. DOWNLOADS-LIJST
   ============================================================ */

.download-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.download-item:hover {
  border-color: var(--color-forest);
  box-shadow: var(--shadow-sm);
}

.download-item__info {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.download-item__icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-forest-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-forest);
}

.download-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-item__name {
  font-weight: 500;
  font-size: var(--text-sm);
}

.download-item__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   14. BREADCRUMB
   ============================================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  padding-block: var(--space-5);
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-forest);
}

.breadcrumb__sep {
  color: var(--color-border);
  user-select: none;
}

.breadcrumb__current {
  color: var(--color-text);
}

/* ============================================================
   15. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-forest-deep);
  color: rgba(255, 255, 255, 0.8);
  padding-top: clamp(var(--space-16), 7vw, var(--space-24));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--space-10);
  padding-bottom: var(--space-16);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.footer-col p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-col p + p {
  margin-top: var(--space-3);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-logo {
  display: inline-flex;
  margin-bottom: var(--space-5);
}

.footer-logo img {
  height: 40px;
  width: auto;
  /* Wit filter voor donkere achtergrond */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Onderste balk */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
}

/* Sitify-creditregel */
.footer-credit {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.footer-credit a:hover {
  color: var(--color-white);
}

/* ============================================================
   16. SCROLL-REVEALS (progressive enhancement)
   ============================================================ */

/* Basis-states ALLEEN actief wanneer JS de anim-klasse heeft geplaatst */

html.anim .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

html.anim .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

html.anim .reveal--left {
  transform: translateX(-32px);
  opacity: 0;
}

html.anim .reveal--left.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

html.anim .reveal--right {
  transform: translateX(32px);
  opacity: 0;
}

html.anim .reveal--right.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

html.anim .reveal--scale {
  transform: scale(0.94);
  opacity: 0;
}

html.anim .reveal--scale.is-revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger-vertraging via data-attribuut in HTML: data-delay="1" t/m "5" */
html.anim .reveal[data-delay="1"] { transition-delay: 0.08s; }
html.anim .reveal[data-delay="2"] { transition-delay: 0.16s; }
html.anim .reveal[data-delay="3"] { transition-delay: 0.24s; }
html.anim .reveal[data-delay="4"] { transition-delay: 0.32s; }
html.anim .reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ============================================================
   17. FOCUS EN TOEGANKELIJKHEID
   ============================================================ */

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

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

/* Skip-link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 999;
  background-color: var(--color-forest);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}

/* ============================================================
   18. PREFERS-REDUCED-MOTION
   ============================================================ */

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

  /* Alles direct zichtbaar */
  html.anim .reveal,
  html.anim .reveal--left,
  html.anim .reveal--right,
  html.anim .reveal--scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   19. RESPONSIVE AANPASSINGEN
   ============================================================ */

/* Tablet en kleiner */
@media (max-width: 900px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section-header--split {
    flex-direction: column;
    gap: var(--space-6);
  }

  .card--horizontal {
    flex-direction: column;
  }

  .card--horizontal .card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .stat-row {
    gap: var(--space-8);
  }
}

/* Mobiel */
@media (max-width: 600px) {
  :root {
    --header-h: 64px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial::before {
    font-size: 3.5rem;
  }

  .stat__number {
    font-size: var(--text-3xl);
  }
}

/* Groot scherm */
@media (min-width: 1400px) {
  :root {
    --gutter: 3rem;
  }
}
