:root {
      --primary: #0D1635;
      --accent: #C8102E;
      --accent2: #1A4FA0;
      --gold: #F5C800;
      --light: #f5f5f7;
      --muted: #6e6e73;
      --card-bg: #ffffff;
      --gradient: linear-gradient(135deg, #1A4FA0 0%, #0D1635 60%, #0a1128 100%);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: var(--light);
      color: var(--primary);
      line-height: 1.6;
    }

    /* TOPBANNER */
    .topbanner {
      background: var(--accent);
      color: #fff;
      text-align: center;
      padding: 0.6rem 1rem;
      font-size: 0.88rem;
      font-weight: 600;
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .topbanner a {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 3px;
      white-space: nowrap;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 2.2rem; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
      background: rgba(13, 22, 53, 0.92);
      backdrop-filter: blur(12px);
    }

    .nav-logo {
      font-size: 1.6rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
    }

    .nav-logo span { color: var(--gold); }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    nav ul a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    nav ul a:hover { color: var(--gold); }
    nav ul a.nav-active { color: var(--gold); font-weight: 700; }

    .nav-cta {
      background: var(--accent);
      color: #fff !important;
      padding: 0.5rem 1.2rem;
      border-radius: 6px;
      font-weight: 600 !important;
    }

    .nav-cta:hover { background: #a30d24 !important; color: #fff !important; }

    /* HERO */
    .hero {
      min-height: 100vh;
      background: var(--gradient);
      background-image: url('hero.jpeg');
      background-size: cover;
      background-position: center top;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(26,79,160,0.68) 0%, rgba(13,22,53,0.88) 100%);
      z-index: 0;
    }

    .hero > * { position: relative; z-index: 1; }

    .hero::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(242,168,0,0.18) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(242,168,0,0.15);
      border: 1px solid rgba(242,168,0,0.45);
      color: var(--gold);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 20px;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 900;
      color: #fff;
      letter-spacing: -2px;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .hero h1 span { color: var(--gold); }

    .hero-subtitle {
      font-size: clamp(1.1rem, 2.5vw, 1.4rem);
      color: rgba(255,255,255,0.7);
      max-width: 620px;
      margin: 1rem auto 2.5rem;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      padding: 0.85rem 2rem;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      transition: transform 0.2s, background 0.2s;
    }

    .btn-primary:hover { background: #a30d24; transform: translateY(-2px); }

    .btn-secondary {
      background: rgba(255,255,255,0.1);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.3);
      padding: 0.85rem 2rem;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }

    .btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-top: 4rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .stat { text-align: center; }
    .stat-number { font-size: 2.2rem; font-weight: 800; color: #fff; }
    .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

    /* SECTIONS */
    section { padding: 5rem 2rem; }

    .container { max-width: 1100px; margin: 0 auto; }

    .section-label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -1px;
      margin-bottom: 1rem;
    }

    .section-desc {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 600px;
    }

    /* MISSION */
    #missie { background: #fff; }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 3rem;
    }

    .mission-text p {
      font-size: 1.05rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .mission-visual {
      background: var(--gradient);
      border-radius: 16px;
      padding: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .mission-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      color: #fff;
    }

    .mission-icon {
      width: 40px; height: 40px;
      background: rgba(242,168,0,0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .mission-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
    .mission-item p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

    /* DOELSTELLINGEN */
    #doelstellingen { background: var(--light); }

    .goals-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .goal-card {
      background: var(--card-bg);
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 2px 20px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.05);
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .goal-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }

    .goal-number {
      font-size: 0.75rem;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .goal-icon {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }

    .goal-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.6rem;
    }

    .goal-card p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ACTIVITEITEN */
    #activiteiten { background: #fff; }

    .activities-list {
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .activity-item {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1.5rem 2rem;
      background: var(--light);
      border-radius: 12px;
      border-left: 4px solid var(--accent);
      transition: background 0.2s;
    }

    .activity-item:hover { background: #ececec; }

    .activity-emoji { font-size: 1.6rem; }

    .activity-item h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.2rem;
    }

    .activity-item p {
      font-size: 0.88rem;
      color: var(--muted);
    }

    /* INITIATIEFNEMERS */
    #initiatiefnemers { background: linear-gradient(160deg, #0D1635 0%, #1A2B5A 100%); }
    #initiatiefnemers .section-label { color: var(--gold); }
    #initiatiefnemers .section-title { color: #fff; }
    #initiatiefnemers .section-desc  { color: rgba(255,255,255,0.6); }

    .founders-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .founder-card {
      text-align: center;
      padding: 2rem 1.25rem 1.75rem;
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(8px);
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.1);
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      position: relative;
      overflow: hidden;
    }

    .founder-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), #e5b800);
      border-radius: 20px 20px 0 0;
    }

    .founder-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0,0,0,0.35);
      border-color: rgba(245,200,0,0.25);
    }

    .founder-avatar {
      width: 130px; height: 130px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      margin: 0 auto 1.25rem;
      display: block;
      border: 3px solid rgba(245,200,0,0.6);
      box-shadow: 0 0 0 6px rgba(245,200,0,0.08), 0 8px 24px rgba(0,0,0,0.3);
    }

    .founder-card h3 {
      font-size: 1rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.3rem;
    }

    .founder-card p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.5;
    }

    .founder-desc {
      font-size: 0.75rem;
      color: rgba(245,200,0,0.7);
      font-weight: 600;
      margin-top: 0.2rem;
    }

    .founder-li {
      display: inline-block;
      margin-top: 1rem;
      font-size: 0.75rem;
      font-weight: 700;
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: color 0.2s;
      border: 1px solid rgba(255,255,255,0.12);
      padding: 0.3rem 0.85rem;
      border-radius: 20px;
    }
    .founder-li:hover { color: var(--gold); border-color: rgba(245,200,0,0.4); }

    .founder-li:hover { color: var(--accent); }

    @media (max-width: 700px) {
      .founders-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ONDERWIJS */
    #onderwijs { background: var(--light); }

    .edu-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      margin-top: 3rem;
      margin-bottom: 3rem;
    }

    .edu-intro-text p {
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .edu-audience {
      background: var(--gradient);
      border-radius: 16px;
      padding: 2rem;
      color: #fff;
    }

    .edu-audience h4 {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .edu-audience-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.85);
      margin-bottom: 0.65rem;
    }

    .edu-audience-item::before {
      content: '✓';
      color: var(--gold);
      font-weight: 800;
      font-size: 1rem;
    }

    .edu-format {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(242,168,0,0.15);
      border: 1px solid rgba(242,168,0,0.4);
      color: var(--gold);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 0.35rem 0.9rem;
      border-radius: 20px;
      margin-top: 1.25rem;
    }

    .edu-themes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      margin-bottom: 3rem;
    }

    .edu-theme-card {
      background: #fff;
      border-radius: 14px;
      padding: 1.5rem;
      border: 1px solid rgba(0,0,0,0.06);
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .edu-theme-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .edu-theme-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
    .edu-theme-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 0.4rem; }
    .edu-theme-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

    .edu-project {
      background: #fff;
      border-radius: 16px;
      border-left: 5px solid var(--accent);
      padding: 2rem 2.5rem;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }

    .edu-project h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 0.6rem; }
    .edu-project p { font-size: 0.95rem; color: var(--muted); }

    @media (max-width: 900px) {
      .edu-intro { grid-template-columns: 1fr; gap: 2rem; }
      .edu-themes { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .edu-themes { grid-template-columns: 1fr; }
    }

    /* PARTNERS */
    #partners { background: var(--light); }

    .partners-intro {
      margin-top: 3rem;
      margin-bottom: 2rem;
      font-size: 1rem;
      color: var(--muted);
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
    }

    .partner-card {
      background: #fff;
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
      border: 1px solid rgba(0,0,0,0.06);
      transition: box-shadow 0.2s;
    }

    .partner-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

    .partner-icon { font-size: 2rem; margin-bottom: 0.6rem; }
    .partner-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary); }
    .partner-card p { font-size: 0.78rem; color: var(--muted); }

    /* JOIN */
    #meedoen {
      background: var(--gradient);
      text-align: center;
    }

    #meedoen .section-title { color: #fff; }
    #meedoen .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; }

    .join-options {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      max-width: 800px;
      gap: 1.5rem;
      margin: 2.5rem auto;
    }

    .join-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 16px;
      padding: 2rem 1.5rem;
      color: #fff;
      text-align: left;
      transition: background 0.2s;
    }

    .join-card:hover { background: rgba(255,255,255,0.13); }

    .join-card .join-icon { font-size: 2rem; margin-bottom: 1rem; }
    .join-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
    .join-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

    /* CONTACT */
    #contact { background: var(--primary); }

    #contact .section-title { color: #fff; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-top: 3rem;
      align-items: start;
    }

    .contact-info p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }

    .contact-detail-icon {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.08);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      padding: 0.85rem 1rem;
      color: #fff;
      font-size: 0.95rem;
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s;
      resize: none;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }

    .contact-form input:focus,
    .contact-form textarea:focus { border-color: var(--accent); }

    .contact-form textarea { min-height: 130px; }

    /* FOOTER */
    footer {
      background: #060b1a;
      color: rgba(255,255,255,0.4);
      text-align: center;
      padding: 2rem;
      font-size: 0.85rem;
    }

    footer strong { color: rgba(255,255,255,0.7); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .mission-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
      .goals-grid { grid-template-columns: 1fr 1fr; }
      .partners-grid { grid-template-columns: 1fr 1fr; }
      .join-options { grid-template-columns: 1fr; }
      .edu-intro { grid-template-columns: 1fr; gap: 2rem; }
      .edu-themes { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      section { padding: 3.5rem 1.5rem; }

      .hero { padding: 6rem 1.5rem 3rem; }

      .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 340px;
      }

      .btn-primary, .btn-secondary { text-align: center; }

      .mission-visual { padding: 1.5rem; }

      .founders-grid { grid-template-columns: 1fr 1fr; }

      /* Eerste meeting sectie */
      .eerste-meeting-grid {
        grid-template-columns: 1fr !important;
      }
      #eerste-meeting {
        padding: 3rem 1.25rem !important;
      }
      #aanmelden {
        padding: 1.75rem 1.25rem !important;
      }
    }

    /* HAMBURGER & MOBIEL MENU */
    #nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
      flex-shrink: 0;
    }

    #nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.25s;
    }

    #mobile-nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: var(--primary);
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    #mobile-nav-overlay.open { display: flex; }

    #mobile-nav-close {
      position: absolute;
      top: 1.25rem; right: 1.25rem;
      background: rgba(255,255,255,0.1);
      border: none;
      color: #fff;
      font-size: 1.6rem;
      width: 44px; height: 44px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    #mobile-nav-overlay ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
      padding: 0;
      width: 100%;
    }

    #mobile-nav-overlay ul li a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 1.4rem;
      font-weight: 700;
      padding: 0.75rem 2rem;
      display: block;
      text-align: center;
      transition: color 0.2s;
    }

    #mobile-nav-overlay ul li a:hover { color: var(--gold); }

    .mobile-nav-cta {
      background: var(--accent);
      color: #fff !important;
      border-radius: 12px;
      margin-top: 0.5rem;
      padding: 0.9rem 2.5rem !important;
    }

    @media (max-width: 600px) {
      #nav-hamburger { display: flex; }
    }

    @media (max-width: 600px) {
      .topbanner {
        font-size: 0.72rem;
        padding: 0.4rem 0.6rem;
        gap: 0.3rem;
        white-space: nowrap;
        overflow: hidden;
      }
      .banner-blog-link { display: none; }

      nav {
        top: 1.85rem;
        padding: 0.65rem 1rem;
      }

      nav ul { display: none; }

      section { padding: 2.5rem 1rem; }

      .hero {
        padding: 5.5rem 1rem 2.5rem;
      }

      .hero-badge {
        font-size: 0.68rem;
        letter-spacing: 1px;
        padding: 0.3rem 0.75rem;
        white-space: nowrap;
      }

      .goals-grid { grid-template-columns: 1fr; }
      .edu-themes { grid-template-columns: 1fr; }

      .activity-item { padding: 1rem 1rem; gap: 0.75rem; }

      .founders-grid { grid-template-columns: 1fr 1fr; }
      .founder-card { padding: 1.5rem 1rem; }
      .founder-avatar { width: 100px; height: 100px; }
    }

    @media (max-width: 420px) {
      .founders-grid {
        grid-template-columns: 1fr;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 600px) {
      .founders-intro-grid {
        grid-template-columns: 1fr 1fr !important;
      }
      .aanmelding-basis-grid {
        grid-template-columns: 1fr !important;
      }
      #aanmelden {
        padding: 1.5rem 1.25rem !important;
      }
    }
  
    /* Mobiel: korte banner-variant i.p.v. afgekapte lange tekst */
    .banner-short { display: none; }
    @media (max-width: 600px) {
      .banner-full  { display: none; }
      .banner-short { display: inline; }
      .topbanner    { white-space: normal; overflow: visible; }
    }

    /* Subpagina's beginnen direct onder de vaste topbanner + nav; zonder
       deze ruimte valt de eerste kop achter de balk. De home heeft een
       eigen hero die daar al rekening mee houdt. */
    .nav-spacer { height: 8.5rem; }
    @media (max-width: 900px) { .nav-spacer { height: 7rem; } }

    /* Platform en Lidmaatschap uitgelicht in het menu: de twee routes
       waar we bezoekers naartoe willen leiden. */
    nav ul li a.nav-hl {
      color: var(--gold);
      font-weight: 800;
      border: 1.5px solid rgba(245, 200, 0, 0.45);
      border-radius: 9px;
      padding: 0.35rem 0.75rem;
      transition: background 0.2s, color 0.2s;
    }
    nav ul li a.nav-hl:hover {
      background: var(--gold);
      color: var(--primary);
    }
    #mobile-nav-overlay ul li a.nav-hl { color: var(--gold); font-weight: 800; }

    /* Huidige pagina markeren in het menu */
    nav ul li a.actief {
      color: #fff;
      border-bottom: 3px solid var(--gold);
      padding-bottom: 0.15rem;
    }
    nav ul li a.nav-hl.actief {
      background: var(--gold);
      color: var(--primary);
      border-color: var(--gold);
    }
    #mobile-nav-overlay ul li a.actief { color: var(--gold); text-decoration: underline; text-underline-offset: 6px; }

    /* Menu klapt in onder 1024px: negen items passen daaronder niet
       meer naast het logo. */
    @media (max-width: 1024px) {
      nav ul { display: none; }
      #nav-hamburger { display: flex; }
    }
