/* ============================================================
   ROOT & GLOBAL
   ============================================================ */
   :root {
    --black: #000;
    --white: #fff;
    --red: #E91916;
    --red2: #F54748;
    --gray: #F2F2F2;
    --gray2: #2B2B2B;
    --gray3: #3B3B3B;
    --ink: #0b0b0b;
    
    /* Layout */
    --header-safe: 88px;
    --container-max: 1180px;
    --side-padding: 20px;
    --section-gap: 80px;
    --block-gap: 20px;
    --block-radius: 18px;
  }
  
  * { 
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
  }
  
  html { 
    scroll-behavior: smooth; 
  }
  
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.55;
  }
  
  a { 
    color: inherit; 
    text-decoration: none; 
  }
  a:hover { 
    text-decoration: underline; 
  }
  
  /* ============================================================
     CONTAINER — CONSISTENT PADDING
     ============================================================ */
  .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
  }
  
  /* ============================================================
     SECTION SPACING & BACKGROUND
     ============================================================ */
  .section {
    padding: var(--section-gap) 0;
    position: relative;
  }

  /* Zwarte semi-transparante balk achter elke sectie voor rust */
  .section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
  }

  /* Hero heeft geen zwarte balk */
  .hero::before {
    display: none;
  }
  
  .section.tight {
    padding: 60px 0;
  }
  
  /* Anchors onder sticky header */
  .anchor-section {
    scroll-margin-top: var(--header-safe);
  }
  
  /* ============================================================
     FIXED BACKGROUND IMAGES — GEDIMDE OVERLAY
     ============================================================ */
  .bg-stage {
    position: fixed;
    inset: 0;
    z-index: -2;
  }
  
  .bg-layer {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  
  .bg-layer.active { 
    opacity: 1; 
  }
  
  .bg-1 { 
    background-image: url("../assets/images/hero.jpg"); 
  }
  
  .bg-2 { 
    background-image: url("../assets/images/bg_impact.jpg"); 
  }
  
  /* Donkerdere overlay voor meer rust */
  .bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
  }
  
  /* ============================================================
     HEADER — NAVBAR RECHTS UITGELIJND
     ============================================================ */
  .header {
    border: none !important;
    box-shadow: none !important;
  }
  
  .hero-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent !important;
  }
  
  .content-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: transparent !important;
    backdrop-filter: none !important;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .brand img {
    height: 48px;
    width: auto;
    display: block;
  }
  
  /* ================= NAV DESKTOP ================= */
  .nav {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.75);
    overflow: hidden;
  }
  
  .nav a {
    padding: 12px 20px;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
  }
  
  .nav a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.6);
  }
  
  .nav a:hover {
    background: rgba(36, 36, 36, 0.1);
    text-decoration: none;
  }
  
  .nav a.active {
    background: #24242452;
  }
  
  .nav a.cta {
    background: var(--red2);
    color: #fff;
  }
  
  .nav a.cta:hover {
    filter: brightness(0.95);
  }
  
  /* ================= NAV MOBILE ================= */
  .nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(70, 70, 70, 0.85);
    padding: 10px;
    cursor: pointer;
  }
  
  .nav-toggle__bar {
    height: 2px;
    background: #fff;
    margin: 6px 0;
  }
  
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s;
    z-index: 90;
  }
  
  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  
  @media (max-width: 920px) {
    .nav-toggle { 
      display: flex; 
      align-items: center; 
      justify-content: center; 
    }
  
    .nav {
      position: fixed;
      top: 18px;
      left: 18px;
      right: 18px;
      flex-direction: column;
      align-items: stretch;
      transform: translateY(-12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.18s, transform 0.18s;
      z-index: 100;
    }
  
    .nav.is-open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
  
    .nav a {
      text-align: center;
      padding: 16px 18px;
    }
  
    .nav a + a {
      border-left: none;
      border-top: 1px solid rgba(255, 255, 255, 0.6);
    }
  }
  
  /* ============================================================
     HERO STRUCTURE
     ============================================================ */
  .hero {
    min-height: 86vh;
    display: flex;
  }
  
  .hero .wrap {
    padding: calc(64px + var(--header-safe)) 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--block-gap);
    align-items: end;
  }
  
  @media (max-width: 980px) {
    .hero {
      min-height: auto;
    }
    .hero .wrap {
      grid-template-columns: 1fr;
      padding: calc(48px + var(--header-safe)) 0 48px;
    }
  }
  
  /* ============================================================
     GRID SYSTEM — CONSISTENT & EQUAL WIDTHS
     ============================================================ */
  
  /* 2-kolom layout: beide kolommen ALTIJD even breed */
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--block-gap);
  }
  
  /* 3-kolom grid: alle drie even breed */
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--block-gap);
  }
  
  /* Gestackte grid: alles onder elkaar */
  .grid-stack {
    display: flex;
    flex-direction: column;
    gap: var(--block-gap);
    height: 100%;
  }
  
  .grid-stack > * {
    min-height: 0;
  }
  
  /* Projecten + Over ons + Samenwerken: rechter kolom naar beneden uitlijnen */
  #projecten .grid-stack,
  #over-ons .grid-stack,
  #samenwerken .grid-stack {
    justify-content: flex-end;
    gap: 16px;
  }
  
  /* Ruimte tussen de twee rijen */
  .split + .split {
    margin-top: 20px;
  }
  
  /* Responsive: stack op kleinere schermen */
  @media (max-width: 980px) {
    .split {
      grid-template-columns: 1fr;
    }
    
    .grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Tablet: 2 kolommen voor grid */
  @media (min-width: 640px) and (max-width: 980px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* ============================================================
     TYPOGRAPHY
     ============================================================ */
  .kicker {
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.88rem;
    color: var(--red);
    margin-bottom: 12px;
  }
  
  .kicker--white {
    color: var(--white);
  }
  
  h1, h2, h3 {
    margin: 10px 0;
    line-height: 1.05;
  }
  
  h1 { 
    font-size: clamp(2.2rem, 4.6vw, 4.1rem); 
  }
  
  h2 { 
    font-size: clamp(1.6rem, 3vw, 2.5rem); 
  }
  
  h3 { 
    font-size: 1.12rem; 
    font-weight: 600;
  }
  
  p {
    margin: 14px 0;
  }
  
  .lead {
    font-size: 1.04rem;
    line-height: 1.6;
  }
  
  .small { 
    font-size: 0.92rem; 
    opacity: 0.8; 
  }
  
  .headline {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 4.6vw, 4.1rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.02em;
  }
  
  .label {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 8px 14px;
    margin-bottom: 14px;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 0 !important;
  }
  
  .label--red { 
    color: var(--red); 
  }
  
  .accent {
    color: var(--red);
  }
  
  .sep {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 24px 0;
  }
  
  /* Justified text — betere hyphenation */
  .justified {
    text-align: justify;
    hyphens: manual;
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
  }
  
  @media (max-width: 520px) {
    .label { 
      padding: 6px 10px; 
    }
    .headline { 
      font-size: clamp(1.8rem, 8vw, 2.6rem); 
    }
  }
  
  /* ============================================================
     BLOCK COMPONENTS — CONSISTENT PADDING
     ============================================================ */
  .statement,
  .block-black,
  .block-red,
  .block-red2,
  .block-white,
  .block-gray {
    border: none;
    border-radius: var(--block-radius);
    padding: 32px 28px;
  }
  
  /* Compactere variant voor grid-stack items */
  .grid-stack .block-red,
  .grid-stack .block-red2,
  .grid-stack .block-white,
  .grid-stack .block-gray {
    padding: 16px 20px;
  }
  
  .grid-stack h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 1.05rem;
  }
  
  .grid-stack p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
  }
  
  /* Transparant black */
  .statement {
    background: rgba(0, 0, 0, 0.72);
  }
  
  .block-black {
    background: rgba(0, 0, 0, 0.70);
  }
  
  /* Red blocks */
  .block-red {
    background: rgba(233, 25, 22, 0.86);
    color: var(--white);
  }
  
  .block-red2 {
    background: rgba(245, 71, 72, 0.86);
    color: var(--white);
  }
  
  /* Gray block — donkerder voor beter contrast */
  .block-gray {
    background: rgba(242, 242, 242, 0.24);
    color: var(--white);
  }
  
  /* White block */
  .block-white {
    background: rgb(255, 255, 255);
    color: var(--ink);
  }
  
  /* ============================================================
     BUTTONS
     ============================================================ */
  .actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.16);
    transition: all 0.2s ease;
  }
  
  .btn.primary {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
  }
  
  .btn.primary:hover {
    filter: brightness(0.97);
    text-decoration: none;
  }
  
  .btn.dark {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
  }
  
  .btn.dark:hover {
    filter: brightness(1.05);
    text-decoration: none;
  }
  
  /* ============================================================
     GOVERNANCE CARDS — FULLWIDTH BAND (GROTERE FOTO'S)
     ============================================================ */
  .governance-wrap {
    margin-top: var(--block-gap);
    padding: 32px 0;
    background: rgba(0, 0, 0, 0.92);
    border-radius: 0;
  }
  
  .governance-grid {
    max-width: var(--container-max);
    margin: 0 auto 48px;
    padding: 0 var(--side-padding);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--block-gap);
  }
  
  .governance-grid:last-child {
    margin-bottom: 0;
  }
  
  .governance-title { 
    grid-column: 1 / -1;
    margin-bottom: -8px;
  }
  
  @media (max-width: 980px) {
    .governance-grid { 
      grid-template-columns: 1fr; 
    }
  }
  
  @media (min-width: 640px) and (max-width: 980px) {
    .governance-grid { 
      grid-template-columns: repeat(2, 1fr); 
    }
  }
  
  /* Person cards — grotere foto's */
  .person {
    display: flex;
    align-items: center;
    gap: 18px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
  }
  
  .person img {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .person .role {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    margin-top: 4px;
  }
  
  /* ============================================================
     VIDEO BAND
     ============================================================ */
  .video-band {
    margin-top: 60px;
    padding: 32px 0;
    background: rgba(0, 0, 0, 0.92) !important;
  }
  
  .video-panel {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--side-padding);
  }

  /* Video intro tekst — uitvullend */
  .video-intro {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
    text-align: justify;
  }
  
  .video-slider {
    position: relative;
    margin-top: 20px;
  }
  
  .video-viewport {
    overflow: hidden;
    position: relative;
  }
  
  .video-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 24px) / 3);
    gap: 12px;
    transition: transform 0.28s ease;
  }
  
  @media (max-width: 980px) {
    .video-track { 
      grid-auto-columns: calc((100% - 12px) / 2); 
    }
  }
  
  @media (max-width: 640px) {
    .video-track { 
      grid-auto-columns: 100%; 
    }
  }
  
  /* Video navigation arrows */
  .video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.45);
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  
  .video-nav--prev { 
    left: 10px; 
  }
  
  .video-nav--next { 
    right: 10px; 
  }
  
  .video-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  /* Video cards */
  .video-card {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
  }
  
  .video-card h3 {
    margin: 10px 0 0;
    font-size: 1rem;
    font-weight: 700;
  }
  
  .video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 14px;
    background: #000;
  }
  
  /* Video thumbnails - VERBORGEN */
  .video-thumb {
    display: none !important;
  }
  
  .video-thumb img {
    display: none !important;
  }
  
  .video-play {
    display: none !important;
  }
  
  /* ============================================================
     SOCIAL MEDIA ICONS — ROND & KLEINER
     ============================================================ */
  .social-media {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    margin-bottom: 0;
  }

  .social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: transparent; /* Of: rgba(0, 0, 0, 0.1) voor licht grijs */
    transition: all 0.2s ease;
    padding: 8px;
  }
  
  .social-media a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    text-decoration: none;
  }

  .social-media svg {
    width: 100%;
    height: 100%;
    fill: var(--black);
  }

  /* In rechter kolom: bovenaan */
  .grid-stack .social-media {
    order: -1;
    margin-bottom: 16px;
  }

  /* In contact sectie rechter blok: onderaan */
  .block-black .social-media {
    margin-top: 24px;
  }
  
  /* ============================================================
     FORM
     ============================================================ */
  .form {
    display: grid;
    gap: 12px;
    margin-top: 16px;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font: inherit;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }
  
  input::placeholder,
  textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  textarea {
    min-height: 120px;
    resize: vertical;
  }

  /* ============================================================
     DONEREN SECTIE — COMPACT BLOK
     ============================================================ */
  #doneren {
    padding-top: 20px;
  }

  #doneren .block-red2 {
    padding: 20px 24px;
  }

  #doneren h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  #doneren p {
    margin: 8px 0;
    font-size: 0.92rem;
  }
  
  /* ============================================================
     FOOTER — REDESIGN MET RODE BALK
     ============================================================ */
  .footer {
    padding: 0;
    background: var(--black);
    border-top: none;
  }

  .footer-main {
    padding: 48px 0;
    background: rgba(0, 0, 0, 0.9);
  }

  .footer-main .container {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
  }

  @media (max-width: 980px) {
    .footer-main .container { 
      grid-template-columns: 1fr; 
    }
  }

  /* Rode nieuwsbrief balk */
  .footer-newsletter {
    background: var(--red2);
    padding: 32px 0;
  }

  .footer-newsletter .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer-newsletter h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.2rem;
  }

  .newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
  }

  .newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
  }

  .newsletter-form button {
    padding: 12px 32px;
    border-radius: 999px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .newsletter-form button:hover {
    background: white;
    color: var(--red2);
  }

  @media (max-width: 640px) {
    .footer-newsletter .container {
      flex-direction: column;
      align-items: stretch;
    }

    .newsletter-form {
      max-width: 100%;
    }
  }
  
  .badge {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 650;
    font-size: 0.92rem;
  }
  
  /* ============================================================
     VERTICAL SECTION NAVIGATION — MEER WITRUIMTE
     ============================================================ */
  .section-nav {
    position: fixed;
    top: 50%;
    right: 20px; /* Meer witruimte (was 8px) */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 999;
    pointer-events: auto;
  }
  
  .section-nav button {
    position: relative;
    width: auto;
    min-width: 22px;
    height: 22px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-nav button::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    transition: all 0.25s ease;
    flex-shrink: 0;
  }

  /* Label */
  .section-nav button::after {
    content: attr(data-label);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.25s ease;
    pointer-events: none;
  }
  
  .section-nav button:hover::before {
    background: rgba(255, 255, 255, 0.3);
  }

  .section-nav button:hover::after {
    opacity: 1;
    transform: translateX(0);
  }
  
  .section-nav button.is-active::before {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.25);
  }

  .section-nav button.is-active::after {
    color: var(--red);
    opacity: 1;
    transform: translateX(0);
  }

  /* Verberg op kleinere schermen */
  @media (max-width: 1100px) {
    .section-nav {
      display: none;
    }
  }

/* ============================================================
   CUSTOM FIXES
   ============================================================ */

/* Fix voor perfecte alignment Projecten sectie op alle schermgroottes */
#projecten .split {
  display: grid;
  grid-template-columns: 580px 580px;
  gap: 20px;
}

@media (max-width: 1220px) {
  #projecten .split {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   SOCIAL MEDIA & DOTS FIXES
   ============================================================ */

/* Social media BINNEN tekstbreedte houden, rechts uitgelijnd */
.social-media {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  justify-content: flex-end; /* Rechts uitlijnen met tekst */
}

/* Hero rechter blok social media */
.hero .block-black .social-media {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  justify-content: flex-end;
}

/* Grid-stack rechter kolom social media */
.grid-stack .social-media {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  justify-content: flex-end;
}

/* Contact rechter blok social media onderaan */
.block-black .social-media {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  justify-content: flex-end;
}

/* Dots dichter bij blokken */
.section-nav {
  right: 12px;
}

/* Social media afbeeldingen */
.social-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================================
   DESKTOP FIXES - FINAL POLISH
   ============================================================ */

/* 1. Meer witruimte tussen social media iconen en kicker */
.hero .block-black .social-media {
  margin-bottom: 24px; /* Was 16px */
}

.grid-stack .social-media {
  margin-bottom: 24px; /* Was 16px */
}

.block-black .social-media {
  margin-top: 32px; /* Meer ruimte boven in contact sectie */
}

/* 2. Fair Practice Code - compacter en mooier */
.fair-practice-block {
  background: transparent;
  padding: 0;
  grid-column: 1 / -1;
  margin-top: 40px;
}

.fair-practice-block h3 {
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.fair-practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  margin-top: 16px;
}

.fair-practice-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fair-practice-item::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.fair-practice-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .fair-practice-grid {
    grid-template-columns: 1fr;
  }
}

/* 3. Meer witruimte boven tweede rij in secties */
.split + .split {
  margin-top: 40px; /* Was 20px */
}

/* 4. Video intro tekst - max breedte als eerste video */
.video-intro {
  margin-bottom: 20px;
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
  text-align: justify;
  max-width: calc((100% - 24px) / 3); /* Exact breedte van 1 video */
}

@media (max-width: 980px) {
  .video-intro {
    max-width: calc((100% - 12px) / 2);
  }
}

@media (max-width: 640px) {
  .video-intro {
    max-width: 100%;
  }
}

/* 5. Dots dichter bij blokken */
.section-nav {
  right: 8px; /* Was 12px, nu nog dichter */
}

/* ============================================================
   RESPONSIVE IMPROVEMENTS
   ============================================================ */

/* Hamburgermenu zichtbaar maken op mobiel */
@media (max-width: 920px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .nav-toggle__bar {
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 0;
    transition: all 0.3s ease;
  }
}



/* Dots verbergen op tablet/mobiel om overlap te voorkomen */
@media (max-width: 1100px) {
  .section-nav {
    display: none;
  }
}

/* Social media iconen op mobiel */
@media (max-width: 640px) {
  .social-media {
    gap: 8px;
  }

  .social-media a {
    width: 48px;
    height: 48px;
    padding: 10px;
  }
}

/* Fair Practice op mobiel */
@media (max-width: 640px) {
  .fair-practice-grid {
    gap: 12px;
  }

  .fair-practice-item {
    gap: 8px;
  }
}

/* Video intro op mobiel */
@media (max-width: 640px) {
  .video-intro {
    font-size: 0.9rem;
  }
}

/* Doneren sectie op mobiel stacked */
@media (max-width: 980px) {
  #doneren .split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Governance foto's blijven groot genoeg op tablet */
@media (min-width: 640px) and (max-width: 980px) {
  .person img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 640px) {
  .person img {
    width: 80px;
    height: 80px;
  }
  
  .person {
    gap: 12px;
  }
}

/* Padding aanpassingen voor mobiel */
@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }

  .section.tight {
    padding: 40px 0;
  }

  .hero .wrap {
    padding: calc(48px + var(--header-safe)) 0 48px;
  }
}
