    :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: 5%; top: 50%; transform: translateY(-50%);
      opacity: 0.06; width: 55vw; max-width: 700px;
    }
    .hero-logo-bg img { width: 100%; filter: brightness(10); }
    .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.5rem; }
    .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; }
    }