
  :root{
    --navy:#1B2A4A;
    --navy-deep:#131f38;
    --cream:#FBF6EE;
    --amber:#E8A33D;
    --terracotta:#C9553D;
    --sand:#DCD3C3;
    --sand-dim:rgba(220,211,195,0.55);
    --charcoal:#2E2E2E;
    --ink-soft:#4a5163;
    --radius-card:18px;
    --radius-pill:999px;
    --shadow-soft:0 14px 40px rgba(19,31,56,0.10);
    --shadow-strong:0 20px 50px rgba(19,31,56,0.18);
  }

  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; overflow-x:hidden; width:100%; font-size:118%; }
  body{ overflow-x:hidden; width:100%; }
  body{
    margin:0; font-family:'Figtree', sans-serif; background:var(--cream);
    color:var(--charcoal); -webkit-font-smoothing:antialiased;
  }
  a{ text-decoration:none; color:inherit; }
  img{ display:block; max-width:100%; }
  a:focus-visible, button:focus-visible{ outline:2px solid var(--amber); outline-offset:3px; border-radius:2px; }
  .wrap{ max-width:1200px; margin:0 auto; padding:0 1.75rem; }
  h1,h2{ font-family:'Fraunces', serif; margin:0; }
  .eyebrow{
    font-weight:700; font-size:0.78rem; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--terracotta); margin:0 0 0.85rem; display:block;
  }

  .fade-up{ opacity:0; transform:translateY(18px); }
  .fade-up.is-visible{ opacity:1; transform:translateY(0); transition:opacity 0.7s ease, transform 0.7s ease; }
  @media (prefers-reduced-motion: reduce){ .fade-up{ opacity:1; transform:none; transition:none; } }

  /* ================= NAVBAR ================= */
  .nav-wrap{ position:fixed; top:0; left:0; width:100%; z-index:1000; margin-top: -10px; display:flex; justify-content:center; padding-top:1.25rem; pointer-events:none; }
  .navbar{
    pointer-events:auto; width:80%; max-width:1180px; display:flex; align-items:center; justify-content:space-between;
    gap:1.5rem; padding:0.75rem 1.25rem 0.75rem 1rem;
    background:rgba(27,42,74,0.72); backdrop-filter:blur(14px) saturate(140%); -webkit-backdrop-filter:blur(14px) saturate(140%);
    border:1px solid rgba(232,163,61,0.18); border-radius:var(--radius-pill); box-shadow:0 8px 30px rgba(19,31,56,0.18);
    transition:width 0.45s cubic-bezier(.22,1,.36,1), max-width 0.45s cubic-bezier(.22,1,.36,1),
               border-radius 0.45s cubic-bezier(.22,1,.36,1), background 0.45s ease, padding 0.45s ease;
  }
  .navbar.is-scrolled{
    width:100%; max-width:100%; border-radius:0; padding:0.7rem 2.5rem;margin-top: -20px;
    background:rgba(19,31,56,0.92); border-color:transparent; border-bottom:1px solid rgba(232,163,61,0.14);
  }
  .nav-logo{ display:flex; align-items:center; gap:0.6rem; flex-shrink:0; }
  .nav-logo .glyph{
    width:34px; height:34px; border-radius:50%; background:var(--amber); color:var(--navy-deep);
    display:flex; align-items:center; justify-content:center; font-family:'Fraunces', serif; font-weight:700; font-size:1rem; flex-shrink:0;
  }
  /* Alternate logo: swap .glyph + .name for a real image asset, then uncomment
     the <img> in the HTML and this rule.
  .nav-logo-img{ height:34px; width:auto; display:block; }
  */
  .nav-logo .name{ font-family:'Fraunces', serif; font-weight:600; font-size:1.02rem; color:var(--cream); white-space:nowrap; max-width:38vw; overflow:hidden; text-overflow:ellipsis; }
  .nav-links{ display:flex; align-items:center; gap:2rem; list-style:none; margin:0; padding:0; }
  .nav-links a{ position:relative; color:var(--sand); font-size:0.93rem; font-weight:500; padding:0.3rem 0.05rem; transition:color 0.2s ease; }
  .nav-links a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0%; height:2px; background:var(--amber); transition:width 0.25s ease; }
  .nav-links a:hover{ color:var(--cream); }
  .nav-links a:hover::after{ width:100%; }
  .nav-links a.active{ color:var(--cream); }
  .nav-links a.active::after{ width:100%; background:var(--terracotta); }
  .nav-cta{
    display:inline-flex; align-items:center; gap:0.45rem; background:var(--terracotta); color:var(--cream);
    font-weight:600; font-size:0.88rem; padding:0.6rem 1.25rem; border-radius:var(--radius-pill); border:none;
    cursor:pointer; white-space:nowrap; flex-shrink:0; transition:background 0.2s ease, transform 0.15s ease;
  }
  .nav-cta:hover{ background:#b3492f; transform:translateY(-1px); }
  .nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:0.4rem; color:var(--cream); min-width:44px; min-height:44px; align-items:center; justify-content:center; }
  .nav-toggle svg{ width:22px; height:22px; }
  @media (max-width:820px){
    .navbar{ width:92%; padding:0.65rem 0.65rem 0.65rem 0.9rem; }
    .navbar.is-scrolled{ padding:0.6rem 1.1rem; }
    .nav-links{
      position:fixed; top:0; right:0; height:100vh; width:min(78vw,320px); background:var(--navy-deep);
      flex-direction:column; align-items:flex-start; justify-content:center; gap:1.75rem; padding:2rem;
      transform:translateX(100%); transition:transform .35s ease;
    }
    .nav-links.is-open{ transform:translateX(0); }
    .nav-links a{ font-size:1.1rem; }
    .nav-cta{ display:none; }
    .nav-links .mobile-cta{ display:inline-flex; margin-top:0.5rem; }
    .nav-toggle{ display:inline-flex; }
  }
  @media (max-width:400px){
    .navbar{ width:94%; padding:0.6rem 0.55rem 0.6rem 0.75rem; }
    .navbar.is-scrolled{ padding:0.55rem 0.9rem; }
    .nav-logo .glyph{ width:30px; height:30px; font-size:0.9rem; }
    .nav-logo .name{ font-size:0.92rem; max-width:32vw; }
  }

  /* ================= PAGE HEADER ================= */
  .page-header{
    position:relative; padding:10.5rem 0 4rem;
    background:radial-gradient(1000px 460px at 85% -10%, rgba(232,163,61,0.16), transparent 60%),
               linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color:var(--cream); overflow:hidden;
  }
  .page-header::before{
    content:""; position:absolute; inset:0;
    background-image:radial-gradient(rgba(251,246,238,0.05) 1px, transparent 1px);
    background-size:22px 22px; opacity:0.5;
  }
  .page-header .wrap{ position:relative; z-index:1; max-width:680px; }
  .page-header h1{ font-size:clamp(2.1rem, 4.6vw, 3.1rem); font-weight:600; line-height:1.14; margin-bottom:1rem; }
  .page-header p{ color:var(--sand); font-size:1.05rem; line-height:1.75; max-width:52ch; }

  /* ================= EVENT TABS ================= */
  .filters-bar{ padding:2.5rem 0 0; }
  .ev-tabs{ display:flex; gap:0.65rem; flex-wrap:wrap; align-items:center; }
  .ev-tab-btn{
    font-family:'Figtree', sans-serif; font-weight:600; font-size:0.92rem;
    display:inline-flex; align-items:center; gap:0.5rem;
    padding:0.7rem 1.4rem; border-radius:var(--radius-pill);
    border:1.5px solid rgba(27,42,74,0.18); background:#fff; color:var(--navy);
    cursor:pointer; transition:background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .ev-tab-btn:hover{ border-color:var(--amber); }
  .ev-tab-btn.active{ background:var(--navy); color:var(--cream); border-color:var(--navy); }
  .ev-tab-btn .ev-tab-count{
    background:rgba(27,42,74,0.08); color:var(--navy); font-size:0.74rem; font-weight:700;
    padding:0.12rem 0.55rem; border-radius:99px;
  }
  .ev-tab-btn.active .ev-tab-count{ background:rgba(251,246,238,0.2); color:var(--cream); }
  .ev-tabs-hint{ margin-left:auto; font-size:0.85rem; color:var(--ink-soft); }
  @media (max-width:640px){ .ev-tabs-hint{ display:none; } }

  /* ================= EVENT GRID ================= */
  .gallery-section{ padding:2.5rem 0 6rem; }
  .ev-grid{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:1.75rem;
  }
  @media (max-width:1080px){ .ev-grid{ grid-template-columns:repeat(2, 1fr); } }
  @media (max-width:640px){ .ev-grid{ grid-template-columns:1fr; } }

  .ev-card{
    background:#fff; border-radius:var(--radius-card); overflow:hidden;
    box-shadow:var(--shadow-soft); border:1px solid rgba(27,42,74,0.07);
    display:flex; flex-direction:column;
    transition:opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s ease;
  }
  .ev-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-strong); }
  .ev-card.is-hidden{ display:none; }

  .ev-thumb{ position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--sand); }
  .ev-thumb img{ width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
  .ev-card:hover .ev-thumb img{ transform:scale(1.05); }
  .ev-date-badge{
    position:absolute; top:0.9rem; left:0.9rem; background:#fff; border-radius:12px;
    padding:0.45rem 0.7rem; text-align:center; box-shadow:0 6px 16px rgba(19,31,56,0.18); line-height:1.05;
  }
  .ev-date-badge .ev-day{ display:block; font-family:'Fraunces', serif; font-weight:700; font-size:1.15rem; color:var(--terracotta); }
  .ev-date-badge .ev-mon{ display:block; font-size:0.66rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--navy); }
  .ev-status{
    position:absolute; top:0.9rem; right:0.9rem; font-size:0.7rem; font-weight:700; letter-spacing:0.03em;
    padding:0.32rem 0.7rem; border-radius:99px; text-transform:uppercase;
  }
  .ev-status.upcoming{ background:rgba(46,125,91,0.14); color:#2E7D5B; }
  .ev-status.past{ background:rgba(27,42,74,0.12); color:var(--navy); }
  .ev-next-ribbon{
    position:absolute; bottom:0; left:0; right:0; background:linear-gradient(0deg, rgba(19,31,56,0.88), rgba(19,31,56,0));
    color:var(--amber); font-size:0.7rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
    padding:1.6rem 0.9rem 0.6rem;
  }

  .ev-body{ padding:1.5rem 1.5rem 1.75rem; display:flex; flex-direction:column; flex:1; }
  .ev-meta{ display:flex; align-items:center; gap:1rem; flex-wrap:wrap; font-size:0.78rem; color:var(--ink-soft); margin-bottom:0.6rem; }
  .ev-meta span{ display:inline-flex; align-items:center; gap:0.35rem; }
  .ev-meta svg{ width:14px; height:14px; flex-shrink:0; color:var(--terracotta); }
  .ev-card h3{ font-family:'Fraunces', serif; font-size:1.15rem; font-weight:600; color:var(--navy); margin-bottom:0.55rem; line-height:1.3; }
  .ev-card p{ font-size:0.9rem; color:var(--ink-soft); line-height:1.65; margin:0 0 1.25rem; flex:1; }
  .ev-cta{
    display:inline-flex; align-items:center; gap:0.4rem; font-weight:600; font-size:0.87rem; color:var(--terracotta);
    align-self:flex-start; padding-bottom:0.15rem; border-bottom:1.5px solid transparent; transition:border-color 0.2s ease, gap 0.2s ease;
  }
  .ev-cta svg{ width:14px; height:14px; transition:transform 0.2s ease; }
  .ev-cta:hover{ border-color:var(--terracotta); }
  .ev-cta:hover svg{ transform:translateX(3px); }

  .empty-state{
    text-align:center; padding:4rem 1rem; color:var(--ink-soft); display:none;
  }
  .empty-state.show{ display:block; }


  /* ================= DONATE STRIP ================= */
  .cta-strip{ background:var(--navy); color:var(--cream); text-align:center; padding:4rem 0; }
  .cta-strip h2{ color:var(--cream); font-size:clamp(1.5rem,3vw,2.1rem); margin-bottom:0.75rem; }
  .cta-strip p{ color:var(--sand); margin-bottom:1.5rem; }
  .btn-on-dark{
    display:inline-flex; align-items:center; gap:0.5rem; background:var(--amber); color:var(--navy-deep);
    font-weight:600; font-size:0.92rem; padding:0.75rem 1.5rem; border-radius:var(--radius-pill); border:none; cursor:pointer;
    transition:background 0.2s ease, transform 0.15s ease;
  }
  .btn-on-dark:hover{ background:#d4922f; transform:translateY(-1px); }

  /* ================= FOOTER ================= */
  .site-footer{ position:relative; background:linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color:var(--cream); overflow:hidden; padding:5rem 1.5rem 0; }
  .watermark{
    position:absolute; left:50%; bottom:-2.2rem; transform:translateX(-50%); width:100%; text-align:center;
    font-family:'Fraunces', serif; font-weight:600; font-size:clamp(2.6rem, 11vw, 9rem); letter-spacing:-0.01em;
    white-space:nowrap; color:transparent; -webkit-text-stroke:1px rgba(232,163,61,0.16); pointer-events:none; user-select:none; z-index:0;
  }
  .footer-inner{ position:relative; z-index:1; max-width:1240px; margin:0 auto; }
  .footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.15fr; gap:3rem; padding-bottom:3.5rem; border-bottom:1px solid rgba(220,211,195,0.15); }
  @media (max-width:880px){ .footer-grid{ grid-template-columns:1fr 1fr; row-gap:2.75rem; } }
  @media (max-width:540px){ .footer-grid{ grid-template-columns:1fr; } }
  .col-brand{ padding-right:1rem; }
  .brand-mark{ display:flex; align-items:center; gap:0.65rem; margin-bottom:1.1rem; }
  .brand-mark .glyph{
    width:38px; height:38px; border-radius:50%; background:var(--amber); color:var(--navy-deep);
    display:flex; align-items:center; justify-content:center; font-family:'Fraunces', serif; font-weight:700; font-size:1.1rem; flex-shrink:0;
  }
  .brand-mark .name{ font-family:'Fraunces', serif; font-weight:600; font-size:1.15rem; color:var(--cream); }
  .col-brand p.tagline{ font-size:0.95rem; line-height:1.65; color:var(--sand); max-width:30ch; margin:0 0 1.6rem; }
  .social-row{ display:flex; gap:0.65rem; }
  .social-row a{
    width:36px; height:36px; border-radius:50%; border:1px solid rgba(220,211,195,0.3);
    display:flex; align-items:center; justify-content:center; color:var(--sand);
    transition:border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }
  .social-row a:hover{ border-color:var(--amber); color:var(--navy-deep); background:var(--amber); }
  .social-row svg{ width:16px; height:16px; }
  .col-links h3{ font-family:'Fraunces', serif; font-weight:600; font-size:0.85rem; letter-spacing:0.09em; text-transform:uppercase; color:var(--amber); margin:0 0 1.25rem; }
  .col-links ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:0.75rem; }
  .col-links a{ font-size:0.95rem; color:var(--sand); position:relative; transition:color 0.2s ease; }
  .col-links a:hover{ color:var(--cream); }
  .col-links a::before{
    content:""; position:absolute; left:-14px; top:50%; width:5px; height:5px; border-radius:50%;
    background:var(--terracotta); transform:translateY(-50%) scale(0); transition:transform 0.2s ease;
  }
  .col-links a:hover::before{ transform:translateY(-50%) scale(1); }
  .col-contact address{ font-style:normal; font-size:0.95rem; line-height:1.7; color:var(--sand); margin:0 0 1.4rem; }
  .col-contact address a:hover{ color:var(--amber); }
  .footer-donate-btn{
    display:inline-flex; align-items:center; gap:0.5rem; background:var(--terracotta); color:var(--cream);
    font-weight:600; font-size:0.9rem; padding:0.7rem 1.3rem; border-radius:var(--radius-pill); border:none; cursor:pointer;
    transition:background 0.2s ease, transform 0.15s ease;
  }
  .footer-donate-btn:hover{ background:#b3492f; transform:translateY(-1px); }
  .footer-bottom{
    position:relative; z-index:1; max-width:1240px; margin:0 auto; display:flex; align-items:center; justify-content:space-between;
    flex-wrap:wrap; gap:1rem; padding:1.6rem 0 4.5rem; font-size:0.82rem; color:var(--sand-dim);
  }
  .footer-bottom .legal{ display:flex; gap:1.5rem; flex-wrap:wrap; }
  .footer-bottom .legal a:hover{ color:var(--amber); }
  .charity-reg strong{ color:var(--sand); font-weight:600; }
  /* ================= OUTREACH PROGRAMMES ================= */
  .outreach-panel{ display:none; }
  .outreach-panel.is-active{ display:block; }

  .outreach-block{ padding:3rem 0; }
  .outreach-block + .outreach-block{ border-top:1px solid rgba(27,42,74,0.08); }
  .outreach-split{ display:grid; grid-template-columns:1fr 1.05fr; gap:3rem; align-items:center; }
  .outreach-split.reverse{ grid-template-columns:1.05fr 1fr; }
  .outreach-split.reverse .outreach-copy{ order:2; }
  .outreach-split.reverse .outreach-media{ order:1; }
  @media (max-width:900px){
    .outreach-split, .outreach-split.reverse{ grid-template-columns:1fr; }
    .outreach-split.reverse .outreach-copy{ order:1; }
    .outreach-split.reverse .outreach-media{ order:2; }
  }
  .outreach-copy h2{ font-size:clamp(1.5rem,3vw,2rem); font-weight:600; color:var(--navy); margin-bottom:1rem; line-height:1.25; }
  .outreach-copy p{ color:var(--ink-soft); line-height:1.75; font-size:0.97rem; margin-bottom:1rem; }
  .outreach-copy ul{ list-style:none; padding:0; margin:1.25rem 0 0; display:flex; flex-direction:column; gap:0.6rem; }
  .outreach-copy ul li{ display:flex; align-items:flex-start; gap:0.6rem; font-size:0.9rem; color:var(--charcoal); }
  .outreach-copy ul li .dot{ width:7px; height:7px; border-radius:50%; background:var(--terracotta); margin-top:0.5rem; flex-shrink:0; }

  /* Poverty relief 4-image stylized bento grid */
  .poverty-grid{
    display:grid; grid-template-columns:1.3fr 1fr; grid-template-rows:1fr 1fr; gap:0.9rem; height:420px;
  }
  .poverty-grid .pg-item{ border-radius:20px; overflow:hidden; position:relative; box-shadow:var(--shadow-soft); }
  .poverty-grid .pg-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
  .poverty-grid .pg-item:hover img{ transform:scale(1.06); }
  .poverty-grid .pg-main{ grid-row:1 / 3; }
  @media (max-width:600px){ .poverty-grid{ grid-template-columns:1fr 1fr; height:340px; } }

  /* Sponsors carousel (images only auto-slide) */
  .sponsor-carousel{ position:relative; border-radius:24px; overflow:hidden; box-shadow:var(--shadow-strong); aspect-ratio:4/3; background:var(--navy); }
  .sponsor-slide{ position:absolute; inset:0; width:100%; height:100%; opacity:0; visibility:hidden; transition:opacity .9s ease; z-index:0; }
  .sponsor-slide.is-active{ opacity:1; visibility:visible; z-index:1; }
  .sponsor-slide img{ width:100%; height:100%; object-fit:cover; display:block; }
  .sponsor-slide .sponsor-caption{
    position:absolute; left:0; right:0; bottom:0; padding:2rem 1.5rem 1.5rem;
    background:linear-gradient(0deg, rgba(19,31,56,0.92) 0%, rgba(19,31,56,0.5) 60%, rgba(19,31,56,0) 100%);
    color:#fff; z-index:2;
  }
  .sponsor-slide .sponsor-caption b{ display:block; font-family:'Fraunces',serif; font-size:1.05rem; font-weight:600; }
  .sponsor-slide .sponsor-caption span{ font-size:0.78rem; color:var(--sand); }
  .sponsor-dots{ position:absolute; z-index:5; left:0; right:0; bottom:0.9rem; display:flex; justify-content:center; gap:0.5rem; }
  .sponsor-dot{ width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.4); border:none; cursor:pointer; padding:0; transition:background .25s ease, transform .25s ease; }
  .sponsor-dot.is-active{ background:var(--amber); transform:scale(1.3); }
