    :root {
      --navy:        #1a2b5e;
      --navy-dark:   #111d42;
      --navy-mid:    #243580;
      --gold:        #c9a028;
      --gold-light:  #f2ca4c;
      --gold-pale:   #fdf3d0;
      --red:         #b03020;
      --red-hover:   #8e2318;
      --white:       #ffffff;
      --cream:       #faf8f2;
      --gray-light:  #ececec;
      --text:        #18213d;
      --text-muted:  #5a6282;
      --shadow-sm:   0 2px 12px rgba(26,43,94,0.10);
      --shadow-md:   0 6px 28px rgba(26,43,94,0.15);
    }

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

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--cream);
      color: var(--text);
      min-height: 100vh;
    }

    /* HEADER */
    header {
      background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 3px 24px rgba(0,0,0,0.32);
    }

    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 36px;
      gap: 16px;
      flex-wrap: wrap;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 16px;
      cursor: pointer;
      text-decoration: none;
    }

    .logo-img-wrap {
      height: 80px;
      width: 80px;
      flex-shrink: 0;
    }

    /* Key fix: mix-blend-mode:screen removes white baked into the logo on dark bg */
    .logo-img-wrap img {
      height: 80px;
      width: 80px;
      object-fit: contain;
      background: transparent;
      padding: 0;
      border: none;
      border-radius: 0;
      
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    }

    .org-name { display: flex; flex-direction: column; gap: 1px; }

    .org-name .main-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--gold-light);
      line-height: 1.1;
    }

    .org-name .sub-title {
      font-size: 0.76rem;
      color: rgba(255,255,255,0.62);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .header-actions {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-donate-flash {
      background: var(--gold);
      color: var(--navy-dark);
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.88rem;
      padding: 10px 22px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      animation: pulseGold 1.8s ease-in-out infinite;
      transition: transform 0.15s;
    }
    .btn-donate-flash:hover { animation: none; background: var(--gold-light); transform: scale(1.06); }

    @keyframes pulseGold {
      0%   { box-shadow: 0 0 0 0   rgba(201,160,40,0.75); }
      60%  { box-shadow: 0 0 0 12px rgba(201,160,40,0); }
      100% { box-shadow: 0 0 0 0   rgba(201,160,40,0); }
    }

    .btn-call {
      background: var(--red);
      color: var(--white);
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.88rem;
      padding: 10px 22px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: background 0.15s, transform 0.15s;
      box-shadow: 0 2px 10px rgba(176,48,32,0.35);
    }
    .btn-call:hover { background: var(--red-hover); transform: scale(1.05); }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 12px;
      background: rgba(255,255,255,0.08);
      color: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      transition: background 0.18s, border-color 0.18s, transform 0.15s;
    }
    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 2px;
      background: var(--white);
      transition: transform 0.18s, opacity 0.18s;
    }
    .menu-toggle:hover,
    .menu-toggle[aria-expanded="true"] {
      background: rgba(242,202,76,0.16);
      border-color: rgba(242,202,76,0.58);
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* NAV */
    nav {
      background: rgba(0,0,0,0.22);
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .nav-links { display: flex; list-style: none; padding: 0 28px; }
    .nav-links li a {
      display: block;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      font-weight: 700;
      font-size: 0.87rem;
      padding: 12px 20px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-bottom: 3px solid transparent;
      transition: color 0.18s, border-color 0.18s, background 0.18s;
    }
    .nav-links li a:hover,
    .nav-links li a.active {
      color: var(--gold-light);
      border-bottom-color: var(--gold);
      background: rgba(255,255,255,0.04);
    }

    /* PAGES */
    .page { display: none; }
    .page.active { display: block; }

    /* HOME HERO */
    .home-hero {
      min-height: 72vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      background:
      radial-gradient(ellipse at 55% 35%, rgba(201, 160, 40, 0.18) 0%, transparent 60%),
      linear-gradient(160deg, #111d42c2 0%, #1a2b5edb 55%, #243580bd 100%),
      url(../images/gallery/PHOTO-2023-06-18-22-12-58.jpg) center / cover no-repeat;  
      color: white;
      padding: 80px 32px 70px;
      position: relative;
      overflow: hidden;
    }
    .home-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    /* Hero logo — same screen blend trick */
    .hero-logo {
      height: 130px;
      width: 130px;
      object-fit: contain;
      background: transparent;
      border: none;
      padding: 0;
      
      filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
      margin-bottom: 30px;
      position: relative;
      z-index: 1;
    }

    .home-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.15;
      color: white;
      max-width: 680px;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }
    .home-hero h1 em { font-style: normal; color: var(--gold-light); }

    .home-hero p {
      font-size: 1.08rem;
      color: rgba(255,255,255,0.74);
      max-width: 510px;
      line-height: 1.78;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      position: relative;
      z-index: 1;
    }
    .hero-buttons-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* Shared button styles */
    .btn-primary {
      background: var(--gold);
      color: var(--navy-dark);
      font-weight: 800;
      font-size: 0.95rem;
      padding: 13px 30px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: all 0.18s;
      box-shadow: 0 4px 18px rgba(201,160,40,0.42);
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

    .btn-outline {
      background: transparent;
      color: white;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 12px 30px;
      border-radius: 50px;
      border: 2px solid rgba(255,255,255,0.42);
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: all 0.18s;
    }
    .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.09); }

    .btn-help {
      background: var(--red);
      color: white;
      font-weight: 800;
      font-size: 0.95rem;
      padding: 13px 30px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: all 0.18s;
      box-shadow: 0 4px 18px rgba(176,48,32,0.42);
    }
    .btn-help:hover { background: var(--red-hover); transform: translateY(-2px); }

    /* Gold accent bar */
    .gold-bar {
      width: 52px;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 4px;
      margin-bottom: 18px;
    }

    /* Eyebrow label */
    .eyebrow {
      font-size: 0.74rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 800;
      margin-bottom: 8px;
    }

    /* MISSION */
    .mission-section {
      padding: 76px 40px;
      max-width: 1120px;
      margin: 0 auto;
    }

    .section-h {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 3vw, 2.5rem);
      font-weight: 900;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .section-sub {
      font-size: 0.98rem;
      color: var(--text-muted);
      max-width: 510px;
      line-height: 1.78;
      margin-bottom: 48px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 22px;
    }

    .card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      border-left: 4px solid var(--gold);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

    .card-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      flex-shrink: 0;
      transition: transform 0.2s, background 0.2s;
    }
    .card:hover .card-icon {
      transform: scale(1.1) rotate(-3deg);
      background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy) 100%);
    }
    .card-icon i {
      font-size: 28px;
      color: var(--gold-light);
    }

    .community-photo-section {
      margin-top: 54px;
      padding: 30px;
      background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(253,243,208,0.62));
      border: 1px solid rgba(201,160,40,0.22);
      border-radius: 22px;
      box-shadow: var(--shadow-sm);
    }

    .community-photo-copy {
      max-width: 620px;
      margin-bottom: 24px;
    }

    .community-photo-copy h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.35rem, 2.4vw, 2rem);
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .community-photo-copy p {
      color: var(--text-muted);
      line-height: 1.72;
      font-size: 0.98rem;
    }

    .community-photo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .community-photo-grid img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(26,43,94,0.14);
      background: #f6f6f6;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .community-photo-grid img:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(26,43,94,0.2);
    }

    .card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 8px;
      font-weight: 700;
    }
    .card p { color: var(--text-muted); font-size: 0.91rem; line-height: 1.65; }

    /* SERVICES SECTION */
    .services-section {
      background: var(--navy-dark);
      padding: 76px 40px;
    }

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

    .services-section .eyebrow { color: var(--gold-light); }
    .services-section .section-h { color: var(--white); }
    .services-section .section-sub { color: rgba(255,255,255,0.62); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 18px;
    }

    .service-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(201,160,40,0.22);
      border-radius: 14px;
      padding: 22px 22px;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .service-item:hover {
      background: rgba(201,160,40,0.08);
      border-color: rgba(201,160,40,0.5);
      transform: translateY(-3px);
    }

    .service-item--more {
      border-style: dashed;
      border-color: rgba(242,202,76,0.35);
    }

    .service-icon {
      font-size: 2rem;
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      background: rgba(201,160,40,0.12);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-text h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--gold-light);
      margin-bottom: 5px;
    }
    .service-text p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.62);
      line-height: 1.6;
    }

    @media (max-width: 680px) {
      .services-section { padding: 48px 18px; }
      .services-grid { grid-template-columns: 1fr; }
    }

    /* CTA STRIP */
    .cta-strip {
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));
      padding: 64px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(201,160,40,0.13), transparent 65%);
      pointer-events: none;
    }
    .cta-strip h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 900;
      color: white;
      margin-bottom: 12px;
      position: relative;
    }
    .cta-strip h2 em { font-style: normal; color: var(--gold-light); }
    .cta-strip p {
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
      max-width: 450px;
      margin: 0 auto 32px;
      line-height: 1.75;
      position: relative;
    }
    .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

    /* PAGE BANNER (inner pages) */
    .page-banner {
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));
      padding: 52px 40px 44px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-banner::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 24px 24px;
      pointer-events: none;
    }
    .page-banner .eyebrow { color: rgba(242,202,76,0.85); position: relative; z-index:1; }
    .page-banner .gold-bar { margin: 10px auto 16px; }
    .page-banner h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.7rem);
      font-weight: 900;
      color: white;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }
    .page-banner p {
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
      max-width: 490px;
      margin: 0 auto;
      line-height: 1.75;
      position: relative;
      z-index: 1;
    }

    /* INNER CONTENT */
    .inner-wrap { max-width: 900px; margin: 0 auto; padding: 52px 32px 70px; }
    .inner-wrap-wide { max-width: 1100px; margin: 0 auto; padding: 52px 32px 70px; }

    /* Tax box */
    .tax-box {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: var(--gold-pale);
      border: 1.5px solid var(--gold);
      border-radius: 14px;
      padding: 20px 24px;
      margin-bottom: 30px;
    }
    .tax-box .icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
    .tax-box p { font-size: 0.92rem; color: var(--text); line-height: 1.65; }
    .tax-box strong { color: var(--navy); }

    /* Embed cards */
    .embed-card {
      background: white;
      border-radius: 18px;
      box-shadow: var(--shadow-md);
      overflow: hidden;
      border: 1px solid var(--gray-light);
    }
    .embed-card iframe { width: 100%; border: none; display: block; }

    .fallback-link { text-align: center; margin-top: 20px; }
    .fallback-link p { color: var(--text-muted); font-size: 0.87rem; margin-bottom: 10px; }
    .btn-navy {
      display: inline-block;
      background: var(--navy);
      color: white;
      font-weight: 700;
      padding: 11px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      transition: background 0.18s;
    }
    .btn-navy:hover { background: var(--navy-dark); }

    /* FOOTER */
    footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.6);
      text-align: center;
      padding: 44px 32px 36px;
      border-top: 3px solid var(--gold);
    }
    footer > * {
      width: min(80%, 1100px);
      margin-left: auto;
      margin-right: auto;
    }
    footer .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--gold-light);
      font-weight: 900;
      margin-bottom: 8px;
    }
    footer .footer-sep { width: 48px; height: 2px; background: var(--gold); opacity: 0.32; border-radius: 2px; margin: 14px auto; }
    footer p { font-size: 0.86rem; line-height: 1.8; }
    footer a { color: var(--gold-light); text-decoration: none; }
    footer a:hover { text-decoration: underline; }

    /* RESPONSIVE */
    @media (max-width: 680px) {
      header { position: sticky; }
      .header-top { padding: 8px 14px; gap: 10px; flex-wrap: wrap; }
      .logo-area { gap: 10px; min-width: 0; }
      .logo-img-wrap, .logo-img-wrap img { height: 52px; width: 52px; }
      .org-name .main-title { font-size: 1rem; }
      .org-name .sub-title { font-size: 0.62rem; letter-spacing: 0.14em; }
      .header-actions {
        width: 100%;
        margin-left: 0;
        gap: 7px;
        flex-wrap: nowrap;
        justify-content: flex-start;
      }
      .menu-toggle { display: inline-flex; flex-shrink: 0; margin-left: auto; }
      nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 12px;
        width: min(240px, calc(100vw - 24px));
        background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 16px;
        box-shadow: 0 14px 34px rgba(0,0,0,0.34);
        overflow: hidden;
      }
      nav.menu-open { display: block; }
      .nav-links { flex-direction: column; padding: 8px; }
      .nav-links li a { border-bottom: 0; border-radius: 10px; padding: 12px 14px; font-size: 0.78rem; white-space: nowrap; }
      .nav-links li a:hover,
      .nav-links li a.active { border-bottom-color: transparent; }
      .btn-donate-flash, .btn-call { font-size: 0.7rem; padding: 8px 10px; letter-spacing: 0.03em; white-space: nowrap; }
      .home-hero { padding: 56px 20px 48px; }
      .hero-logo { height: 88px; width: 88px; }
      .mission-section, .inner-wrap, .inner-wrap-wide { padding: 38px 18px 56px; }
      .community-photo-section { padding: 22px; margin-top: 36px; }
      .community-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .community-photo-grid img { border-radius: 12px; }
      .page-banner { padding: 40px 20px 34px; }
      .cta-strip { padding: 48px 20px; }
    }
  

    /* GALLERY */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .gallery-card {
      background: var(--white);
      border: 1px solid var(--gray-light);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .gallery-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      display: block;
      background: #f6f6f6;
    }

    .gallery-upload-panel {
      margin-top: 26px;
      background: var(--white);
      border: 1px solid var(--gray-light);
      border-radius: 14px;
      padding: 18px;
      box-shadow: var(--shadow-sm);
    }
    .gallery-upload-panel h2 {
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .gallery-upload-panel p {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 12px;
    }
    .gallery-upload-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .gallery-upload-actions input[type="password"] {
      min-width: 220px;
      border: 1px solid #ccd3e8;
      border-radius: 10px;
      padding: 10px 12px;
      font: inherit;
    }
    .gallery-upload-message {
      margin-top: 10px;
      min-height: 1.2em;
      font-weight: 700;
      color: var(--navy);
    }
