/* École Hôtelière Kimbondo v2.0 — Main Stylesheet */


  :root {
    --forest: #1a3d2b;
    --forest-mid: #2d5a3d;
    --forest-light: #3d7a55;
    --gold: #c8940a;
    --gold-light: #f0b429;
    --gold-pale: #fdf3dc;
    --cream: #faf8f2;
    --white: #ffffff;
    --text-dark: #1a1a18;
    --text-mid: #3a3a35;
    --text-muted: #6b6b62;
    --border: rgba(26,61,43,0.12);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); line-height: 1.6; }

  /* NAV */

  /* Nav smooth hide/show on mobile scroll */
  nav {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--forest);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 3rem; height: 68px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  }
  .nav-logo { display: flex; align-items: center; gap: 14px; }
  .nav-logo svg { width: 38px; height: 38px; }
  .nav-logo-text { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; line-height: 1.2; }
  .nav-logo-text span { display: block; color: var(--gold-light); font-size: 0.7rem; font-family: 'DM Sans', sans-serif; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
  .nav-links { display: flex; gap: 2rem; }
  .nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold-light); }


  /* ══════════════════════════════════
     NEW HERO — Full-width photo
  ══════════════════════════════════ */
  .hero {
    position: relative;
    min-height: 100vh;
    padding-top: 68px;
    display: flex;
    flex-direction: column;
    background: var(--forest);
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    filter: brightness(1.15) contrast(1.05) saturate(1.1);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(
        to bottom,
        rgba(15,36,25,0.45) 0%,
        rgba(15,36,25,0.25) 35%,
        rgba(15,36,25,0.60) 70%,
        rgba(15,36,25,0.88) 100%
      );
  }
  .hero-inner {
    position: relative; z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3rem 0;
    min-height: calc(100vh - 68px);
  }
  /* Logo top-center */
  .hero-top {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .hero-logo {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
    animation: fadeDown 0.8s ease both;
  }
  /* Center content */
  .hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    max-width: 820px;
    width: 100%;
  }
  .hero-badge-wrap { margin-bottom: 1.25rem; }
  .hero-chip {
    display: inline-block;
    background: rgba(200,148,10,0.18);
    border: 1px solid rgba(200,148,10,0.55);
    color: #f0b429;
    padding: 6px 18px;
    border-radius: 2px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  /* Organisation name — the star */
  .hero-org-name {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    animation: fadeUp 0.7s 0.2s ease both;
  }
  /* Slogan */
  .hero-slogan-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.75rem;
    animation: fadeUp 0.7s 0.3s ease both;
    width: 100%;
    justify-content: center;
  }
  .hero-slogan-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: rgba(200,148,10,0.6);
  }
  .hero-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: #f0b429;
    letter-spacing: 0.04em;
    margin: 0;
    white-space: nowrap;
  }
  /* Vision summary */
  .hero-vision {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.25rem;
    max-width: 640px;
    animation: fadeUp 0.7s 0.4s ease both;
  }
  /* CTA buttons */
  .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.5s ease both;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--forest);
    text-decoration: none;
    padding: 14px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.2s;
    letter-spacing: 0.03em;
  }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-gold-outline {
    border: 1.5px solid rgba(200,148,10,0.7);
    color: #f0b429;
    text-decoration: none;
    padding: 14px 30px;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 2px;
    transition: all 0.2s;
    letter-spacing: 0.03em;
    background: rgba(200,148,10,0.08);
  }
  .btn-gold-outline:hover {
    background: rgba(200,148,10,0.18);
    border-color: var(--gold-light);
    color: var(--gold-light);
  }
  /* Stats bar at bottom */
  .hero-stats-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(10,28,18,0.72);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(200,148,10,0.2);
    padding: 1.25rem 2rem;
    animation: fadeUp 0.7s 0.6s ease both;
    flex-wrap: wrap;
  }
  .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 2.5rem;
    text-align: center;
  }
  .hero-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
  }
  .hstat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f0b429;
    line-height: 1;
  }
  .hstat-lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  /* Animations */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── HERO RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-org-name { font-size: 3.2rem; }
    .hero-inner { padding: 2rem 2rem 0; }
    .hero-stat { padding: 0.5rem 1.5rem; }
  }
  @media (max-width: 768px) {
    .hero { padding-top: 60px; min-height: 100svh; }
    .hero-inner { padding: 1.5rem 1.25rem 0; min-height: calc(100svh - 60px); }
    .hero-logo { width: 80px; }
    .hero-org-name { font-size: 2.4rem; }
    .hero-slogan { font-size: 1.1rem; white-space: normal; text-align: center; }
    .hero-vision { font-size: 0.9rem; line-height: 1.7; }
    .hero-cta { flex-direction: column; align-items: center; width: 100%; }
    .btn-primary, .btn-gold-outline { width: 100%; max-width: 320px; text-align: center; padding: 14px 20px; }
    .hero-stats-bar { padding: 1rem; gap: 0; }
    .hero-stat { padding: 0.4rem 1rem; }
    .hstat-num { font-size: 1.3rem; }
    .hero-stat-div { height: 28px; }
    .hero-center { padding: 1rem 0.5rem; }
  }
  @media (max-width: 480px) {
    .hero-org-name { font-size: 1.9rem; }
    .hero-slogan { font-size: 0.95rem; }
    .hero-chip { font-size: 0.65rem; letter-spacing: 0.1em; }
    .hero-stats-bar { flex-wrap: wrap; }
    .hero-stat { padding: 0.5rem 0.75rem; min-width: 45%; }
    .hero-stat-div { display: none; }
    .hero-vision br { display: none; }
  }

  /* SECTIONS */
  section { padding: 6rem 5rem; }
  .section-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
  .section-title { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1rem; line-height: 1.2; }
  .section-lead { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; line-height: 1.75; margin-bottom: 3rem; }

  /* ABOUT */
  #apropos { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .about-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
  .about-visual { position: relative; }
  .about-card-big {
    background: var(--forest); color: var(--white); border-radius: 4px;
    padding: 2.5rem; position: relative; overflow: hidden;
  }
  .about-card-big::before {
    content: ''; position: absolute; bottom: -30px; right: -30px;
    width: 120px; height: 120px; border-radius: 50%;
    background: rgba(200,148,10,0.12);
  }
  .about-card-big h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 1rem; }
  .about-card-big p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }
  .highlight-band {
    background: var(--gold-pale); border-left: 4px solid var(--gold);
    padding: 1.25rem 1.5rem; margin-top: 1.5rem; border-radius: 0 4px 4px 0;
  }
  .highlight-band p { color: var(--text-mid); font-size: 0.95rem; font-style: italic; margin: 0; }

  /* APPROACH */
  #approche { background: var(--cream); }
  .three-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .pillar-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 4px; padding: 2rem 1.75rem;
    border-top: 4px solid var(--forest);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .pillar-card:nth-child(2) { border-top-color: var(--gold); }
  .pillar-card:nth-child(3) { border-top-color: var(--forest-light); }
  .pillar-card:hover { box-shadow: 0 8px 30px rgba(26,61,43,0.1); transform: translateY(-3px); }
  .pillar-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.3rem; }
  .pillar-icon.green { background: rgba(26,61,43,0.08); }
  .pillar-icon.gold { background: rgba(200,148,10,0.1); }
  .pillar-icon.teal { background: rgba(61,122,85,0.1); }
  .pillar-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text-dark); }
  .pillar-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

  /* HISTORY TIMELINE */
  #histoire { background: var(--forest); color: var(--white); }
  #histoire .section-title { color: var(--white); }
  #histoire .section-lead { color: rgba(255,255,255,0.65); }
  #histoire .section-label { color: var(--gold-light); }
  .timeline { position: relative; padding-left: 2rem; }
  .timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: rgba(200,148,10,0.3); }
  .timeline-item { position: relative; padding-left: 2.5rem; padding-bottom: 3rem; }
  .timeline-item::before {
    content: ''; position: absolute; left: -0.45rem; top: 6px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--gold); border: 3px solid var(--forest);
    box-shadow: 0 0 0 2px var(--gold);
  }
  .timeline-phase { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; margin-bottom: 0.25rem; }
  .timeline-year { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
  .timeline-title { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 0.5rem; }
  .timeline-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 520px; }
  .timeline-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 0.75rem; }
  .tag { font-size: 0.75rem; padding: 4px 12px; border-radius: 2px; background: rgba(200,148,10,0.15); color: var(--gold-light); border: 1px solid rgba(200,148,10,0.3); }

  /* PROGRAMMES */
  #programmes { background: var(--white); }
  .prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .prog-card {
    background: var(--cream); border: 1px solid var(--border);
    border-radius: 4px; padding: 2rem; position: relative; overflow: hidden;
  }
  .prog-card.featured {
    background: var(--forest); color: var(--white);
    border-color: var(--forest);
  }
  .prog-level { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.75rem; }
  .prog-level.green { color: var(--forest); }
  .prog-level.gold { color: var(--gold); }
  .prog-level.white { color: var(--gold-light); }
  .prog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.75rem; }
  .prog-card.featured h3 { color: var(--white); }
  .prog-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
  .prog-card.featured p { color: rgba(255,255,255,0.7); }
  .prog-features { list-style: none; }
  .prog-features li { font-size: 0.85rem; padding: 5px 0; display: flex; align-items: flex-start; gap: 10px; color: var(--text-mid); }
  .prog-card.featured .prog-features li { color: rgba(255,255,255,0.8); }
  .prog-features li::before { content: '✓'; color: var(--forest); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .prog-card.featured .prog-features li::before { color: var(--gold-light); }

  /* VISION 2026 */
  #vision { background: var(--cream); }
  .vision-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
  .vision-block { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem; }
  .vision-block h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--forest); }
  .vision-block .v-tag { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.75rem; }
  .vision-block p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
  .vision-block ul { list-style: none; }
  .vision-block ul li { font-size: 0.88rem; color: var(--text-mid); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; }
  .vision-block ul li:last-child { border-bottom: none; }
  .vision-block ul li::before { content: '→'; color: var(--gold); font-weight: 600; flex-shrink: 0; }
  .vision-impact {
    background: var(--forest); color: var(--white); border-radius: 4px;
    padding: 2.5rem; margin-top: 2rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  }
  .vision-impact h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
  .vision-impact p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
  .impact-number { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--gold-light); white-space: nowrap; }
  .impact-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-align: right; line-height: 1.4; }

  /* PARTENAIRES */
  #partenaires { background: var(--white); }
  .partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .partner-pill {
    border: 1px solid var(--border); border-radius: 4px; padding: 1.25rem 1rem;
    text-align: center; transition: border-color 0.2s, box-shadow 0.2s;
  }
  .partner-pill:hover { border-color: var(--forest-light); box-shadow: 0 4px 16px rgba(26,61,43,0.08); }
  .partner-pill .p-flag { font-size: 1.5rem; margin-bottom: 6px; }
  .partner-pill p { font-size: 0.8rem; color: var(--text-mid); font-weight: 500; }
  .partner-pill span { font-size: 0.72rem; color: var(--text-muted); }

  /* CTA FOOTER */
  .cta-footer {
    background: var(--forest); color: var(--white);
    padding: 5rem; text-align: center;
  }
  .cta-footer h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1rem; }
  .cta-footer p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }

  footer {
    background: #0f2419; color: rgba(255,255,255,0.45);
    padding: 2rem 5rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem;
  }
  footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
  footer a:hover { color: var(--gold-light); }



  /* DONATION PAGE */
  .amt-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; padding: 12px 8px;
    background: white; border: 1.5px solid var(--border); border-radius: 4px;
    cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  }
  .amt-btn:hover { border-color: var(--forest); background: rgba(26,61,43,0.04); }
  .amt-btn.active { border-color: var(--forest); background: var(--forest); }
  .amt-val { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
  .amt-btn.active .amt-val { color: white; }
  .amt-lbl { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.02em; }
  .amt-btn.active .amt-lbl { color: rgba(255,255,255,0.7); }
  .freq-btn {
    padding: 11px; border: 1.5px solid var(--border); border-radius: 4px;
    background: white; cursor: pointer; font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; color: var(--text-mid); transition: all 0.2s;
  }
  .freq-btn:hover { border-color: var(--forest); }
  .freq-btn.active { border-color: var(--forest); background: var(--forest); color: white; font-weight: 600; }

  /* GALLERY */
  .gal-btn {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7); padding: 8px 20px; border-radius: 2px;
    cursor: pointer; font-size: 0.82rem; font-family: 'DM Sans',sans-serif;
    letter-spacing: 0.04em; transition: all 0.2s;
  }
  .gal-btn:hover, .gal-btn.active { background: #c8940a; border-color: #c8940a; color: #1a3d2b; font-weight: 600; }
  .gal-item {
    position: relative; overflow: hidden; border-radius: 4px;
    cursor: pointer; aspect-ratio: 4/3;
  }
  .gal-item.gal-tall { aspect-ratio: 3/4; }
  .gal-item.gal-wide { grid-column: span 2; aspect-ratio: 16/7; }
  .gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
  .gal-item:hover img { transform: scale(1.05); }
  .gal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,61,43,0.85) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 1rem;
  }
  .gal-item:hover .gal-overlay { opacity: 1; }
  .gal-overlay span { color: white; font-size: 0.85rem; font-weight: 500; }
  .gal-item.hidden { display: none; }

  /* SCROLL ANIMATIONS */
  .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ═══════════════════════════════════════
     RESPONSIVE — TABLETTES (max 1024px)
  ═══════════════════════════════════════ */
  @media (max-width: 1024px) {
    nav { padding: 0 1.5rem; }
    .nav-links { gap: 1.2rem; }
    .nav-links a { font-size: 0.8rem; }

    .hero { grid-template-columns: 1fr; min-height: auto; }

    section { padding: 4rem 2.5rem; }

    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .three-cols { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .prog-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .vision-split { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { padding-left: 1.5rem; }
  }

  /* ═══════════════════════════════════════
     RESPONSIVE — MOBILES (max 768px)
  ═══════════════════════════════════════ */
  @media (max-width: 768px) {

    /* NAV MOBILE */
    nav { padding: 0 1.25rem; height: 60px; position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
    .nav-logo-text { font-size: 0.82rem; }
    .nav-logo-text span { display: none; }
    .nav-links { display: none; }
    .nav-mobile-toggle {
      display: flex !important;
      flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 8px;
    }
    .nav-mobile-toggle span {
      display: block; width: 22px; height: 2px;
      background: white; border-radius: 2px;
      transition: all 0.3s;
    }
    .nav-links.mobile-open {
      display: flex !important;
      flex-direction: column;
      position: fixed; top: 60px; left: 0; right: 0;
      background: var(--forest);
      padding: 1.5rem;
      gap: 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      z-index: 99;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .nav-links.mobile-open a {
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 1rem;
    }
    .nav-links.mobile-open a:last-child { border-bottom: none; }

    /* HERO */
    .hero-content { padding: 3rem 1.5rem 2.5rem; order: 1; }
    .hero-title { font-size: 1.9rem; line-height: 1.2; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-cta { flex-direction: column; gap: 0.75rem; }
    .btn-primary, .btn-outline { text-align: center; padding: 14px 20px; }
    .hero-visual { min-height: 320px; order: 2; }
    .hero-visual-content { padding: 2rem 1.5rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.7rem; }

  
  /* ══════════════════════════════════
     NEW HERO — Full-width photo
  ══════════════════════════════════ */
  .hero {
    position: relative;
    min-height: 100vh;
    padding-top: 68px;
    display: flex;
    flex-direction: column;
    background: var(--forest);
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    filter: brightness(1.15) contrast(1.05) saturate(1.1);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(
        to bottom,
        rgba(15,36,25,0.45) 0%,
        rgba(15,36,25,0.25) 35%,
        rgba(15,36,25,0.60) 70%,
        rgba(15,36,25,0.88) 100%
      );
  }
  .hero-inner {
    position: relative; z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3rem 0;
    min-height: calc(100vh - 68px);
  }
  /* Logo top-center */
  .hero-top {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .hero-logo {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
    animation: fadeDown 0.8s ease both;
  }
  /* Center content */
  .hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    max-width: 820px;
    width: 100%;
  }
  .hero-badge-wrap { margin-bottom: 1.25rem; }
  .hero-chip {
    display: inline-block;
    background: rgba(200,148,10,0.18);
    border: 1px solid rgba(200,148,10,0.55);
    color: #f0b429;
    padding: 6px 18px;
    border-radius: 2px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  /* Organisation name — the star */
  .hero-org-name {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    animation: fadeUp 0.7s 0.2s ease both;
  }
  /* Slogan */
  .hero-slogan-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.75rem;
    animation: fadeUp 0.7s 0.3s ease both;
    width: 100%;
    justify-content: center;
  }
  .hero-slogan-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: rgba(200,148,10,0.6);
  }
  .hero-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: #f0b429;
    letter-spacing: 0.04em;
    margin: 0;
    white-space: nowrap;
  }
  /* Vision summary */
  .hero-vision {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.25rem;
    max-width: 640px;
    animation: fadeUp 0.7s 0.4s ease both;
  }
  /* CTA buttons */
  .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.5s ease both;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--forest);
    text-decoration: none;
    padding: 14px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.2s;
    letter-spacing: 0.03em;
  }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-gold-outline {
    border: 1.5px solid rgba(200,148,10,0.7);
    color: #f0b429;
    text-decoration: none;
    padding: 14px 30px;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 2px;
    transition: all 0.2s;
    letter-spacing: 0.03em;
    background: rgba(200,148,10,0.08);
  }
  .btn-gold-outline:hover {
    background: rgba(200,148,10,0.18);
    border-color: var(--gold-light);
    color: var(--gold-light);
  }
  /* Stats bar at bottom */
  .hero-stats-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(10,28,18,0.72);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(200,148,10,0.2);
    padding: 1.25rem 2rem;
    animation: fadeUp 0.7s 0.6s ease both;
    flex-wrap: wrap;
  }
  .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 2.5rem;
    text-align: center;
  }
  .hero-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
  }
  .hstat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f0b429;
    line-height: 1;
  }
  .hstat-lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  /* Animations */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── HERO RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-org-name { font-size: 3.2rem; }
    .hero-inner { padding: 2rem 2rem 0; }
    .hero-stat { padding: 0.5rem 1.5rem; }
  }
  @media (max-width: 768px) {
    .hero { padding-top: 60px; min-height: 100svh; }
    .hero-inner { padding: 1.5rem 1.25rem 0; min-height: calc(100svh - 60px); }
    .hero-logo { width: 80px; }
    .hero-org-name { font-size: 2.4rem; }
    .hero-slogan { font-size: 1.1rem; white-space: normal; text-align: center; }
    .hero-vision { font-size: 0.9rem; line-height: 1.7; }
    .hero-cta { flex-direction: column; align-items: center; width: 100%; }
    .btn-primary, .btn-gold-outline { width: 100%; max-width: 320px; text-align: center; padding: 14px 20px; }
    .hero-stats-bar { padding: 1rem; gap: 0; }
    .hero-stat { padding: 0.4rem 1rem; }
    .hstat-num { font-size: 1.3rem; }
    .hero-stat-div { height: 28px; }
    .hero-center { padding: 1rem 0.5rem; }
  }
  @media (max-width: 480px) {
    .hero-org-name { font-size: 1.9rem; }
    .hero-slogan { font-size: 0.95rem; }
    .hero-chip { font-size: 0.65rem; letter-spacing: 0.1em; }
    .hero-stats-bar { flex-wrap: wrap; }
    .hero-stat { padding: 0.5rem 0.75rem; min-width: 45%; }
    .hero-stat-div { display: none; }
    .hero-vision br { display: none; }
  }

  /* SECTIONS */
    section { padding: 3rem 1.25rem; }
    .section-title { font-size: 1.8rem; }
    .section-lead { font-size: 0.95rem; }

    /* ABOUT */
    .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    /* APPROACH */
    .three-cols { grid-template-columns: 1fr; }

    /* HISTORY */
    .timeline { padding-left: 1.25rem; }
    .timeline-year { font-size: 1.3rem; }
    .timeline-item { padding-left: 1.75rem; padding-bottom: 2rem; }

    /* PROGRAMMES */
    .prog-grid { grid-template-columns: 1fr; }

    /* PARTNERS */
    .partners-grid { grid-template-columns: 1fr 1fr; }

    /* PHOTO STRIP */
    .photo-strip { grid-template-columns: 1fr !important; height: auto !important; }
    .photo-strip img { height: 220px !important; }

    /* PHOTO BANNER */
    .prog-banner { height: 260px !important; }
    .prog-banner-inner { padding: 2rem 1.5rem !important; }
    .prog-banner h2 { font-size: 1.4rem !important; }

    /* VISION */
    .vision-split { grid-template-columns: 1fr; gap: 1rem; }
    .vision-impact { flex-direction: column; text-align: center; gap: 1rem; }
    .impact-number { font-size: 2.5rem; }
    .vision-photo-grid { grid-template-columns: 1fr !important; }
    .vision-photo-grid img { height: 200px !important; }

    /* GALLERY */
    #gallery-grid { grid-template-columns: 1fr 1fr !important; }
    .gal-item.gal-wide { grid-column: span 2; aspect-ratio: 16/9; }
    #galerie { padding: 3rem 1.25rem !important; }

    /* DONATION PAGE */
    .don-hero { height: 320px !important; }
    .don-hero h1 { font-size: 1.8rem !important; }
    .don-stats { grid-template-columns: 1fr 1fr !important; padding: 1.5rem 1.25rem !important; }
    .don-main { grid-template-columns: 1fr !important; min-height: auto !important; }
    .don-left { padding: 2.5rem 1.25rem !important; border-right: none !important; border-bottom: 1px solid var(--border) !important; }
    .don-right { padding: 2rem 1.25rem !important; }
    .don-other { padding: 3rem 1.25rem !important; }
    .don-other-grid { grid-template-columns: 1fr !important; }
    .don-impact-band { flex-direction: column !important; text-align: center !important; gap: 1rem !important; }
    .don-impact-number { font-size: 2.5rem !important; text-align: center !important; }

    /* CTA FOOTER */
    .cta-footer { padding: 3.5rem 1.5rem !important; }
    .cta-footer h2 { font-size: 1.8rem; }
    .cta-footer > div { flex-direction: column; align-items: center; gap: 0.75rem; }

    /* FOOTER */
    footer { flex-direction: column; gap: 0.75rem; text-align: center; padding: 1.5rem; }

    /* LIGHTBOX */
    #lightbox button[onclick="prevPhoto()"] { left: 0.5rem; }
    #lightbox button[onclick="nextPhoto()"] { right: 0.5rem; }
  }

  /* ═══════════════════════════════════════
     RESPONSIVE — PETITS MOBILES (max 480px)
  ═══════════════════════════════════════ */
  @media (max-width: 480px) {
    .hero-title { font-size: 1.65rem; }
    .hero-badge { font-size: 0.65rem; }
    .section-title { font-size: 1.55rem; }
    nav { height: 56px; }
    .nav-links.mobile-open { top: 56px; }
    .nav-logo img { width: 34px !important; }
    #gallery-grid { grid-template-columns: 1fr !important; }
    .gal-item.gal-wide { grid-column: span 1; }
    .partners-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .amt-btn .amt-val { font-size: 0.9rem; }
    .amt-btn .amt-lbl { font-size: 0.65rem; }
    .don-stats { grid-template-columns: 1fr 1fr !important; }
  }


  @media (max-width: 768px) {
    /* 3-col image strips */
    div[style*="repeat(3,1fr)"][style*="overflow:hidden"],
    div[style*="repeat(3, 1fr)"][style*="overflow:hidden"] {
      grid-template-columns: 1fr !important;
      height: auto !important;
    }
    div[style*="repeat(3,1fr)"][style*="overflow:hidden"] img,
    div[style*="repeat(3, 1fr)"][style*="overflow:hidden"] img {
      height: 200px !important;
    }
    /* Gallery filter buttons */
    #galerie > div:nth-child(2) {
      gap: 0.5rem;
    }
    .gal-btn {
      padding: 7px 12px;
      font-size: 0.75rem;
    }
    /* Amount buttons on mobile */
    #amount-grid {
      grid-template-columns: repeat(3,1fr) !important;
    }
    /* Frequency buttons */
    #freq-grid {
      grid-template-columns: 1fr 1fr !important;
    }
    /* Programs banner */
    div[style*="height:400px"][style*="overflow:hidden"] {
      height: 260px !important;
    }
  }
  @media (max-width: 480px) {
    #amount-grid {
      grid-template-columns: repeat(2,1fr) !important;
    }
  }


  /* ══ CONTACT ══ */
  .subj-btn {
    background: white; border: 1.5px solid var(--border); color: var(--text-mid);
    padding: 7px 14px; border-radius: 20px; cursor: pointer;
    font-size: 0.8rem; font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  }
  .subj-btn:hover { border-color: var(--forest); color: var(--forest); }
  .subj-btn.active { background: var(--forest); border-color: var(--forest); color: white; font-weight: 500; }

  /* ══ BLOG ══ */
  .blog-filter {
    background: white; border: 1.5px solid var(--border); color: var(--text-mid);
    padding: 7px 16px; border-radius: 20px; cursor: pointer;
    font-size: 0.8rem; font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  }
  .blog-filter:hover { border-color: var(--forest); color: var(--forest); }
  .blog-filter.active { background: var(--forest); border-color: var(--forest); color: white; font-weight: 500; }
  .blog-card { transition: box-shadow 0.25s, transform 0.25s; }
  .blog-card:hover { box-shadow: 0 8px 30px rgba(26,61,43,0.12); transform: translateY(-3px); }

  /* ══ CONTACT & BLOG RESPONSIVE ══ */
  @media (max-width: 1024px) {
    #contact > div:first-child { grid-template-columns: 1fr; }
    #blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-featured { grid-column: span 2; }
  }
  @media (max-width: 768px) {
    #contact > div:first-child { grid-template-columns: 1fr; min-height: auto; }
    #blog { padding: 3rem 1.25rem; }
    #blog-grid { grid-template-columns: 1fr !important; }
    .blog-featured { grid-column: span 1 !important; }
    #blog-grid > div:first-child { grid-column: span 1 !important; }
  }

