
    :root {
      --cream: #F5F0E8;
      --dark: #1a1a1a;
      --teal: #3D7A6F;
      --teal-light: #5A9E92;
      --teal-dark: #2A5A52;
      --gold: #C8922A;
      --gold-light: #E4B860;
      --warm-white: #FDFAF5;
      --text: #2C2C2C;
      --text-muted: #6B6B6B;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Jost', sans-serif; background: var(--warm-white); color: var(--text); }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 3rem;
      background: rgba(253,250,245,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(61,122,111,0.1);
      transition: all 0.3s;
    }
    nav.scrolled { padding: 0.7rem 3rem; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
    .nav-logo { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
    .nav-logo img { height: 52px; width: 52px; object-fit: contain; flex-shrink: 0; }
    .nav-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.2; color: var(--teal-dark); font-weight: 600; letter-spacing: 0.02em; }
    .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
    .nav-links a { text-decoration: none; color: var(--text); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
    .nav-links a:hover { color: var(--teal); }
    .btn-donate-nav {
      background: var(--gold); color: white !important; padding: 0.55rem 1.4rem;
      border-radius: 2px; letter-spacing: 0.1em; transition: background 0.2s !important;
    }
    .btn-donate-nav:hover { background: var(--gold-light) !important; }

    /* HERO */
    .hero {
      min-height: 100vh; position: relative; display: flex; align-items: center;
      background: var(--teal-dark); overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #1e4a44 0%, #2A5A52 40%, #3D7A6F 100%);
    }
    .hero-pattern {
      position: absolute; inset: 0; opacity: 0.04;
      background-image: radial-gradient(circle, white 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .hero-logo-bg {
      position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
      opacity: 0.6; width: 42vw; max-width: 520px;
      pointer-events: none;
      border-radius: 12px;
    }
    .hero-logo-bg img { width: 100%; }
    .hero-content {
      position: relative; z-index: 2; max-width: 700px;
      padding: 9rem 3rem 5rem 8rem;
    }
    .hero-eyebrow {
      display: inline-block; color: var(--gold-light); font-size: 0.72rem;
      letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1.5rem;
      font-weight: 500;
    }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 300; color: white; line-height: 1.05; margin-bottom: 1.8rem;
    }
    .hero h1 span { color: var(--gold-light); font-style: italic; }
    .hero-verse {
      font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: rgba(255,255,255,0.75);
      font-style: italic; line-height: 1.7; margin-bottom: 0.4rem;
    }
    .hero-verse-ref { font-size: 0.78rem; color: var(--gold-light); letter-spacing: 0.1em; margin-bottom: 1.6rem; }
    .hero-desc { color: rgba(255,255,255,0.7); font-size: 0.97rem; line-height: 1.8; max-width: 520px; margin-bottom: 2.5rem; }
    .hero-cta { display: flex; gap: 1.2rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold); color: white; padding: 0.9rem 2.4rem;
      text-decoration: none; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
      font-weight: 500; border-radius: 2px; transition: all 0.25s;
      box-shadow: 0 4px 20px rgba(200,146,42,0.35);
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-outline {
      border: 1px solid rgba(255,255,255,0.4); color: white; padding: 0.9rem 2.4rem;
      text-decoration: none; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
      font-weight: 500; border-radius: 2px; transition: all 0.25s;
    }
    .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.4);
      font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    }
    .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollDrop 2s ease-in-out infinite; }
    @keyframes scrollDrop { 0%,100%{opacity:0;transform:scaleY(0.3) translateY(-10px)} 50%{opacity:1;transform:scaleY(1) translateY(0)} }

    /* MISSION BANNER */
    .mission-banner {
      background: var(--cream); padding: 3rem 4rem; text-align: center;
      border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
    }
    .mission-banner blockquote {
      font-family: 'Cormorant Garamond', serif; font-size: clamp(1.15rem, 2.5vw, 1.6rem);
      font-style: italic; color: var(--teal-dark); line-height: 1.6; max-width: 800px; margin: 0 auto 0.6rem;
    }
    .mission-banner cite { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--gold); }

    /* CONTAINER */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }
    .section-label { display: block; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
    .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; color: var(--teal-dark); line-height: 1.1; }
    .section-title.light { color: white; }
    .divider { width: 50px; height: 2px; background: var(--gold); margin: 1.2rem 0; }

    /* ABOUT */
    #about { padding: 7rem 0; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.1rem; font-size: 0.96rem; }
    .about-visual { display: grid; gap: 1.2rem; }
    .stat-card {
      background: var(--cream); padding: 1.8rem 2rem;
      border-left: 3px solid var(--teal); border-radius: 0 4px 4px 0;
    }
    .stat-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--teal-dark); font-weight: 300; line-height: 1; }
    .stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.3rem; }

    /* SERVE */
    .serve-section { background: var(--teal-dark); padding: 7rem 0; }
    .serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .serve-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 2.2rem; border-radius: 4px; transition: all 0.3s; }
    .serve-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
    .serve-icon { width: 48px; height: 48px; margin-bottom: 1.2rem; }
    .serve-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: white; margin-bottom: 0.7rem; font-weight: 400; }
    .serve-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.75; }

    /* MISSIONS */
    .missions-section { padding: 7rem 0; background: var(--warm-white); }
    .missions-intro { color: var(--text-muted); max-width: 640px; line-height: 1.8; margin-bottom: 3rem; }
    .missions-list { display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--cream); border-radius: 4px; overflow: hidden; }
    .mission-item { display: flex; align-items: center; gap: 1.8rem; padding: 1.8rem 2rem; background: white; border-bottom: 1px solid var(--cream); transition: background 0.2s; }
    .mission-item:hover { background: var(--cream); }
    .mission-flag { font-size: 2.8rem; line-height: 1; min-width: 56px; }
    .mission-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--teal-dark); margin-bottom: 0.3rem; }
    .mission-info p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.6rem; }
    .mission-badge { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 20px; }
    .badge-done { background: rgba(61,122,111,0.12); color: var(--teal); }
    .badge-next { background: rgba(200,146,42,0.15); color: var(--gold); }
    .badge-planned { background: rgba(100,100,100,0.1); color: var(--text-muted); }

    /* STORY */
    .story-section { background: var(--cream); padding: 7rem 0; }
    .story-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
    .story-aside-card { background: var(--teal-dark); padding: 2.5rem; border-radius: 4px; position: sticky; top: 6rem; }
    .story-aside-card blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: white; line-height: 1.65; margin-bottom: 1rem; }
    .story-aside-card cite { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--gold-light); }
    .story-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--teal-dark); font-weight: 400; }
    .story-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; font-size: 0.96rem; }
    .timeline { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
    .timeline-item { display: flex; gap: 1.5rem; align-items: flex-start; }
    .timeline-year { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); font-weight: 600; white-space: nowrap; min-width: 100px; padding-top: 0.1rem; }
    .timeline-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; border-left: 2px solid var(--cream); padding-left: 1.2rem; }

    /* DONATE */
    .donate-section { background: var(--teal-dark); padding: 7rem 0; text-align: center; }
    .donate-content { max-width: 760px; margin: 0 auto; }
    .donate-content p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
    .donate-options { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
    .donate-card {
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
      padding: 1.5rem 1.8rem; text-decoration: none; border-radius: 4px; transition: all 0.25s;
      display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
    }
    .donate-card:hover, .donate-card.active { background: var(--gold); border-color: var(--gold); }
    .donate-amount { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: white; font-weight: 300; }
    .donate-desc { font-size: 0.75rem; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; }
    .donate-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 1.2rem; }

    /* CONTACT */
    .contact-section { padding: 7rem 0; background: var(--warm-white); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; }
    .contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--teal-dark); font-weight: 400; margin-bottom: 0.8rem; }
    .contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; font-size: 0.95rem; }
    .contact-links { display: flex; flex-direction: column; gap: 0.9rem; }
    .contact-link { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; color: var(--text); font-size: 0.9rem; transition: color 0.2s; }
    .contact-link:hover { color: var(--teal); }
    .contact-link-icon { width: 36px; height: 36px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .contact-form input, .contact-form textarea {
      width: 100%; padding: 0.9rem 1.2rem; border: 1px solid #ddd; border-radius: 3px;
      font-family: 'Jost', sans-serif; font-size: 0.9rem; background: white; color: var(--text);
      transition: border-color 0.2s; outline: none;
    }
    .contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal); }
    .contact-form textarea { min-height: 130px; resize: vertical; }
    .contact-form button {
      background: var(--teal-dark); color: white; padding: 0.9rem; border: none; border-radius: 3px;
      font-family: 'Jost', sans-serif; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
      font-weight: 500; cursor: pointer; transition: background 0.2s;
    }
    .contact-form button:hover { background: var(--teal); }

    /* FOOTER */
    footer { background: #111; color: rgba(255,255,255,0.5); text-align: center; padding: 3rem; }
    .footer-logo { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-bottom: 1.5rem; }
    .footer-logo img { height: 44px; width: 44px; object-fit: contain; opacity: 0.7; }
    .footer-logo span { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: rgba(255,255,255,0.5); }
    .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
    .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.1em; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold-light); }
    footer p { font-size: 0.82rem; line-height: 1.7; }
    .footer-verse { font-family: 'Cormorant Garamond', serif; font-style: italic; color: rgba(255,255,255,0.35); margin-top: 0.8rem; font-size: 0.9rem; }

    /* HAMBURGER */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--teal-dark); transition: 0.3s; }

    @media(max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--warm-white); padding: 1.5rem; border-bottom: 1px solid var(--cream); gap: 1.2rem; }
      .nav-links.open { display: flex; }
      .hamburger { display: flex; }
      .hero-content { padding: 8rem 1.5rem 4rem; }
      .hero-logo-bg { display: none; }
      .about-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .serve-grid { grid-template-columns: 1fr 1fr; }
      .container { padding: 0 1.5rem; }
      #about, .serve-section, .missions-section, .story-section, .donate-section, .contact-section { padding: 4.5rem 0; }
    }
    @media(max-width: 600px) {
      .serve-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 2.5rem; }
      .donate-options { gap: 0.6rem; }
      .donate-card { padding: 1.1rem 1.3rem; }
    }

    /* TEAM SECTION */
    .team-section { padding: 7rem 0; background: var(--warm-white); }
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .team-card {
      background: white; border-radius: 6px; overflow: hidden;
      border: 1px solid var(--cream); transition: all 0.3s;
      display: flex; flex-direction: column;
    }
    .team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
    .team-photo {
      width: 100%;
      height: 340px;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .team-photo-placeholder {
      width: 100%;
      height: 340px;
    }
    .team-photo-placeholder {
      width: 100%; aspect-ratio: 3/4;
      background: linear-gradient(135deg, var(--teal-dark), var(--teal));
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 1rem;
    }
    .team-photo-placeholder span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem; color: rgba(255,255,255,0.3); font-weight: 300;
    }
    .team-photo-placeholder p {
      font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: rgba(255,255,255,0.35);
    }
    .team-info { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
    .team-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; color: var(--teal-dark); font-weight: 400;
      margin-bottom: 0.3rem;
    }
    .team-role {
      font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1rem; font-weight: 500;
    }
    .team-bio {
      font-size: 0.875rem; color: var(--text-muted); line-height: 1.8;
      flex: 1;
    }
    .team-divider { width: 35px; height: 2px; background: var(--gold); margin-bottom: 1rem; }

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

    /* NEXT MISSION SPOTLIGHT */
    .next-mission {
      background: var(--teal-dark);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }
    .next-mission::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .next-mission-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative; z-index: 2;
    }
    .next-mission-text .eyebrow {
      font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--gold-light); display: block; margin-bottom: 0.8rem;
    }
    .next-mission-text h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300; color: white; line-height: 1.1;
      margin-bottom: 1rem;
    }
    .next-mission-text h2 em { color: var(--gold-light); font-style: italic; }
    .next-mission-text p {
      color: rgba(255,255,255,0.65);
      font-size: 0.95rem; line-height: 1.8;
      margin-bottom: 1rem;
    }
    .next-mission-date {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: rgba(200,146,42,0.15);
      border: 1px solid rgba(200,146,42,0.3);
      color: var(--gold-light);
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.5rem 1.2rem; border-radius: 20px;
      margin-bottom: 1.5rem;
    }
    .next-mission-needs {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 4px;
      padding: 1.2rem 1.5rem;
      margin-bottom: 1.5rem;
    }
    .next-mission-needs p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 0.5rem;
      font-weight: 500;
      letter-spacing: 0.05em;
    }
    .next-mission-needs span {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
    }
    .next-mission-image-wrap {
      position: relative;
    }
    .next-mission-image-wrap::before {
      content: '';
      position: absolute;
      top: -12px; left: -12px;
      right: 12px; bottom: 12px;
      border: 2px solid var(--gold);
      border-radius: 6px;
      opacity: 0.4;
    }
    .next-mission-image-wrap img {
      width: 100%;
      border-radius: 6px;
      display: block;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      position: relative; z-index: 1;
    }
    .next-mission-badge {
      position: absolute;
      top: 1rem; right: 1rem; z-index: 2;
      background: var(--gold);
      color: white;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.4rem 1rem; border-radius: 20px;
    }

    @media(max-width: 900px) {
      .next-mission-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .next-mission-image-wrap::before { display: none; }
    }

    
    /* Prevent text selection */
    body { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
    /* Allow selection in forms */
    input, textarea { -webkit-user-select: text; -moz-user-select: text; user-select: text; }

    /* FLAG ICONS */


    /* FLAG IMAGES */
    .mission-flag img { width: 48px; height: auto; border-radius: 3px; box-shadow: 0 1px 4px rgba(0,0,0,0.25); }

    /* ── RESPONSIVE ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    img { max-width: 100%; height: auto; }
    
    /* Tablet */
    @media(max-width: 1024px) {
      .hero-content { padding: 8rem 2rem 4rem 4rem; }
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .story-grid { grid-template-columns: 1fr; gap: 3rem; }
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .serve-grid { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .donate-options { flex-wrap: wrap; }
    }

    /* Mobile large */
    @media(max-width: 768px) {
      .hero h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
      .hero-content { padding: 7rem 1.5rem 3rem; }
      .hero-logo-bg { display: none !important; }
      nav { padding: 0.9rem 1.5rem; }
      .container { padding: 0 1.2rem; }
      #about, .serve-section, .missions-section, .story-section, .donate-section, .contact-section, .team-section { padding: 4rem 0; }
      .serve-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 2rem auto 0; }
      .team-photo { height: 300px !important; }
      .next-mission-inner { grid-template-columns: 1fr; }
      .mission-item { gap: 1rem; padding: 1.2rem 1rem; }
      .donate-card { flex: 1 1 130px; }
      .story-aside-card { position: static; }
      .section-title { font-size: clamp(1.8rem, 5vw, 2.5rem); }
    }

    /* Mobile small */
    @media(max-width: 480px) {
      .hero h1 { font-size: 1.9rem; }
      .hero-cta { flex-direction: column; gap: 0.8rem; }
      .btn-primary, .btn-outline { text-align: center; width: 100%; }
      .donate-options { flex-direction: column; align-items: stretch; }
      .donate-card { flex: none; width: 100%; flex-direction: row; justify-content: space-between; align-items: center; }
      .stat-number { font-size: 2.2rem; }
      .mission-banner { padding: 2rem 1.5rem; }
      .gtabs { flex-wrap: wrap; }
      .gtab { flex: 1 1 45%; }
      footer { padding: 2rem 1.5rem; }
      .footer-links { gap: 1rem; }
    }

    /* Security prevent selection */
    body { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
    input, textarea, [contenteditable] { -webkit-user-select: text; -moz-user-select: text; user-select: text; }


    /* DONOR MODAL */
    .donor-modal-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.7);
      z-index: 999; display: none; align-items: center; justify-content: center;
      backdrop-filter: blur(4px);
    }
    .donor-modal-overlay.open { display: flex; }
    .donor-modal {
      background: var(--warm-white); border-radius: 8px;
      padding: 2.5rem; max-width: 480px; width: 90%; position: relative;
      box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    }
    .donor-modal h3 {
      font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
      color: var(--teal-dark); margin-bottom: 0.5rem; font-weight: 400;
    }
    .donor-modal p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.5rem; line-height: 1.6; }
    .donor-modal input {
      width: 100%; padding: 0.85rem 1rem; border: 1px solid #ddd;
      border-radius: 4px; font-family: 'Jost', sans-serif; font-size: 0.9rem;
      margin-bottom: 1rem; outline: none; transition: border-color 0.2s;
      -webkit-user-select: text !important; user-select: text !important;
    }
    .donor-modal input:focus { border-color: var(--teal); }
    .donor-modal-summary {
      background: var(--cream); border-radius: 4px;
      padding: 1rem 1.2rem; margin-bottom: 1.5rem;
      display: flex; justify-content: space-between; align-items: center;
    }
    .donor-modal-summary span { font-size: 0.82rem; color: var(--text-muted); }
    .donor-modal-summary strong { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--teal-dark); }
    .donor-modal-actions { display: flex; gap: 0.8rem; }
    .donor-modal-actions button {
      flex: 1; padding: 0.9rem; border-radius: 4px; border: none;
      font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.2s;
    }
    .btn-modal-cancel { background: var(--cream); color: var(--text-muted); }
    .btn-modal-cancel:hover { background: #e8e0d8; }
    .btn-modal-confirm { background: var(--gold); color: white; }
    .btn-modal-confirm:hover { background: var(--gold-light); }
    .donor-modal-ein {
      font-size: 0.75rem; color: var(--text-muted); text-align: center;
      margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--cream);
    }
    .donor-modal-ein strong { color: var(--teal-dark); }

  