 * { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #1b1f1b;
      --bg2: #232923;
      --green: #3a5a3a;
      --accent: #7aab5a;
      --white: #ffffff;
      --text: #d8d4cc;
      --muted: rgba(255,255,255,0.5);
      --line: rgba(255,255,255,0.1);
    }
h1.text-secondary.text-4xl.font-extrabold.text-center.mb-6 {
    color: #fff !important;
}
    body {
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.8;
    }
    /* --- NAV --- */
   
    /* --- HERO --- */
    .hero {
      height: 100vh;
      min-height: 580px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, rgba(20,24,20,0.35) 0%, rgba(20,24,20,0.6) 60%, var(--bg) 100%),
        url('https://www.raices.be/wp-content/uploads/2025/12/DSCF9949.jpg') center/cover no-repeat;
    }
    .hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 760px; }
    .hero-tag { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
    .hero h1 {  font-size: clamp(36px, 6vw, 70px); font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 16px; }
    .hero p { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 32px; }
    .btn { display: inline-block; background: var(--accent); color: #1b1f1b; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 14px 34px; text-decoration: none; border-radius: 2px; transition: background 0.2s; }
    .btn:hover { background: #8dc96a; }
    .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); margin-left: 10px; }
    .btn-outline:hover { border-color: #fff; background: transparent; }

    /* --- SECTIONS --- */
    .section { max-width: 800px; margin: 0 auto; padding: 70px 24px; }
    .section-wide { max-width: 960px; margin: 0 auto; padding: 70px 24px; }
    .section-dark { background: var(--bg2); }
    .section-green { background: var(--green); }

    .eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
    h2 {  font-size: clamp(24px, 3.5vw, 38px); font-weight: 400; color: #fff; line-height: 1.3; margin-bottom: 22px; }
    h2 em { font-style: italic; }
    .divider { width: 44px; height: 2px; background: var(--accent); margin: 32px auto; }

    p { color: var(--text); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
    p strong { color: #fff; font-weight: 600; }
    .text-center { text-align: center; }

    .quote {
      border-left: 3px solid var(--accent);
      padding: 18px 24px;
      margin: 28px 0;
      background: rgba(122,171,90,0.06);
    }
    .quote p {  font-style: italic; font-size: 18px; color: #fff; margin: 0; }

    /* --- STATS --- */
    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--line);
      margin: 44px 0;
    }
    .stat { padding: 30px 16px; text-align: center; border-right: 1px solid var(--line); }
    .stat:last-child { border-right: none; }
    .stat-n { display: block;  font-size: 38px; color: var(--accent); line-height: 1; }
    .stat-l { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 7px; }

    /* --- COLLAGE --- */
    .collage { display: flex; flex-direction: column; gap: 6px; }
    .collage .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .collage img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; filter: brightness(0.88); transition: filter 0.4s; }
    .collage img:hover { filter: brightness(1); }

    /* --- IMPACT CARDS --- */
    .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
    .card { padding: 28px 20px; border: 1px solid var(--line); border-top: 2px solid var(--accent); }
    .card-icon { font-size: 24px; margin-bottom: 12px; display: block; }
    .card h3 { font-size: 17px; font-weight: 400; color: #fff; margin-bottom: 8px; }
    .card p { font-size: 14px; color: var(--muted); margin: 0; }

    /* --- FUNDING --- */
    .funding { max-width: 680px; margin: 0 auto; padding: 70px 24px; text-align: center; }
    .fund-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 8px; }
    .fund-raised {  font-size: 28px; color: var(--accent); }
    .fund-goal { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
    .bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
    .bar-inner { height: 100%; background: linear-gradient(90deg, var(--green), var(--accent)); width: 0; animation: grow 2s 0.5s ease forwards; }
    @keyframes grow { to { width: 68%; } }
    .fund-meta { display: flex; justify-content: center; gap: 44px; margin-top: 24px; }
    .fm span:first-child { display: block; font-size: 26px; color: #fff; }
    .fm span:last-child { display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

    /* --- CTA --- */
    .cta { padding: 80px 24px; text-align: center; }
    .cta h2 { color: #fff; margin-bottom: 12px; }
    .cta p { color: rgba(255,255,255,0.7); max-width: 460px; margin: 0 auto 28px; }

    /* --- FOOTER --- */
    footer {
      background: #141814;
      padding: 56px 50px 28px;
    }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-bottom: 44px; border-bottom: 1px solid var(--line); max-width: 1000px; margin: 0 auto; }
    .footer-brand { font-weight: 700; font-size: 20px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
    .footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
    .footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 8px; }
    .footer-col a { font-size: 13px; color: var(--muted); text-decoration: none; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; max-width: 1000px; margin: 0 auto; }
    .footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }

    /* --- SCROLL REVEAL --- */
    .fade { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade.show { opacity: 1; transform: none; }

    /* --- RESPONSIVE --- */
    @media (max-width: 700px) {
      nav { padding: 16px 18px; }
      .nav-links { display: none; }
      .collage .row, .stats, .cards, .footer-grid { grid-template-columns: 1fr; }
      .stat { border-right: none; border-bottom: 1px solid var(--line); }
    }