:root {
    --green-950: #062e24;
    --green-900: #0a4938;
    --green-800: #0f5f46;
    --green-700: #177653;
    --green-100: #eaf5ef;
    --orange: #f28a2e;
    --orange-dark: #db6f14;
    --cream: #f8f5ee;
    --cream-2: #fffaf2;
    --ink: #17211d;
    --muted: #6e7772;
    --line: #e8e7e1;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(11, 59, 44, .11);
    --radius-lg: 28px;
    --radius-md: 20px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.topbar { background: var(--green-950); color: rgba(255,255,255,.82); font-size: 13px; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; }
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: #fff; }
.topbar i { color: #f7ad5e; margin-right: 6px; }
.topbar-message { opacity: .82; }

.main-header { background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(8,73,56,.08); position: sticky; top: 0; z-index: 30; transition: box-shadow .25s ease, background .25s ease; backdrop-filter: blur(14px); }
.main-header.is-scrolled { box-shadow: 0 9px 30px rgba(7,48,37,.08); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--orange), #f7b45f); color: #fff; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; box-shadow: 0 8px 22px rgba(242,138,46,.28); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--green-950); }
.brand-copy small { margin-top: 5px; text-transform: uppercase; font-size: 9px; letter-spacing: .19em; font-weight: 700; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.main-nav > a:not(.nav-donate) { position: relative; padding: 32px 0; color: #36423d; }
.main-nav > a:not(.nav-donate)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 23px; height: 2px; background: var(--orange); transition: right .2s ease; }
.main-nav > a:hover::after, .main-nav > a.active::after { right: 0; }
.main-nav > a:hover, .main-nav > a.active { color: var(--green-800); }
.nav-donate { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 13px 19px; border-radius: 999px; box-shadow: 0 8px 18px rgba(242,138,46,.24); transition: transform .2s ease, background .2s ease; }
.nav-donate:hover { background: var(--orange-dark); transform: translateY(-2px); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 10px; background: var(--green-100); padding: 9px; cursor: pointer; }
.menu-toggle span { height: 2px; display: block; background: var(--green-950); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #f9f7f0 0%, #fff 56%, #edf7f1 100%); padding: 70px 0 0; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(15,95,70,.055) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(to bottom, #000, transparent 70%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; background: rgba(242,138,46,.08); left: -220px; top: -240px; }
.hero-glow-two { width: 450px; height: 450px; background: rgba(23,118,83,.09); right: -200px; bottom: 10px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; min-height: 580px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--green-800); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: 11px; }
.eyebrow span { width: 24px; height: 2px; background: var(--orange); border-radius: 2px; }
.eyebrow.dark { color: var(--green-800); }
.eyebrow.light { color: #b8dfcf; }
.eyebrow.centered { justify-content: center; }
.hero h1, .section h2 { font-family: 'Playfair Display', serif; color: var(--green-950); letter-spacing: -.035em; line-height: 1.08; margin: 17px 0 20px; }
.hero h1 { font-size: clamp(46px, 5.2vw, 72px); max-width: 720px; }
.hero h1 em, .section h2 em { color: var(--orange); font-style: italic; font-weight: 600; }
.hero-copy > p { max-width: 640px; color: #626e69; font-size: 17px; margin: 0 0 28px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border-radius: 999px; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 12px 25px rgba(242,138,46,.26); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-light { background: #fff; color: var(--green-950); box-shadow: 0 10px 30px rgba(20,46,37,.08); }
.play-dot { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--green-100); color: var(--green-800); }
.hero-assurance { display: flex; gap: 26px; margin-top: 32px; flex-wrap: wrap; }
.assurance-item { display: flex; align-items: center; gap: 10px; }
.assurance-item > i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #e7f4ed; color: var(--green-700); font-size: 16px; }
.assurance-item span { display: flex; flex-direction: column; line-height: 1.25; }
.assurance-item strong { font-size: 13px; color: var(--green-950); }
.assurance-item small { font-size: 11px; color: #7c8883; margin-top: 3px; }
.hero-visual { position: relative; min-height: 550px; display: flex; align-items: center; justify-content: flex-end; }
.hero-image-card { width: 88%; height: 520px; border-radius: 44px 44px 44px 130px; overflow: hidden; position: relative; box-shadow: 0 35px 70px rgba(15,78,58,.2); border: 8px solid rgba(255,255,255,.78); }
.hero-image-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; }
.hero-image-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,41,31,.74), transparent 47%); }
.hero-image-caption { position: absolute; left: 34px; right: 34px; bottom: 28px; color: #fff; display: flex; flex-direction: column; }
.hero-image-caption span { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; opacity: .75; font-weight: 700; }
.hero-image-caption strong { font-family: 'Playfair Display', serif; margin-top: 7px; font-size: 22px; line-height: 1.2; max-width: 320px; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,.96); border: 1px solid rgba(17,85,63,.08); padding: 13px 15px; border-radius: 15px; box-shadow: var(--shadow); z-index: 3; min-width: 214px; }
.floating-card div { display: flex; flex-direction: column; line-height: 1.25; }
.floating-card strong { font-size: 12px; color: var(--green-950); }
.floating-card small { font-size: 10px; color: #7a8782; margin-top: 3px; }
.floating-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: #fff0e1; color: var(--orange); }
.floating-icon.green { background: #e7f4ed; color: var(--green-700); }
.fc-one { left: -15px; top: 105px; }
.fc-two { right: -16px; bottom: 76px; }
.trust-strip { position: relative; z-index: 4; margin-top: 55px; background: #fff; min-height: 112px; border-radius: 22px 22px 0 0; box-shadow: 0 -12px 40px rgba(8,57,42,.07); display: grid; grid-template-columns: 1.05fr repeat(4, 1fr); align-items: center; padding: 20px 28px; gap: 12px; }
.trust-strip-title { font-family: 'Playfair Display', serif; color: var(--green-950); font-size: 18px; padding-right: 18px; border-right: 1px solid var(--line); }
.trust-chip { display: flex; align-items: center; gap: 10px; padding-left: 10px; min-width: 0; }
.trust-chip > i { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 10px; background: var(--green-100); color: var(--green-700); }
.trust-chip span { display: flex; flex-direction: column; min-width: 0; font-size: 10px; color: #8a928e; line-height: 1.25; }
.trust-chip strong { color: var(--green-950); font-size: 11px; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.section { padding: 105px 0; }
.section h2 { font-size: clamp(39px, 4.3vw, 57px); }
.section-about { background: #fff; }
.about-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: 90px; align-items: center; }
.about-visual { min-height: 545px; position: relative; }
.about-image-main { width: 88%; height: 500px; overflow: hidden; border-radius: 30px 110px 30px 30px; box-shadow: var(--shadow); }
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-card { position: absolute; right: 0; bottom: 33px; width: 280px; background: var(--green-950); color: #fff; border-radius: 18px; padding: 18px; display: flex; gap: 14px; align-items: center; box-shadow: 0 16px 40px rgba(6,46,36,.28); }
.stat-icon { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 14px; background: var(--orange); font-size: 21px; }
.about-stat-card div { display: flex; flex-direction: column; line-height: 1.3; }
.about-stat-card strong { font-family: 'Playfair Display', serif; font-size: 17px; }
.about-stat-card small { color: rgba(255,255,255,.66); font-size: 10px; margin-top: 5px; }
.about-dots { position: absolute; width: 120px; height: 100px; right: 16px; top: 12px; opacity: .24; background-image: radial-gradient(var(--green-800) 1.6px, transparent 1.6px); background-size: 12px 12px; }
.about-copy .lead { color: #3e4b46; font-size: 17px; font-weight: 500; }
.about-copy p { color: var(--muted); }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin: 28px 0 24px; }
.about-points > div { display: flex; gap: 10px; }
.about-points i { color: var(--orange); font-size: 18px; margin-top: 2px; }
.about-points span { display: flex; flex-direction: column; line-height: 1.35; }
.about-points strong { font-size: 13px; color: var(--green-950); }
.about-points small { font-size: 11px; color: #7d8782; margin-top: 4px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-800); font-weight: 800; font-size: 13px; border-bottom: 1px solid rgba(15,95,70,.22); padding-bottom: 4px; }

.section-programs { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 50px; align-items: end; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { color: var(--muted); margin: 0 0 8px; }
.section-heading.center { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; max-width: 760px; margin: 0 auto 48px; }
.section-heading.center > p { max-width: 650px; margin: 0 auto; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.program-card { position: relative; overflow: hidden; background: #fff; border: 1px solid #ece9e0; border-radius: 20px; padding: 28px; min-height: 275px; box-shadow: 0 10px 30px rgba(14,68,51,.04); transition: transform .25s ease, box-shadow .25s ease, border .25s ease; transition-delay: var(--delay, 0ms); }
.program-card:hover { transform: translateY(-7px); box-shadow: 0 22px 44px rgba(14,68,51,.1); border-color: rgba(23,118,83,.18); }
.program-number { position: absolute; right: 20px; top: 18px; font-family: 'Playfair Display', serif; color: #ecebe5; font-size: 40px; font-weight: 700; }
.program-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: var(--green-100); color: var(--green-700); font-size: 23px; }
.program-card:nth-child(2n) .program-icon { background: #fff0e1; color: var(--orange); }
.program-card h3 { margin: 22px 0 10px; font-family: 'Playfair Display', serif; color: var(--green-950); font-size: 20px; }
.program-card p { margin: 0; color: var(--muted); font-size: 13px; }
.program-arrow { position: absolute; right: 22px; bottom: 20px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #f5f5f1; color: var(--green-800); transition: background .2s ease, color .2s ease; }
.program-card:hover .program-arrow { background: var(--green-800); color: #fff; }

.section-work { background: var(--green-950); color: #fff; overflow: hidden; }
.section-work h2 { color: #fff; }
.work-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.work-copy > p { color: rgba(255,255,255,.66); max-width: 560px; }
.work-list { margin-top: 32px; border-top: 1px solid rgba(255,255,255,.12); }
.work-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); align-items: start; }
.work-list > div > span { color: #f3aa5b; font-family: 'Playfair Display', serif; font-weight: 700; }
.work-list p { margin: 0; display: flex; flex-direction: column; line-height: 1.35; }
.work-list strong { font-size: 14px; }
.work-list small { color: rgba(255,255,255,.56); font-size: 11px; margin-top: 4px; }
.work-visual { position: relative; min-height: 560px; }
.work-photo { overflow: hidden; position: absolute; box-shadow: 0 24px 55px rgba(0,0,0,.22); }
.work-photo img { width: 100%; height: 100%; object-fit: cover; }
.work-photo-main { width: 72%; height: 500px; right: 0; top: 15px; border-radius: 34px 34px 110px 34px; }
.work-photo-small { width: 42%; height: 260px; left: 0; bottom: 5px; border: 7px solid var(--green-950); border-radius: 25px; }
.work-badge { position: absolute; left: 16%; top: 66px; z-index: 3; width: 135px; height: 135px; border-radius: 50%; background: var(--orange); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 15px 32px rgba(242,138,46,.28); }
.work-badge i { font-size: 25px; }
.work-badge span { margin-top: 5px; font-size: 11px; line-height: 1.2; }
.work-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 18px; }

.section-certifications { background: #fff; }
.certificate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.certificate-card { border: 1px solid var(--line); border-radius: 20px; padding: 28px 22px; min-height: 250px; position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.certificate-card::after { content: ''; position: absolute; width: 100px; height: 100px; border-radius: 50%; right: -34px; bottom: -40px; background: var(--green-100); opacity: .65; }
.certificate-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.certificate-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--cream); color: var(--orange); font-size: 20px; }
.certificate-card > small { display: block; margin-top: 22px; color: var(--green-700); text-transform: uppercase; font-size: 9px; letter-spacing: .12em; font-weight: 800; }
.certificate-card h3 { margin: 6px 0 18px; font-family: 'Playfair Display', serif; color: var(--green-950); font-size: 19px; line-height: 1.25; }
.certificate-card p { margin: 0; color: #8d9691; font-size: 11px; }
.certificate-card > strong { display: block; margin-top: 4px; color: var(--green-800); font-size: 12px; }

.section-volunteer { padding-top: 0; }
.volunteer-panel { min-height: 300px; background: linear-gradient(135deg, #0a4938 0%, #0d6046 70%, #177653 100%); border-radius: 32px; padding: 52px 56px; display: flex; align-items: center; justify-content: space-between; gap: 50px; position: relative; overflow: hidden; }
.volunteer-panel::after { content: ''; position: absolute; width: 350px; height: 350px; border-radius: 50%; right: -110px; top: -130px; background: rgba(255,255,255,.06); }
.volunteer-panel::before { content: ''; position: absolute; width: 160px; height: 160px; border-radius: 50%; right: 21%; bottom: -100px; background: rgba(242,138,46,.18); }
.volunteer-copy { position: relative; z-index: 2; max-width: 650px; }
.volunteer-copy h2 { color: #fff; margin-bottom: 14px; }
.volunteer-copy p { color: rgba(255,255,255,.66); margin: 0; }
.volunteer-actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; align-items: stretch; min-width: 230px; }
.btn-white { background: #fff; color: var(--green-900); }
.btn-outline-white { color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-outline-white:hover { background: rgba(255,255,255,.09); }

.section-donate { background: var(--cream-2); }
.donate-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: center; }
.donate-copy > p { max-width: 620px; color: var(--muted); font-size: 16px; }
.donation-note { margin-top: 24px; display: flex; gap: 11px; max-width: 580px; padding: 14px 16px; border-radius: 13px; background: #fff; border: 1px solid #ebe8df; color: #68736e; font-size: 12px; }
.donation-note i { color: var(--green-700); font-size: 16px; }
.donate-card { background: #fff; border-radius: 26px; box-shadow: var(--shadow); padding: 30px; border: 1px solid #eeece5; }
.donate-card-top { display: flex; gap: 14px; align-items: center; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.donate-card-top > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: #fff0e1; color: var(--orange); font-size: 20px; }
.donate-card-top div { display: flex; flex-direction: column; line-height: 1.25; }
.donate-card-top small { font-size: 10px; color: #87908c; text-transform: uppercase; letter-spacing: .08em; }
.donate-card-top strong { margin-top: 5px; font-family: 'Playfair Display', serif; color: var(--green-950); font-size: 20px; }
.donate-features { display: grid; gap: 12px; padding: 22px 0; color: #55625d; font-size: 13px; }
.donate-features i { color: var(--green-700); margin-right: 8px; }
.btn-block { width: 100%; }
.donate-disclaimer { display: block; color: #929a96; font-size: 10px; text-align: center; margin-top: 14px; line-height: 1.45; }

.footer { background: #051f18; color: rgba(255,255,255,.67); padding: 74px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .7fr .8fr 1.25fr; gap: 50px; padding-bottom: 56px; }
.brand-footer .brand-copy strong { color: #fff; }
.brand-footer .brand-copy small { color: rgba(255,255,255,.48); }
.footer-brand p { max-width: 340px; margin: 20px 0 0; font-size: 13px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: #fff; font-family: 'Playfair Display', serif; margin: 7px 0 10px; font-size: 17px; }
.footer-col a { font-size: 12px; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-contact p { margin: 0; font-size: 12px; display: flex; gap: 9px; }
.footer-contact i { color: #f0a45a; margin-top: 2px; }
.footer-bottom { min-height: 68px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 10px; color: rgba(255,255,255,.44); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
    .main-nav { gap: 18px; }
    .main-nav > a:not(.nav-donate) { font-size: 13px; }
    .hero-grid { gap: 36px; }
    .hero-image-card { width: 94%; }
    .trust-strip { grid-template-columns: repeat(2, 1fr); border-radius: 22px 22px 0 0; }
    .trust-strip-title { grid-column: 1 / -1; border: 0; padding-bottom: 8px; }
    .about-grid, .work-grid, .donate-grid { gap: 52px; }
    .certificate-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.25fr .75fr .75fr 1.25fr; gap: 28px; }
}

@media (max-width: 900px) {
    .topbar-right .topbar-message { display: none; }
    .menu-toggle { display: block; }
    .main-nav { position: absolute; top: 86px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-radius: 18px; box-shadow: 0 24px 50px rgba(4,41,31,.15); padding: 10px; border: 1px solid #eef0ec; }
    .main-nav.is-open { display: flex; }
    .main-nav > a:not(.nav-donate) { padding: 13px 15px; border-radius: 9px; }
    .main-nav > a:not(.nav-donate)::after { display: none; }
    .nav-donate { margin-top: 6px; justify-content: center; }
    .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero { padding-top: 50px; }
    .hero-grid, .about-grid, .work-grid, .donate-grid { grid-template-columns: 1fr; }
    .hero-grid { min-height: auto; }
    .hero-copy { text-align: center; }
    .hero-copy > p, .hero h1 { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-assurance { justify-content: center; }
    .hero-visual { min-height: 500px; }
    .hero-image-card { width: 78%; height: 470px; margin-inline: auto; }
    .fc-one { left: 3%; }
    .fc-two { right: 3%; }
    .about-grid { gap: 42px; }
    .about-visual { order: 2; }
    .about-copy { order: 1; }
    .about-image-main { width: 80%; margin: 0 auto; }
    .section-heading { grid-template-columns: 1fr; gap: 10px; }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .work-grid { gap: 35px; }
    .work-visual { min-height: 500px; }
    .volunteer-panel { flex-direction: column; align-items: flex-start; }
    .volunteer-actions { flex-direction: row; min-width: 0; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .topbar-inner { min-height: 38px; }
    .topbar-left span { display: none; }
    .topbar-right { margin-left: auto; }
    .topbar-right a { font-size: 11px; }
    .nav-wrap { min-height: 76px; }
    .main-nav { top: 76px; }
    .brand-mark { width: 42px; height: 42px; }
    .brand-copy strong { font-size: 17px; }
    .hero { padding-top: 40px; }
    .hero h1 { font-size: 43px; }
    .hero-copy > p { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-assurance { flex-direction: column; align-items: center; }
    .hero-visual { min-height: 430px; }
    .hero-image-card { width: 100%; height: 410px; border-radius: 30px 30px 30px 90px; }
    .hero-image-caption { left: 22px; bottom: 20px; }
    .floating-card { min-width: 190px; padding: 10px; }
    .fc-one { left: -5px; top: 52px; }
    .fc-two { right: -5px; bottom: 35px; }
    .trust-strip { grid-template-columns: 1fr; margin-top: 34px; padding: 20px; }
    .section { padding: 78px 0; }
    .section h2 { font-size: 40px; }
    .about-points { grid-template-columns: 1fr; }
    .about-visual { min-height: 440px; }
    .about-image-main { width: 94%; height: 400px; }
    .about-stat-card { width: 240px; right: 0; bottom: 5px; }
    .program-grid { grid-template-columns: 1fr; }
    .work-visual { min-height: 440px; }
    .work-photo-main { width: 82%; height: 390px; }
    .work-photo-small { width: 48%; height: 190px; }
    .work-badge { width: 105px; height: 105px; left: 4%; top: 45px; }
    .certificate-grid { grid-template-columns: 1fr; }
    .volunteer-panel { padding: 38px 26px; border-radius: 24px; }
    .volunteer-actions { width: 100%; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 18px 0; }
}

/* ===== Inner pages ===== */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-950), var(--green-800)); color: #fff; padding: 88px 0 84px; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 26px 26px; opacity: .5; }
.page-hero-inner { position: relative; z-index: 2; max-width: 850px; text-align: center; }
.page-hero h1 { margin: 10px 0 17px; font-family: 'Playfair Display', serif; font-size: clamp(44px, 6vw, 72px); line-height: 1.04; }
.page-hero p { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,.72); font-size: 16px; }
.page-hero-orb { position: absolute; border-radius: 50%; }
.page-hero-orb-one { width: 420px; height: 420px; left: -180px; top: -220px; background: rgba(242,138,46,.18); }
.page-hero-orb-two { width: 360px; height: 360px; right: -120px; bottom: -240px; background: rgba(255,255,255,.06); }
.breadcrumb-line { display: flex; justify-content: center; align-items: center; gap: 9px; margin-top: 26px; font-size: 12px; color: rgba(255,255,255,.62); }
.breadcrumb-line a { color: #fff; font-weight: 700; }
.breadcrumb-line i { font-size: 9px; }

.inner-about-section { background: #fff; }
.about-story-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.about-story-card { background: linear-gradient(145deg, #f8f5ee, #fff); border: 1px solid var(--line); border-radius: 30px; padding: 44px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.about-story-card::after { content: ''; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -70px; bottom: -90px; background: var(--green-100); }
.story-kicker { display: inline-block; color: var(--orange-dark); text-transform: uppercase; font-size: 10px; letter-spacing: .16em; font-weight: 800; }
.about-story-card h2 { margin: 12px 0 24px; font-family: 'Playfair Display', serif; font-size: 42px; line-height: 1.08; color: var(--green-950); }
.about-story-card h2 em, .about-story-copy h3 em { color: var(--green-700); font-style: italic; }
.about-story-card p, .about-story-copy p { color: var(--muted); font-size: 14px; }
.registration-pill { position: relative; z-index: 2; margin-top: 26px; display: inline-flex; align-items: center; gap: 12px; padding: 13px 16px; background: #fff; border: 1px solid var(--line); border-radius: 15px; }
.registration-pill i { color: var(--orange); font-size: 22px; }
.registration-pill span { display: flex; flex-direction: column; line-height: 1.25; }
.registration-pill small { color: #8b938f; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.registration-pill strong { color: var(--green-900); }
.about-story-copy h3 { margin: 12px 0 22px; font-family: 'Playfair Display', serif; font-size: 36px; line-height: 1.13; color: var(--green-950); }
.purpose-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.purpose-grid > div { border: 1px solid var(--line); border-radius: 16px; padding: 18px; display: grid; grid-template-columns: 34px 1fr; column-gap: 10px; }
.purpose-grid i { grid-row: span 2; color: var(--orange); font-size: 19px; }
.purpose-grid strong { font-size: 13px; color: var(--green-950); }
.purpose-grid span { font-size: 11px; color: var(--muted); }

.objectives-section { background: var(--cream-2); }
.objective-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.objective-cloud span { padding: 13px 20px; border-radius: 999px; background: #fff; border: 1px solid #e8e5dc; color: var(--green-900); font-size: 13px; font-weight: 700; box-shadow: 0 6px 18px rgba(9,58,43,.04); }

.approach-section { background: var(--green-950); color: #fff; }
.approach-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: 70px; align-items: center; }
.approach-copy h2 { color: #fff; margin-bottom: 20px; }
.approach-copy p { color: rgba(255,255,255,.68); max-width: 580px; }
.approach-copy .btn { margin-top: 20px; }
.approach-list { display: grid; gap: 4px; }
.approach-list > div { display: grid; grid-template-columns: 54px 1fr; gap: 16px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.approach-list > div > span { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #f4a85b; font-weight: 800; font-size: 11px; }
.approach-list p { margin: 0; display: flex; flex-direction: column; }
.approach-list strong { color: #fff; font-family: 'Playfair Display', serif; font-size: 18px; }
.approach-list small { color: rgba(255,255,255,.55); margin-top: 4px; font-size: 12px; }

.trustees-section { background: #fff; }
.trustee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trustee-card { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 18px; padding: 16px; transition: transform .2s ease, box-shadow .2s ease; }
.trustee-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(8,62,46,.08); }
.trustee-avatar { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(135deg, var(--green-100), #fff6e9); color: var(--green-800); font-weight: 800; font-size: 13px; }
.trustee-card h3 { margin: 0; color: var(--green-950); font-family: 'Playfair Display', serif; font-size: 16px; }
.trustee-card p { margin: 3px 0 0; color: var(--orange-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.compact-cta-section { background: var(--cream-2); padding-top: 0; }
.compact-cta { display: flex; justify-content: space-between; align-items: center; gap: 40px; background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 34px 38px; box-shadow: var(--shadow); }
.compact-cta small { color: var(--orange-dark); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.compact-cta h2 { font-size: 28px; margin: 5px 0 0; max-width: 650px; }
.compact-cta-actions { display: flex; gap: 10px; flex-shrink: 0; }

.services-intro { background: #fff; }
.services-intro-grid, .gallery-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.services-intro h2, .gallery-intro-grid h2 { margin-bottom: 0; }
.services-intro .lead, .gallery-intro-grid .lead { color: var(--muted); font-size: 16px; margin: 0 0 20px; }
.services-list-section { background: var(--cream-2); padding-top: 0; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-detail-card { background: #fff; border: 1px solid #e9e6dc; border-radius: 24px; padding: 30px; min-height: 350px; transition: transform .25s ease, box-shadow .25s ease; }
.service-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card-top { display: flex; justify-content: space-between; align-items: center; }
.service-detail-icon { width: 54px; height: 54px; border-radius: 16px; background: var(--green-100); display: grid; place-items: center; color: var(--green-800); font-size: 22px; }
.service-index { font-family: 'Playfair Display', serif; font-size: 38px; color: #e7ece8; }
.service-detail-card h3 { margin: 24px 0 10px; font-family: 'Playfair Display', serif; font-size: 24px; color: var(--green-950); }
.service-detail-card > p { color: var(--muted); font-size: 13px; }
.service-detail-card ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 9px; }
.service-detail-card li { display: flex; gap: 9px; color: #59645f; font-size: 12px; }
.service-detail-card li i { color: var(--orange); font-size: 15px; }
.source-scope-section { background: var(--green-900); color: #fff; }
.source-scope-grid { display: grid; grid-template-columns: 1fr 330px; gap: 70px; align-items: center; }
.source-scope-copy h2 { color: #fff; }
.source-scope-copy p { color: rgba(255,255,255,.65); max-width: 760px; }
.source-scope-badge { border: 1px solid rgba(255,255,255,.16); border-radius: 26px; padding: 34px; text-align: center; background: rgba(255,255,255,.06); }
.source-scope-badge i { display: block; font-size: 42px; color: #f2a85d; margin-bottom: 14px; }
.source-scope-badge small, .source-scope-badge span { display: block; color: rgba(255,255,255,.58); }
.source-scope-badge strong { display: block; margin: 8px 0; font-family: 'Playfair Display', serif; font-size: 20px; color: #fff; }

.certificates-page-section { background: var(--cream-2); }
.certificate-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.certificate-page-card { background: #fff; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; box-shadow: 0 12px 30px rgba(9,55,42,.05); }
.certificate-preview { position: relative; width: 100%; height: 390px; border: 0; padding: 0; background: #eef1ee; cursor: pointer; overflow: hidden; }
.certificate-preview img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.certificate-preview:hover img { transform: scale(1.025); }
.certificate-preview span { position: absolute; left: 16px; bottom: 16px; padding: 10px 14px; border-radius: 999px; background: rgba(5,31,24,.9); color: #fff; font-size: 11px; font-weight: 700; }
.certificate-placeholder { height: 390px; display: grid; place-items: center; align-content: center; gap: 13px; background: linear-gradient(145deg, var(--green-950), var(--green-700)); color: #fff; }
.certificate-placeholder i { font-size: 64px; color: #f1a458; }
.certificate-placeholder span { font-family: 'Playfair Display', serif; font-size: 24px; }
.certificate-page-copy { padding: 28px; }
.certificate-page-copy > small { color: var(--orange-dark); text-transform: uppercase; letter-spacing: .1em; font-weight: 800; font-size: 9px; }
.certificate-page-copy h2 { font-size: 27px; margin: 7px 0 8px; }
.certificate-page-copy p { color: var(--muted); font-size: 12px; }
.certificate-number { margin-top: 20px; padding: 15px 16px; border-radius: 14px; background: var(--cream-2); }
.certificate-number span { display: block; color: #8a938f; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.certificate-number strong { display: block; margin-top: 4px; color: var(--green-900); }
.certificate-note { margin-top: 24px; display: flex; gap: 13px; padding: 18px 20px; border: 1px solid #e4e0d5; border-radius: 16px; background: #fff; color: var(--muted); font-size: 12px; }
.certificate-note i { color: var(--orange); font-size: 18px; }
.certificate-note p { margin: 0; }
.certificate-modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 34px; background: rgba(1,17,13,.88); backdrop-filter: blur(6px); }
.certificate-modal.is-open { display: flex; }
.certificate-modal img { max-width: min(950px, 92vw); max-height: 88vh; object-fit: contain; border-radius: 10px; background: #fff; }
.certificate-modal-close { position: fixed; right: 24px; top: 24px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; }

.gallery-intro-section { background: #fff; }
.gallery-categories-section { background: var(--cream-2); padding-top: 0; }
.gallery-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-category-card { min-height: 280px; border-radius: 24px; padding: 28px; position: relative; overflow: hidden; background: linear-gradient(145deg, #0a4938, #0f6a4e); color: #fff; }
.gallery-category-card:nth-child(even) { background: linear-gradient(145deg, #1d2e27, #0f5f46); }
.gallery-pattern { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px); background-size: 20px 20px; mask-image: linear-gradient(135deg, transparent, #000); }
.gallery-category-icon { position: relative; z-index: 2; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,255,255,.1); color: #f3a95c; font-size: 23px; }
.gallery-category-number { position: absolute; right: 22px; top: 18px; font-family: 'Playfair Display', serif; font-size: 46px; color: rgba(255,255,255,.09); }
.gallery-category-card h3 { position: relative; z-index: 2; margin: 58px 0 8px; font-family: 'Playfair Display', serif; font-size: 27px; }
.gallery-category-card p { position: relative; z-index: 2; margin: 0; color: rgba(255,255,255,.66); font-size: 13px; }
.gallery-category-card small { position: relative; z-index: 2; display: inline-block; margin-top: 18px; color: rgba(255,255,255,.47); text-transform: uppercase; letter-spacing: .08em; font-size: 8px; }
.gallery-evidence-section { background: #fff; padding-top: 0; }
.gallery-evidence-panel { display: grid; grid-template-columns: 80px 1fr auto; gap: 25px; align-items: center; background: var(--green-950); color: #fff; border-radius: 26px; padding: 32px 36px; }
.gallery-evidence-panel > div:first-child { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #f3a95c; font-size: 25px; }
.gallery-evidence-panel small { color: #f3a95c; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.gallery-evidence-panel h2 { font-size: 26px; margin: 4px 0 7px; color: #fff; }
.gallery-evidence-panel p { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; max-width: 760px; }

.contact-page-section { background: var(--cream-2); }
.contact-page-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 55px; align-items: start; }
.contact-info-panel h2 { margin-bottom: 17px; }
.contact-info-panel > p { color: var(--muted); font-size: 14px; }
.contact-info-list { display: grid; gap: 13px; margin-top: 30px; }
.contact-info-list > a, .contact-info-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 13px; align-items: start; padding: 16px; border-radius: 16px; border: 1px solid #e7e3d9; background: #fff; }
.contact-info-list > a > span, .contact-info-list > div > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: var(--green-100); color: var(--green-800); }
.contact-info-list div > div, .contact-info-list a > div { display: flex; flex-direction: column; }
.contact-info-list small { color: #909994; font-size: 9px; text-transform: uppercase; letter-spacing: .09em; }
.contact-info-list strong { margin-top: 4px; color: var(--green-950); font-size: 13px; line-height: 1.45; }
.form-card { background: #fff; border: 1px solid #e9e5db; border-radius: 26px; padding: 32px; box-shadow: var(--shadow); }
.form-card-heading { margin-bottom: 22px; }
.form-card-heading small { color: var(--orange-dark); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: 9px; }
.form-card-heading h2 { font-size: 30px; margin: 4px 0 0; }
.site-form { display: grid; gap: 15px; }
.site-form label { display: grid; gap: 7px; color: #56625d; font-size: 11px; font-weight: 700; }
.site-form label > span > small { color: #8d9691; font-weight: 500; }
.site-form input, .site-form textarea, .site-form select { width: 100%; border: 1px solid #dedfd9; border-radius: 11px; background: #fff; padding: 12px 13px; color: var(--ink); outline: none; transition: border .2s ease, box-shadow .2s ease; }
.site-form textarea { resize: vertical; }
.site-form input:focus, .site-form textarea:focus, .site-form select:focus { border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(23,118,83,.09); }
.form-grid.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-submit { border: 0; cursor: pointer; justify-content: center; margin-top: 3px; }
.alert-box { display: flex; gap: 11px; padding: 13px 14px; border-radius: 12px; margin-bottom: 18px; font-size: 12px; }
.alert-box.success { background: #eaf7ef; color: #16643f; border: 1px solid #ccead8; }
.alert-box.error { background: #fff1ed; color: #9c3c26; border: 1px solid #f0cec3; }
.alert-box ul { margin: 5px 0 0; padding-left: 18px; }
.map-section iframe { width: 100%; height: 430px; border: 0; display: block; filter: saturate(.72) contrast(.96); }

.donation-page-section { background: var(--cream-2); }
.donation-page-grid { display: grid; grid-template-columns: .87fr 1.13fr; gap: 56px; align-items: start; }
.donation-info-column h2 { margin-bottom: 17px; }
.donation-info-column > p { color: var(--muted); font-size: 14px; }
.donation-process-card { margin-top: 27px; padding: 24px; border-radius: 21px; background: var(--green-950); color: #fff; }
.donation-process-card h3 { margin: 0 0 17px; font-family: 'Playfair Display', serif; font-size: 22px; }
.donation-process-card ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.donation-process-card li { display: grid; grid-template-columns: 36px 1fr; gap: 11px; align-items: start; }
.donation-process-card li > span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #f4aa5d; font-size: 11px; font-weight: 800; }
.donation-process-card li div { display: flex; flex-direction: column; }
.donation-process-card strong { font-size: 13px; }
.donation-process-card small { color: rgba(255,255,255,.56); margin-top: 3px; font-size: 10px; }
.donation-contact-box { margin-top: 14px; display: flex; gap: 12px; align-items: center; padding: 16px; border-radius: 16px; background: #fff; border: 1px solid #e7e3d9; }
.donation-contact-box > span { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: #fff0e1; color: var(--orange-dark); }
.donation-contact-box div { display: flex; flex-direction: column; }
.donation-contact-box small { color: #87918c; font-size: 9px; text-transform: uppercase; }
.donation-contact-box a { color: var(--green-900); font-size: 18px; font-weight: 800; }
.donation-safety-note { display: flex; gap: 10px; margin-top: 14px; color: #717c76; font-size: 10px; }
.donation-safety-note i { color: var(--green-700); font-size: 17px; }
.donation-safety-note p { margin: 0; }
.donation-form-card { padding: 34px; }
.file-label input { padding: 10px; background: var(--cream-2); }
.checkbox-label { grid-template-columns: 18px 1fr !important; align-items: start; gap: 9px !important; }
.checkbox-label input { width: 16px; height: 16px; margin-top: 2px; }
.checkbox-label span { font-weight: 500; color: #707a75; }
.donation-success-card { display: flex; gap: 13px; padding: 16px; border-radius: 15px; background: #eaf7ef; border: 1px solid #cbe8d7; margin-bottom: 18px; color: #1b6845; }
.donation-success-card > i { font-size: 24px; }
.donation-success-card small { text-transform: uppercase; letter-spacing: .09em; font-size: 8px; font-weight: 800; }
.donation-success-card h3 { margin: 2px 0; font-size: 18px; }
.donation-success-card p { margin: 0; font-size: 10px; }
.donation-trust-strip-section { background: #fff; padding-top: 0; }
.donation-trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.donation-trust-strip > div { background: #fff; padding: 22px; display: flex; gap: 11px; align-items: center; }
.donation-trust-strip i { color: var(--orange); font-size: 20px; }
.donation-trust-strip span { display: flex; flex-direction: column; }
.donation-trust-strip small { color: #8a938f; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.donation-trust-strip strong { color: var(--green-900); font-size: 11px; margin-top: 3px; }

@media (max-width: 900px) {
    .about-story-grid, .approach-grid, .services-intro-grid, .gallery-intro-grid, .source-scope-grid, .contact-page-grid, .donation-page-grid { grid-template-columns: 1fr; gap: 38px; }
    .trustee-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail-grid, .certificate-page-grid { grid-template-columns: 1fr; }
    .gallery-category-grid { grid-template-columns: repeat(2, 1fr); }
    .compact-cta { flex-direction: column; align-items: flex-start; }
    .gallery-evidence-panel { grid-template-columns: 64px 1fr; }
    .gallery-evidence-panel > a { grid-column: 2; justify-self: start; }
    .donation-trust-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .page-hero { padding: 68px 0 62px; }
    .page-hero h1 { font-size: 42px; }
    .about-story-card { padding: 28px 23px; }
    .about-story-card h2 { font-size: 34px; }
    .purpose-grid, .trustee-grid, .gallery-category-grid, .form-grid.two, .donation-trust-strip { grid-template-columns: 1fr; }
    .approach-grid { gap: 30px; }
    .compact-cta { padding: 27px 23px; }
    .compact-cta-actions { width: 100%; flex-direction: column; }
    .compact-cta-actions .btn { width: 100%; }
    .service-detail-card { padding: 24px; }
    .certificate-preview, .certificate-placeholder { height: 320px; }
    .gallery-evidence-panel { grid-template-columns: 1fr; padding: 27px 23px; }
    .gallery-evidence-panel > a { grid-column: auto; }
    .form-card, .donation-form-card { padding: 24px 20px; }
    .map-section iframe { height: 350px; }
    .certificate-modal { padding: 16px; }
}
