@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --ink: #18251b;
  --muted: #617064;
  --paper: #f8f9f4;
  --surface: #eef3e9;
  --surface-strong: #dfead8;
  --green: #276c35;
  --green-dark: #174c25;
  --green-soft: #cfe4c4;
  --white: #fffef9;
  --line: rgba(24, 37, 27, .14);
  --radius: 10px;
  --container: min(1120px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Outfit", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #96c989; outline-offset: 3px; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 100; padding: 11px 16px; border-radius: 999px; color: var(--white); background: var(--green-dark); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(248, 249, 244, .96); border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(31, 72, 40, .06); }
.nav { min-height: 78px; display: grid; grid-template-columns: minmax(180px, 1fr) auto auto; align-items: center; gap: 20px; }
.brand { display: inline-flex; align-items: center; width: max-content; }
.brand > span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.brand-mark { width: 140px; height: 72px; display: block; color: transparent; background: url("/logo.png") center / contain no-repeat; font-size: 0; }
.nav-links { display: flex; align-items: center; gap: 26px; padding: 0; margin: 0; list-style: none; color: #3f4e42; font-size: 13px; }
.nav-links a { position: relative; padding: 24px 0 21px; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 15px; height: 2px; background: var(--green); transition: right .25s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-action { margin-left: 6px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 4px; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--ink); transform-origin: center; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 19px; border: 1px solid transparent; border-radius: 4px; font-size: 13px; font-weight: 600; white-space: nowrap; cursor: pointer; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px); }
.button-primary { color: var(--white); background: var(--green); }
.button-primary:hover { background: var(--green-dark); }
.button-light { color: var(--green-dark); background: var(--white); }
.button-outline { color: var(--green-dark); border-color: rgba(39, 108, 53, .35); background: transparent; }
.button-arrow::after { content: "↗"; font-size: 15px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 13px; font-weight: 700; }
.text-link::after { content: "↗"; }

.hero-carousel { position: relative; min-height: min(680px, calc(100dvh - 96px)); overflow: hidden; background: var(--green-dark); }
.hero-track { position: relative; min-height: inherit; }
.hero-panel { position: relative; min-height: min(680px, calc(100dvh - 96px)); overflow: hidden; background: var(--green-dark); }
.hero-slide { position: absolute; inset: 0; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .75s cubic-bezier(.16,1,.3,1), visibility .75s; }
.hero-slide.is-active { position: relative; visibility: visible; opacity: 1; pointer-events: auto; z-index: 1; }
.hero-panel > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 64% center; }
.hero-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16, 58, 27, .92) 0%, rgba(16, 58, 27, .7) 43%, rgba(16, 58, 27, .08) 76%); }
.hero-content { position: relative; z-index: 2; min-height: inherit; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; max-width: 680px; padding: clamp(38px, 7vw, 80px); color: var(--white); }
.kicker { margin: 0 0 18px; font-size: 11px; line-height: 1; text-transform: uppercase; letter-spacing: .16em; font-weight: 700; }
.hero h1, .hero h2 { max-width: 720px; margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); line-height: .97; letter-spacing: -.055em; }
.hero-content > p:not(.kicker) { max-width: 590px; margin: 22px 0 0; color: rgba(255, 255, 255, .82); font-size: clamp(16px, 1.8vw, 19px); line-height: 1.55; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.hero-outline { color: #fff; border-color: rgba(255,255,255,.6); }
.hero-controls { position: absolute; z-index: 4; right: clamp(22px, 5vw, 70px); bottom: clamp(24px, 4vw, 42px); display: flex; align-items: center; gap: 18px; color: var(--white); }
.hero-arrows { display: flex; gap: 8px; }
.carousel-arrow { width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: var(--white); background: rgba(17,53,26,.28); backdrop-filter: blur(8px); cursor: pointer; transition: background .25s ease, transform .25s ease; }
.carousel-arrow:hover { background: rgba(255,255,255,.18); }
.carousel-arrow:active { transform: scale(.96); }
.carousel-dots { display: flex; align-items: center; gap: 7px; }
.carousel-dot { width: 30px; height: 24px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.carousel-dot span { display: block; width: 100%; height: 2px; background: rgba(255,255,255,.42); transform-origin: left; }
.carousel-dot.is-active span { background: var(--white); }
.carousel-count { min-width: 50px; margin: 0; font-size: 12px; letter-spacing: .08em; }

.section { padding: clamp(72px, 9vw, 116px) 0; overflow: clip; }
.section-small { padding: 54px 0; }
.section-soft { background: var(--surface); }
.section-header { max-width: 720px; margin-bottom: 40px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-title { margin: 0; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.02; letter-spacing: -.048em; }
.section-copy { max-width: 650px; margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.info-card { padding: clamp(28px, 4vw, 48px); border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.info-card.green { color: var(--white); background: var(--green); border-color: var(--green); }
.info-card.soft { background: var(--surface); }
.info-card h2, .info-card h3 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.08; letter-spacing: -.04em; }
.info-card p { margin: 18px 0 0; line-height: 1.7; color: var(--muted); }
.info-card.green p { color: rgba(255, 255, 255, .78); }
.feature-media { overflow: hidden; min-height: 380px; border-radius: var(--radius); }
.feature-media img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.feature-media:hover img { transform: scale(1.035); }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--surface-strong); border-radius: var(--radius); overflow: hidden; }
.stat { padding: 28px; text-align: center; border-right: 1px solid rgba(39, 108, 53, .16); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--green); font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1; letter-spacing: -.05em; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pillar { min-height: 132px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.pillar:nth-child(2), .pillar:nth-child(6) { background: var(--surface-strong); }
.pillar:nth-child(4) { color: var(--white); background: var(--green); border-color: var(--green); }
.pillar strong { font-size: 19px; letter-spacing: -.025em; }
.pillar span { color: var(--muted); font-size: 12px; }
.pillar:nth-child(4) span { color: rgba(255,255,255,.72); }

.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); align-items: stretch; gap: 16px; }
.project-card, .project-card.wide { grid-column: span 4; min-height: 370px; display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.project-image { aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-strong); }
.project-image img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.project-card:hover .project-image img { transform: scale(1.04); }
.project-body { flex: 1; padding: 22px; }
.project-year { color: var(--green); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.project-card h3 { margin: 10px 0 0; font-size: 21px; line-height: 1.16; letter-spacing: -.035em; }
.project-card p { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.focus-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.focus-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.focus-item { padding: 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.focus-item strong { display: block; color: var(--green); font-size: 18px; }
.focus-item p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.focus-visual { min-height: 420px; overflow: hidden; border-radius: var(--radius); }
.focus-visual img { height: 100%; object-fit: cover; }

.accreditation { display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center; padding: 28px 34px; border-radius: var(--radius); color: var(--white); background: var(--green-dark); }
.accreditation-mark { width: 64px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: var(--green-dark); background: var(--green-soft); font-weight: 700; }
.accreditation h2 { margin: 0; font-size: clamp(1.4rem, 3vw, 2.2rem); letter-spacing: -.035em; }
.accreditation p { margin: 8px 0 0; color: rgba(255,255,255,.68); font-size: 13px; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; padding: clamp(34px, 5vw, 58px); border-radius: var(--radius); color: var(--white); background: var(--green); }
.cta-panel h2 { max-width: 680px; margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.03; letter-spacing: -.045em; }
.cta-panel p { max-width: 600px; margin: 14px 0 0; color: rgba(255,255,255,.72); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.cta-outline { color: var(--white); border-color: rgba(255,255,255,.55); }
.cta-outline:hover { background: rgba(255,255,255,.1); }

.page-hero { padding: 54px 0 70px; }
.page-hero-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: stretch; }
.page-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 6vw, 70px); border-radius: var(--radius); background: var(--surface); }
.page-hero h1 { margin: 0; font-size: clamp(2.7rem, 4vw, 5.3rem); line-height: .96; letter-spacing: -.055em; }
.page-hero-copy > p:not(.kicker) { max-width: 600px; color: var(--muted); line-height: 1.65; }
.page-hero-media { min-height: 500px; overflow: hidden; border-radius: var(--radius); }
.page-hero-media img { height: 100%; object-fit: cover; }

.prose-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 8vw, 110px); align-items: start; }
.prose-grid h2 { position: sticky; top: 100px; margin: 0; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.02; letter-spacing: -.05em; }
.prose p { margin: 0 0 20px; color: #46554a; line-height: 1.8; }

.opportunity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.opportunity { padding: 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.opportunity h3 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.opportunity p { color: var(--muted); line-height: 1.6; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.contact-stack { display: grid; gap: 14px; }
.contact-card { padding: 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.contact-card.green { color: var(--white); background: var(--green); border-color: var(--green); }
.contact-card h2, .contact-card h3 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.contact-card p, .contact-card address { margin: 12px 0 0; color: var(--muted); font-style: normal; line-height: 1.65; }
.contact-card.green p, .contact-card.green address { color: rgba(255,255,255,.78); }
.contact-card a { display: block; width: max-content; max-width: 100%; margin-top: 9px; color: inherit; overflow-wrap: anywhere; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.social-links a { margin: 0; padding: 8px 12px; border-radius: 4px; border: 1px solid currentColor; font-size: 12px; }
.email-panel { min-height: 480px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(34px, 6vw, 72px); border-radius: var(--radius); color: var(--white); background: var(--green-dark); }
.email-panel h2 { max-width: 560px; margin: 0; font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1; letter-spacing: -.05em; }
.email-panel > p:not(.kicker) { max-width: 560px; margin: 20px 0 28px; color: rgba(255,255,255,.72); line-height: 1.7; }
.email-panel .email-address { margin-top: 20px; color: rgba(255,255,255,.74); font-size: 13px; overflow-wrap: anywhere; }
.email-panel .email-address:hover { color: var(--white); }

.donation-hero .page-hero-copy { color: var(--white); background: var(--green-dark); }
.donation-hero .page-hero-copy > p:not(.kicker) { color: rgba(255,255,255,.76); }
.donation-hero .page-hero-media img { object-position: 54% center; }
.donation-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.donation-contact-link { color: var(--white); border-color: rgba(255,255,255,.48); }
.donation-contact-link:hover { background: rgba(255,255,255,.08); }
.impact-ribbon { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.impact-ribbon > div { display: flex; align-items: center; gap: 16px; min-height: 84px; padding: 18px 28px; border-right: 1px solid var(--line); }
.impact-ribbon > div:last-child { border-right: 0; }
.impact-ribbon span { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.impact-ribbon strong { font-size: clamp(1rem,2vw,1.25rem); letter-spacing: -.02em; }
.bank-label { margin: 0 0 9px; color: var(--green); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.beneficiary-card { display: grid; grid-template-columns: 1fr auto auto; gap: 28px; align-items: center; padding: 28px 32px; border: 1px solid rgba(39,108,53,.22); border-radius: var(--radius); background: var(--white); }
.beneficiary-card h3 { margin: 0; font-size: clamp(1.45rem,3vw,2.2rem); letter-spacing: -.04em; }
.beneficiary-code { display: grid; gap: 6px; }
.beneficiary-code span, .primary-account-number span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.beneficiary-code strong { font-size: 18px; letter-spacing: .06em; }
.copy-detail, .copy-inline { border: 1px solid rgba(39,108,53,.28); border-radius: 4px; color: var(--green-dark); background: transparent; cursor: pointer; font-size: 12px; font-weight: 700; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.copy-detail { min-height: 40px; padding: 0 15px; }
.copy-inline { margin-left: 8px; padding: 4px 7px; }
.copy-detail:hover, .copy-inline:hover, .copy-detail.is-copied, .copy-inline.is-copied { color: var(--white); background: var(--green); border-color: var(--green); }
.naira-account { display: grid; grid-template-columns: auto 1fr auto auto; gap: 28px; align-items: center; margin-top: 16px; padding: clamp(28px,4vw,42px); border-radius: var(--radius); color: var(--white); background: var(--green); }
.currency-mark { width: 72px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font-size: 34px; font-weight: 600; }
.naira-account .bank-label, .naira-account p { color: rgba(255,255,255,.7); }
.naira-account h3 { margin: 0; font-size: clamp(1.6rem,3vw,2.4rem); letter-spacing: -.04em; }
.naira-account p { margin: 7px 0 0; }
.primary-account-number { display: grid; gap: 7px; }
.primary-account-number span { color: rgba(255,255,255,.66); }
.primary-account-number strong { font-size: clamp(1.4rem,3vw,2rem); letter-spacing: .06em; }
.naira-account .copy-detail { color: var(--green-dark); background: var(--white); border-color: transparent; }
.naira-account .copy-detail:hover, .naira-account .copy-detail.is-copied { color: var(--green-dark); background: var(--green-soft); border-color: var(--green-soft); }
.international-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: end; margin: 68px 0 24px; }
.international-heading h3 { margin: 0; font-size: clamp(1.8rem,3vw,2.8rem); letter-spacing: -.04em; }
.international-heading p { max-width: 560px; margin: 0; color: var(--muted); line-height: 1.65; }
.account-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; align-items: stretch; }
.account-card { grid-column: span 5; padding: clamp(24px,3vw,32px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.account-card-tall { grid-column: span 7; }
.account-card-wide { grid-column: span 7; }
.account-card-dark { grid-column: span 5; color: var(--white); background: var(--green-dark); border-color: var(--green-dark); }
.account-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 12px; }
.currency-code { color: var(--green); font-size: 13px; font-weight: 700; letter-spacing: .12em; }
.account-card h3 { margin: 30px 0 26px; font-size: clamp(1.35rem,2vw,1.8rem); letter-spacing: -.035em; }
.account-card dl, .account-card dd { margin: 0; }
.account-card dl { display: grid; gap: 18px; }
.account-card dl > div { display: grid; gap: 6px; }
.account-card dt { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.account-card dd { font-weight: 600; line-height: 1.55; overflow-wrap: anywhere; }
.account-card-dark .account-card-top, .account-card-dark dt { color: rgba(255,255,255,.58); }
.account-card-dark .currency-code { color: var(--green-soft); }
.account-card-dark .copy-inline { color: var(--white); border-color: rgba(255,255,255,.32); }
.account-card-dark .copy-inline:hover, .account-card-dark .copy-inline.is-copied { color: var(--green-dark); background: var(--green-soft); border-color: var(--green-soft); }
.donation-note { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: clamp(34px,5vw,56px); border-radius: var(--radius); color: var(--white); background: var(--green-dark); }
.donation-note h2 { margin: 0; font-size: clamp(2rem,4vw,3.5rem); line-height: 1.03; letter-spacing: -.045em; }
.donation-note p:not(.kicker) { max-width: 680px; margin: 15px 0 0; color: rgba(255,255,255,.7); line-height: 1.65; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-button { padding: 9px 14px; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); background: var(--white); cursor: pointer; }
.filter-button.active { color: var(--white); background: var(--green); border-color: var(--green); }
.resource-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.resource-card { grid-column: span 4; padding: 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.resource-card.featured { grid-column: span 8; color: var(--white); background: var(--green); border-color: var(--green); }
.resource-card h2, .resource-card h3 { margin: 10px 0 0; font-size: 22px; line-height: 1.2; letter-spacing: -.03em; }
.resource-card p { color: var(--muted); line-height: 1.6; }
.resource-card.featured p { color: rgba(255,255,255,.72); }
.resource-card .text-link { margin-top: 18px; }
.resource-card.featured .text-link { color: var(--white); }
.video-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.video-card { grid-column: span 4; overflow: hidden; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.video-card.featured { grid-column: span 8; display: grid; grid-template-columns: 1.15fr .85fr; }
.video-thumbnail { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--green-dark); }
.video-card.featured .video-thumbnail { height: 100%; aspect-ratio: auto; min-height: 320px; }
.video-thumbnail img { height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.video-card:hover .video-thumbnail img { transform: scale(1.035); }
.video-play { position: absolute; inset: 50% auto auto 50%; width: 54px; aspect-ratio: 1; display: grid; place-items: center; padding-left: 3px; border-radius: 50%; color: var(--green-dark); background: rgba(255,255,255,.94); transform: translate(-50%,-50%); }
.video-duration { position: absolute; right: 10px; bottom: 10px; padding: 4px 7px; border-radius: 4px; color: var(--white); background: rgba(10,28,15,.84); font-size: 11px; }
.video-body { padding: 22px; }
.video-card.featured .video-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(26px,4vw,44px); }
.video-card h2, .video-card h3 { margin: 10px 0 0; font-size: 21px; line-height: 1.18; letter-spacing: -.035em; }
.video-card.featured h2 { font-size: clamp(1.8rem,3vw,2.8rem); }
.video-card p { margin: 15px 0 0; color: var(--muted); line-height: 1.6; }
.channel-link { margin-top: 28px; }

.partner-marquee-section { overflow: hidden; padding: 22px 0; color: var(--white); background: var(--green-dark); }
.partner-marquee { overflow: hidden; }
.partner-marquee-track { display: flex; width: max-content; animation: partner-marquee 210s linear infinite; }
.partner-marquee-group { display: flex; align-items: center; flex-shrink: 0; }
.partner-marquee-group span { display: inline-flex; align-items: center; min-height: 44px; padding: 0 28px; border-right: 1px solid rgba(255,255,255,.22); font-size: clamp(1rem,2vw,1.35rem); font-weight: 600; white-space: nowrap; }
.partner-marquee:hover .partner-marquee-track { animation-play-state: paused; }
@keyframes partner-marquee { to { transform: translateX(-50%); } }
.partner-directory { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.partner-entry { grid-column: span 4; min-height: 168px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.partner-entry:nth-child(5n+2), .partner-entry:nth-child(5n+4) { grid-column: span 8; }
.partner-entry span { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.partner-entry h3 { max-width: 620px; margin: 28px 0 0; font-size: clamp(1.1rem,2vw,1.45rem); line-height: 1.2; letter-spacing: -.03em; }
.partner-entry.featured { color: var(--white); background: var(--green); border-color: var(--green); }
.partner-entry.featured span { color: rgba(255,255,255,.7); }

.gallery-grid { columns: 3; column-gap: 14px; }
.gallery-item { position: relative; break-inside: avoid; margin: 0 0 14px; overflow: hidden; border-radius: var(--radius); cursor: zoom-in; }
.gallery-item img { transition: transform .7s cubic-bezier(.16,1,.3,1); }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item figcaption { position: absolute; inset: auto 12px 12px; padding: 12px; border-radius: 5px; color: var(--white); background: rgba(23, 76, 37, .88); opacity: 0; transform: translateY(8px); transition: .3s ease; }
.gallery-item:hover figcaption { opacity: 1; transform: none; }
.lightbox { position: fixed; inset: 0; z-index: 80; display: none; place-items: center; padding: 28px; background: rgba(10,28,15,.92); }
.lightbox.open { display: grid; }
.lightbox img { max-width: 1100px; max-height: 86vh; width: auto; border-radius: var(--radius); }
.lightbox button { position: absolute; top: 20px; right: 20px; width: 44px; aspect-ratio: 1; border: 0; border-radius: 50%; background: var(--white); cursor: pointer; font-size: 22px; }
.empty-state { display: none; padding: 50px; text-align: center; color: var(--muted); }

.testimonial-slider { overflow: hidden; }
.testimonial-track { position: relative; min-height: 360px; }
.testimonial-card { position: absolute; inset: 0; visibility: hidden; opacity: 0; transform: translateX(24px); min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(32px,6vw,72px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: opacity .5s ease, transform .5s cubic-bezier(.16,1,.3,1), visibility .5s; }
.testimonial-card.is-active { position: relative; visibility: visible; opacity: 1; transform: none; }
.testimonial-card.green { color: var(--white); background: var(--green); border-color: var(--green); }
.testimonial-card blockquote { max-width: 900px; margin: 0; font-size: clamp(1.45rem,3vw,2.5rem); line-height: 1.3; letter-spacing: -.035em; }
.testimonial-card footer { display: grid; gap: 5px; margin-top: 36px; }
.testimonial-card footer strong { font-size: 14px; }
.testimonial-card footer span { color: var(--muted); font-size: 12px; }
.testimonial-card.green footer span { color: rgba(255,255,255,.7); }
.testimonial-controls { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 18px; }
.testimonial-dots { display: flex; align-items: center; gap: 8px; }
.testimonial-dot { width: 28px; height: 3px; padding: 0; border: 0; border-radius: 2px; background: var(--green-soft); cursor: pointer; }
.testimonial-dot.is-active { background: var(--green); }
.testimonial-arrows { display: flex; gap: 8px; }
.testimonial-arrows button { width: 44px; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; color: var(--green-dark); background: var(--white); cursor: pointer; transition: background .25s ease, transform .25s ease; }
.testimonial-arrows button:hover { background: var(--surface); }
.testimonial-arrows button:active { transform: scale(.96); }

.site-footer { padding: 58px 0 28px; color: var(--white); background: #15331d; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 38px; }
.footer-brand p { max-width: 350px; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.65; }
.footer-brand .brand-mark { width: 210px; height: 116px; border-radius: 4px; background-color: var(--white); }
.footer-col h3 { margin: 0 0 16px; color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.footer-col a { display: block; width: max-content; max-width: 100%; margin: 9px 0; color: rgba(255,255,255,.78); font-size: 13px; overflow-wrap: anywhere; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: 12px; }

@media (max-width: 900px) {
  .site-header { border-color: var(--line); }
  .nav { position: relative; min-height: 72px; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .nav-links, .nav-action { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .nav-links.open {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 18px max(20px, calc((100vw - 1120px) / 2 + 20px)) calc(28px + env(safe-area-inset-bottom));
    background: var(--paper);
    font-size: 20px;
  }
  .nav-links.open li { border-bottom: 1px solid var(--line); }
  .nav-links.open a { display: flex; align-items: center; min-height: 58px; padding: 10px 0; }
  .nav-links.open a::after { left: auto; right: 0; bottom: 50%; width: 8px; height: 8px; border-radius: 50%; opacity: 0; transform: translateY(50%); transition: opacity .2s ease; }
  .nav-links.open a[aria-current="page"]::after { opacity: 1; }
  .hero-carousel, .hero-panel { min-height: 650px; }
  .hero-panel::after { background: linear-gradient(180deg, rgba(16,58,27,.34), rgba(16,58,27,.88)); }
  .hero-content { justify-content: end; max-width: 100%; }
  .split-feature, .page-hero-layout, .prose-grid, .focus-grid, .contact-layout { grid-template-columns: 1fr; }
  .beneficiary-card { grid-template-columns: 1fr auto; }
  .beneficiary-card > div:first-child { grid-column: 1 / -1; }
  .naira-account { grid-template-columns: auto 1fr; }
  .primary-account-number { grid-column: 1 / 3; }
  .naira-account .copy-detail { grid-column: 1 / 3; width: max-content; }
  .account-card, .account-card-tall, .account-card-wide, .account-card-dark { grid-column: span 6; }
  .donation-note { grid-template-columns: 1fr; }
  .prose-grid h2 { position: static; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .project-card, .project-card.wide { grid-column: span 6; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(39,108,53,.16); }
  .opportunity-grid { grid-template-columns: 1fr 1fr; }
  .resource-card, .resource-card.featured, .video-card, .video-card.featured { grid-column: span 6; }
  .partner-entry, .partner-entry:nth-child(5n+2), .partner-entry:nth-child(5n+4) { grid-column: span 6; }
  .video-card.featured { display: block; }
  .video-card.featured .video-thumbnail { min-height: 0; aspect-ratio: 16 / 9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .testimonial-track, .testimonial-card { min-height: 380px; }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 28px, 1120px); --radius: 8px; }
  .nav { min-height: 66px; }
  .brand-mark { width: 112px; height: 62px; }
  .nav-links.open { inset-block-start: 66px; padding-inline: 20px; }
  .hero-carousel, .hero-panel { min-height: 670px; }
  .hero-content { justify-content: flex-end; padding: 28px 22px 122px; }
  .hero h1, .hero h2, .page-hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-controls { left: 22px; right: 22px; bottom: 28px; justify-content: space-between; }
  .carousel-dots { order: -1; flex: 1; }
  .carousel-count { display: none; }
  .section { padding: 72px 0; }
  .section-title { font-size: clamp(2.25rem, 10vw, 3.3rem); }
  .info-card { padding: 25px; }
  .pillars, .focus-list, .opportunity-grid { grid-template-columns: 1fr; }
  .impact-ribbon { grid-template-columns: 1fr; }
  .impact-ribbon > div { min-height: 68px; padding-inline: 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .impact-ribbon > div:last-child { border-bottom: 0; }
  .beneficiary-card, .naira-account, .international-heading { display: grid; grid-template-columns: 1fr; }
  .beneficiary-card > div:first-child, .primary-account-number, .naira-account .copy-detail { grid-column: auto; }
  .currency-mark { width: 60px; }
  .international-heading { gap: 12px; margin-top: 54px; }
  .account-grid { display: block; }
  .account-card { margin-bottom: 12px; }
  .project-grid, .resource-grid, .video-grid { display: block; }
  .project-card, .resource-card, .video-card { margin-bottom: 14px; }
  .project-card, .project-card.wide { min-height: 0; }
  .partner-directory { display: block; }
  .partner-entry { min-height: 150px; margin-bottom: 12px; }
  .accreditation, .cta-panel { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .accreditation .button { width: max-content; }
  .gallery-grid { columns: 1; }
  .gallery-item figcaption { opacity: 1; transform: none; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .partner-marquee { overflow-x: auto; scrollbar-width: thin; }
  .partner-marquee-track { transform: none; }
  .partner-marquee-group[aria-hidden="true"] { display: none; }
}
