/* =========================================================
   CARE VILLAGE FOUNDATION — Shared Stylesheet
   ========================================================= */

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --green-deep:   #1B6B2A;
  --green-mid:    #2A8A37;
  --green-teal:   #38B048;
  --green-light:  #52CC65;
  --green-pale:   #E6F7E8;
  --green-border: #B2D9B6;
  --teal-accent:  #2DB53C;
  --gold:         #2D3A8C;
  --gold-light:   #3D4FA0;
  --white:        #FFFFFF;
  --off:          #F4FBF5;
  --text:         #0D1A0F;
  --muted:        #476050;
  --rule:         #D4EDD9;
}

/* ── BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; width: 100%; }
h1,h2,h3,h4,h5,h6,blockquote { font-family: 'Playfair Display', serif; }
em, i { font-style: normal; }

/* Defensive media reset — nothing embedded can force horizontal scroll */
img, svg, iframe, video, embed, object { max-width: 100%; }

/* ── COMMON COMPONENTS ─────────────────────────────────── */
.section-pad { padding: 120px 0; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif; font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-teal); font-weight: 600; margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }

.section-title { font-size: clamp(2rem, 3.8vw, 3.2rem); color: var(--green-deep); line-height: 1.18; margin-bottom: 24px; font-weight: 700; }
.section-lead { color: var(--muted); font-size: 1.05rem; line-height: 1.9; }

.section-label {
  font-family: 'DM Sans', sans-serif; font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

/* ── TOP BAR ────────────────────────────────────────────── */
.top-bar {
  background: var(--green-deep); padding: 8px 0;
  font-family: 'DM Sans', sans-serif; font-size: .76rem;
  color: rgba(255,255,255,.6);
}
.top-bar a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.top-bar a:hover { color: var(--gold); }
.top-bar .sep { margin: 0 12px; opacity: .3; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.header-wrap { position: sticky; top: 0; z-index: 1050; }
.navbar { background: #fff; border-bottom: 1px solid var(--rule); padding: 0; z-index: 1050; transition: box-shadow .3s; }
.navbar.scrolled { box-shadow: 0 6px 32px rgba(27,107,42,.1); }
.navbar .container { position: relative; }

.brand-logo-img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-border); flex-shrink: 0; }
.brand-text { font-family: 'Playfair Display', serif; font-size: 1.18rem; font-weight: 700; color: var(--green-deep); line-height: 1.2; min-width: 0; }
.brand-text span { display: block; font-size: .63rem; font-weight: 400; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; font-family: 'DM Sans', sans-serif; }

.navbar-nav .nav-link { color: var(--text) !important; font-size: .85rem; font-weight: 500; padding: 28px 15px !important; position: relative; transition: color .2s; font-family: 'DM Sans', sans-serif; letter-spacing: .01em; }
.navbar-nav .nav-link::after { content: '' !important; position: absolute; bottom: 0; left: 15px; right: 15px; height: 2px; background: transparent; border-radius: 2px 2px 0 0; transition: background .2s; border: none !important; width: auto !important; vertical-align: unset !important; margin: 0 !important; }
.navbar-nav .nav-link:hover::after { background: var(--green-teal); }
.navbar-nav .nav-link.active::after { background: var(--green-teal); }
.navbar-nav .dropdown-toggle::after { display: none !important; }
.navbar-nav .nav-link:hover { color: var(--green-teal) !important; }
.navbar-nav .nav-link.active { color: var(--green-deep) !important; font-weight: 600; }
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:focus-visible,
.navbar-toggler:focus { outline: none !important; box-shadow: none !important; }

.dropdown-menu { background: #fff; border: 1px solid var(--rule); border-radius: 12px; min-width: 230px; padding: 8px; box-shadow: 0 16px 48px rgba(27,107,42,.12); margin-top: 0 !important; animation: dropFade .18s ease; }
@keyframes dropFade { from { opacity:0; transform:translateY(6px) } to { opacity:1; transform:translateY(0) } }
.dropdown-item { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: .86rem; padding: 10px 12px; border-radius: 8px; transition: all .15s; font-family: 'DM Sans', sans-serif; text-decoration: none; }
.dropdown-item:hover { background: var(--green-pale); color: var(--green-teal); }
.di-icon { width: 30px; height: 30px; border-radius: 7px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--green-teal); flex-shrink: 0; transition: background .15s, color .15s; }
.dropdown-item:hover .di-icon { background: var(--green-teal); color: #fff; }
.di-text strong { display: block; font-size: .84rem; font-weight: 600; color: var(--green-deep); line-height: 1.2; }
.di-text span { display: block; font-size: .73rem; color: var(--muted); margin-top: 1px; }
.dropdown-item:hover .di-text strong { color: var(--green-teal); }
.dropdown-divider { border-color: var(--rule); margin: 4px 0; }

@keyframes donatePulse {
  0%   { box-shadow: 0 0 0 0 rgba(27,107,42,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(27,107,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(27,107,42,0); }
}
.nav-donate-btn { display: inline-block; background: var(--gold); color: #fff !important; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .88rem; letter-spacing: .04em; padding: 12px 28px; border-radius: 50px; text-decoration: none; transition: background .2s, transform .2s, box-shadow .2s; white-space: nowrap; box-shadow: 0 4px 18px rgba(27,107,42,.3); animation: donatePulse 2.2s ease-out infinite; text-shadow: 0 1px 3px rgba(0,0,0,.25); }
.nav-donate-btn:hover { background: var(--gold-light); color: #fff !important; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,107,42,.55); animation: none; }
.nav-item.donate-li { display: flex; align-items: center; padding: 0; margin-left: 10px; }
.navbar-toggler { border-color: var(--rule); }

/* ── PAGE HERO (shared) ──────────────────────────────────── */
.page-hero {
  background: var(--green-deep); padding: 100px 0 84px;
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 65% 40%, rgba(56,176,72,.28) 0%, transparent 65%); }
.page-hero::after { content: ''; position: absolute; top: -160px; right: -160px; width: 480px; height: 480px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.hero-deco { position: absolute; bottom: -90px; left: -90px; width: 340px; height: 340px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); }

.breadcrumb-bar { display: flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: 24px; }
.breadcrumb-bar a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.breadcrumb-bar a:hover { color: var(--gold); }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-accent); font-weight: 600; margin-bottom: 18px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.page-hero h1 { font-size: clamp(2.8rem, 5.2vw, 4.4rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.page-hero h1 em { color: #fff; }
.page-hero p,
.page-hero .hero-lead { color: rgba(255,255,255,.72); font-family: 'DM Sans', sans-serif; font-size: 1.02rem; line-height: 1.88; max-width: 580px; margin: 0; }

/* ── SHARED BUTTONS ──────────────────────────────────────── */
.btn-primary-dark { background: var(--gold); color: var(--green-deep); font-weight: 700; font-size: .9rem; padding: 14px 32px; border-radius: 50px; border: none; letter-spacing: .04em; text-decoration: none; display: inline-block; transition: all .25s; font-family: 'DM Sans', sans-serif; }
.btn-primary-dark:hover { background: var(--gold-light); color: var(--green-deep); transform: translateY(-2px); }
.btn-ghost-white { background: transparent; color: #fff; font-weight: 500; font-size: .9rem; padding: 13px 28px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.5); text-decoration: none; display: inline-block; transition: all .25s; font-family: 'DM Sans', sans-serif; }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ── SHARED FORM STYLES ─────────────────────────────────── */
.form-label-cvf { font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--green-deep); margin-bottom: 8px; display: block; }
.form-control-cvf { width: 100%; background: #fff; border: 1.5px solid var(--rule); border-radius: 10px; padding: 13px 16px; font-family: 'DM Sans', sans-serif; font-size: .92rem; color: var(--text); transition: border-color .2s, box-shadow .2s; outline: none; appearance: none; -webkit-appearance: none; }
.form-control-cvf:focus { border-color: var(--green-teal); box-shadow: 0 0 0 3px rgba(56,176,72,.1); }
.form-control-cvf::placeholder { color: var(--green-border); }
textarea.form-control-cvf { resize: vertical; min-height: 120px; }
select.form-control-cvf { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234D6659' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; background-color: #fff; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--text); color: rgba(255,255,255,.65); padding: 96px 0 0; }
.footer-brand p { font-size: .88rem; line-height: 1.8; margin-top: 18px; color: rgba(255,255,255,.5); }
.footer-heading { color: rgba(255,255,255,.9); font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .88rem; transition: color .2s; font-family: 'DM Sans', sans-serif; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 12px; font-family: 'DM Sans', sans-serif; }
.footer-contact i { color: var(--teal-accent); margin-right: 10px; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.65); font-size: 1rem; text-decoration: none; margin-right: 8px; transition: all .2s; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--green-deep); }
.footer-donate-btn { background: var(--gold); color: #fff; font-weight: 700; padding: 13px 30px; border-radius: 50px; text-decoration: none; font-family: 'DM Sans', sans-serif; font-size: .88rem; display: inline-block; transition: background .2s; }
.footer-donate-btn:hover { background: var(--gold-light); color: #fff; }
.footer-bottom { margin-top: 64px; border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; font-size: .78rem; color: rgba(255,255,255,.35); font-family: 'DM Sans', sans-serif; }
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .18s; }
.fade-up:nth-child(4) { transition-delay: .26s; }

/* ===================================================
   HOME PAGE
   =================================================== */
.hero-slide { position: relative; height: 92vh; min-height: 580px; display: flex; align-items: center; overflow: hidden; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(108deg, rgba(9,31,14,.86) 0%, rgba(27,107,42,.6) 55%, rgba(56,176,72,.2) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.home-hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-accent); font-weight: 600; margin-bottom: 22px; }
.home-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-content h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); color: #fff; line-height: 1.1; margin-bottom: 22px; font-weight: 700; }
.hero-content h1 em { color: #fff; }
.hero-content p { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.75; margin-bottom: 36px; font-family: 'DM Sans', sans-serif; font-weight: 400; max-width: 560px; }
.carousel-indicators { bottom: 32px; }
.carousel-indicators button { width: 24px; height: 2px; border-radius: 2px; background: rgba(255,255,255,.4); border: none; }
.carousel-indicators .active { background: var(--gold); width: 44px; }

.stat-strip { background: #fff; border-bottom: 1px solid var(--rule); padding: 0; }
.stat-item { padding: 44px 24px; text-align: center; border-right: 1px solid var(--rule); position: relative; }
.stat-item:last-child { border-right: none; }
.stat-item h3 { font-size: 2.8rem; font-weight: 700; color: var(--green-deep); line-height: 1; margin-bottom: 8px; }
.stat-item h3 span { color: var(--gold); }
.stat-item p { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0; font-family: 'DM Sans', sans-serif; font-weight: 500; }

.prog-card { background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 36px 30px; height: 100%; transition: all .28s; position: relative; overflow: hidden; }
.prog-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-teal), var(--teal-accent)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.prog-card:hover { box-shadow: 0 16px 48px rgba(27,107,42,.1); transform: translateY(-5px); }
.prog-card:hover::before { transform: scaleX(1); }
.prog-icon { width: 54px; height: 54px; border-radius: 12px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.45rem; color: var(--green-teal); margin-bottom: 24px; transition: background .25s; }
.prog-card:hover .prog-icon { background: var(--green-teal); color: #fff; }
.prog-card h5 { font-size: 1.1rem; color: var(--green-deep); margin-bottom: 12px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.prog-card p { font-size: .88rem; color: var(--muted); line-height: 1.78; margin: 0; }

.mission-wrap { background: var(--off); }
.mission-row { min-height: 640px; }
.mission-img-col { position: relative; overflow: hidden; min-height: 520px; }
.mission-img-col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.mission-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,31,14,.72) 0%, transparent 55%); z-index: 1; }
.mission-quote-badge { position: absolute; bottom: 44px; left: 44px; right: 44px; background: rgba(255,255,255,.97); border-radius: 14px; padding: 30px 28px 26px; border-left: 4px solid var(--gold); box-shadow: 0 12px 40px rgba(0,0,0,.18); z-index: 2; }
.mission-quote-badge blockquote { font-size: 1.2rem; color: var(--green-deep); margin: 0 0 16px; line-height: 1.6; font-weight: 600; }
.mission-quote-badge cite { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: 500; }
.mission-content { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.mission-content p { color: var(--muted); font-size: 1rem; line-height: 1.9; margin-bottom: 22px; font-family: 'DM Sans', sans-serif; }
.mission-leader { display: flex; align-items: center; gap: 18px; padding: 24px; background: var(--green-pale); border-radius: 14px; margin-top: 20px; }
.leader-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--green-deep); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.leader-info { min-width: 0; }
.leader-info strong { display: block; color: var(--green-deep); font-size: .92rem; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 3px; }
.leader-info span { font-size: .8rem; color: var(--muted); font-family: 'DM Sans', sans-serif; }
.mission-mini-stats { display: flex; gap: 16px; margin-top: 36px; }
.mission-mini-stat { flex: 1; text-align: center; padding: 22px 12px; background: var(--green-pale); border-radius: 12px; }
.mission-mini-stat .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--green-deep); line-height: 1; }
.mission-mini-stat .lbl { font-family: 'DM Sans', sans-serif; font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }
.mission-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.approach-section { background: var(--off); }
.approach-card { background: #fff; border-radius: 14px; padding: 40px 32px; height: 100%; border: 1px solid var(--rule); transition: box-shadow .25s; }
.approach-card:hover { box-shadow: 0 10px 36px rgba(27,107,42,.08); }
.approach-num { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 700; color: var(--green-border); line-height: 1; margin-bottom: 16px; }
.approach-icon-row { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--green-teal), var(--teal-accent)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff; margin-bottom: 20px; }
.approach-card h4 { font-size: 1.15rem; color: var(--green-deep); margin-bottom: 12px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.approach-card p { font-size: .88rem; color: var(--muted); line-height: 1.75; margin: 0; }

.partners-section { background: #fff; padding: 80px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.ticker-outer { overflow: hidden; position: relative; }
.ticker-outer::before, .ticker-outer::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.ticker-outer::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.ticker-outer::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.ticker-track { display: flex; animation: slide 32s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.partner-tile { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 0 48px; min-width: 160px; border-right: 1px solid var(--rule); opacity: .55; transition: opacity .25s; cursor: default; }
.partner-tile:hover { opacity: 1; }
.partner-tile span { font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); text-align: center; line-height: 1.5; }
.logo-svg { width: 80px; height: 48px; display: flex; align-items: center; justify-content: center; }

.testimonials-section { background: var(--green-pale); }
.testi-card { background: #fff; border-radius: 16px; padding: 48px 40px; border: 1px solid var(--rule); height: 100%; position: relative; }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 6rem; color: var(--green-border); line-height: .7; margin-bottom: 20px; display: block; }
.testi-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--green-deep); line-height: 1.7; margin-bottom: 32px; font-weight: 400; }
.testi-divider { width: 36px; height: 2px; background: var(--gold); margin-bottom: 22px; }
.testi-name { font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--text); font-size: .92rem; margin-bottom: 4px; }
.testi-role { font-family: 'DM Sans', sans-serif; font-size: .8rem; color: var(--muted); }
.star-row { color: var(--gold); font-size: .82rem; margin-bottom: 18px; letter-spacing: 2px; }

.volunteer-section { background: var(--green-deep); position: relative; overflow: hidden; }
.volunteer-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); }
.volunteer-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.vol-title { font-size: clamp(2rem, 4vw, 3.4rem); color: #fff; margin-bottom: 20px; }
.vol-sub { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.85; margin-bottom: 40px; max-width: 520px; font-family: 'DM Sans', sans-serif; }
.btn-vol-primary { background: var(--gold); color: var(--green-deep); font-weight: 700; padding: 14px 34px; border-radius: 50px; text-decoration: none; display: inline-block; font-size: .9rem; font-family: 'DM Sans', sans-serif; transition: all .25s; letter-spacing: .04em; }
.btn-vol-primary:hover { background: var(--gold-light); color: var(--green-deep); }
.btn-vol-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); padding: 13px 28px; border-radius: 50px; text-decoration: none; display: inline-block; font-size: .9rem; font-family: 'DM Sans', sans-serif; transition: all .25s; }
.btn-vol-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
.vol-tile { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 32px 20px; text-align: center; transition: background .25s; }
.vol-tile:hover { background: rgba(255,255,255,.12); }
.vol-tile i { font-size: 1.8rem; color: var(--gold); margin-bottom: 14px; display: block; }
.vol-tile p { color: rgba(255,255,255,.8); font-size: .85rem; margin: 0; font-family: 'DM Sans', sans-serif; font-weight: 500; }

/* ===================================================
   ABOUT US PAGE
   =================================================== */
.cert-strip { background: var(--gold); padding: 0; }
.cert-item { display: flex; align-items: center; gap: 10px; padding: 16px 28px; border-right: 1px solid rgba(255,255,255,.25); }
.cert-item:last-child { border-right: none; }
.cert-item i { font-size: 1.1rem; color: var(--green-deep); }
.cert-item span { font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 700; color: var(--green-deep); letter-spacing: .04em; }

.story-section { padding: 100px 0; background: #fff; }
.story-lead { font-family: 'Playfair Display', serif; font-size: 1.55rem; color: var(--green-deep); line-height: 1.6; margin-bottom: 36px; font-weight: 400; border-left: 4px solid var(--gold); padding-left: 28px; }
.story-body p { font-family: 'DM Sans', sans-serif; font-size: .97rem; color: var(--muted); line-height: 1.95; margin-bottom: 22px; }
.story-body p strong { color: var(--green-deep); font-weight: 600; }
.story-body p.standout { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--green-teal); font-weight: 600; margin: 32px 0; }
.story-img-wrap { position: relative; }
.story-img-wrap img { width: 100%; border-radius: 18px; object-fit: cover; height: 520px; display: block; }
.story-img-badge { position: absolute; bottom: -28px; right: -28px; background: var(--green-deep); border-radius: 16px; padding: 28px 32px; text-align: center; box-shadow: 0 16px 48px rgba(27,107,42,.22); }
.story-img-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); font-weight: 700; line-height: 1; }
.story-img-badge span { font-family: 'DM Sans', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-top: 6px; display: block; }
.story-img-side-badge { position: absolute; top: 28px; left: -24px; background: var(--gold); border-radius: 12px; padding: 16px 20px; text-align: center; box-shadow: 0 8px 28px rgba(56,176,72,.2); }
.story-img-side-badge i { font-size: 1.5rem; color: var(--green-deep); display: block; margin-bottom: 6px; }
.story-img-side-badge span { font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 700; color: var(--green-deep); text-transform: uppercase; letter-spacing: .06em; }

.timeline-section { background: var(--off); padding: 100px 0; }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--green-border); transform: translateX(-50%); }
.tl-item { display: flex; position: relative; }
.tl-left { width: 50%; padding-right: 60px; text-align: right; padding-bottom: 60px; }
.tl-right { width: 50%; padding-left: 60px; padding-bottom: 60px; }
.tl-dot { position: absolute; left: 50%; top: 8px; transform: translateX(-50%); width: 18px; height: 18px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 0 0 3px var(--green-border); z-index: 2; }
.tl-year { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--green-border); line-height: 1; margin-bottom: 8px; }
.tl-card { background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 28px 26px; transition: box-shadow .25s; }
.tl-card:hover { box-shadow: 0 10px 36px rgba(27,107,42,.08); }
.tl-card h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 10px; }
.tl-card p { font-family: 'DM Sans', sans-serif; font-size: .87rem; color: var(--muted); line-height: 1.75; margin: 0; }
.tl-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--green-teal); margin-bottom: 16px; }

.values-section { background: #fff; padding: 100px 0; }
.value-card { background: var(--green-pale); border-radius: 16px; padding: 40px 32px; height: 100%; border: 1px solid var(--green-border); transition: all .28s; }
.value-card:hover { background: var(--green-deep); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(27,107,42,.15); }
.value-card:hover .value-title, .value-card:hover .value-body { color: rgba(255,255,255,.9); }
.value-card:hover .value-icon { background: var(--gold); color: var(--green-deep); }
.value-icon { width: 52px; height: 52px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--green-teal); margin-bottom: 24px; transition: all .28s; }
.value-title { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--green-deep); margin-bottom: 12px; transition: color .28s; }
.value-body { font-family: 'DM Sans', sans-serif; font-size: .87rem; color: var(--muted); line-height: 1.75; margin: 0; transition: color .28s; }

.promise-section { background: var(--green-deep); padding: 90px 0; position: relative; overflow: hidden; text-align: center; }
.promise-section::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.promise-section::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); }
.promise-quote { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.2vw, 2.5rem); color: #fff; font-weight: 600; line-height: 1.5; max-width: 820px; margin: 0 auto 36px; position: relative; z-index: 2; }
.promise-quote em { color: #fff; }
.promise-source { font-family: 'DM Sans', sans-serif; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); position: relative; z-index: 2; }

/* ===================================================
   DONATE PAGE
   =================================================== */
.donate-hero { background: var(--green-deep); padding: 100px 0 80px; position: relative; overflow: hidden; }
.donate-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 50%, rgba(56,176,72,.35) 0%, transparent 65%); }
.donate-hero::after { content: ''; position: absolute; top: -180px; right: -180px; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.donate-hero h1 { font-size: clamp(2.8rem, 5.5vw, 4.6rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.donate-hero h1 em { color: #fff; }
.donate-hero p { color: rgba(255,255,255,.72); font-family: 'DM Sans', sans-serif; font-size: 1.05rem; line-height: 1.85; max-width: 560px; margin: 0 0 32px; }
.tax-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4); color: #fff; font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .06em; padding: 10px 22px; border-radius: 50px; }

.trust-bar { background: var(--gold); border-top: none; border-bottom: none; padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: .8rem; color: #fff; font-weight: 500; padding: 0 28px; border-right: 1px solid rgba(255,255,255,.2); }
.trust-item:last-child { border-right: none; }
.trust-item i { color: rgba(255,255,255,.9); font-size: 1rem; }

.donate-body { padding: 80px 0 100px; }
.btn-donate-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: #fff !important; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; padding: 17px 44px; border-radius: 50px; border: none; text-decoration: none; cursor: pointer; box-shadow: 0 8px 28px rgba(27,107,42,.3); transition: all .25s; text-shadow: 0 1px 3px rgba(0,0,0,.2); }
.btn-donate-primary:hover { background: var(--gold-light); color: #fff !important; transform: translateY(-2px); }
.secure-line { font-family: 'DM Sans', sans-serif; font-size: .78rem; color: var(--muted); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.secure-line i { color: var(--green-teal); }

.pay-card { background: #fff; border: 1px solid var(--rule); border-radius: 18px; padding: 36px 32px; height: 100%; position: relative; overflow: hidden; transition: box-shadow .25s, transform .25s; }
.pay-card:hover { box-shadow: 0 12px 44px rgba(27,107,42,.09); transform: translateY(-3px); }
.pay-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-teal), var(--teal-accent)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.pay-card:hover::before { transform: scaleX(1); }
.pay-card-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--green-teal); margin-bottom: 20px; transition: background .25s; }
.pay-card:hover .pay-card-icon { background: var(--green-teal); color: #fff; }
.pay-card h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 8px; }
.pay-card .pay-label { font-family: 'DM Sans', sans-serif; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 20px; }

.bank-detail-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.bank-detail-key { font-family: 'DM Sans', sans-serif; font-size: .73rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; min-width: 90px; flex-shrink: 0; }
.bank-detail-val { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--green-deep); font-weight: 600; word-break: break-all; }
.copy-btn { background: none; border: 1px solid var(--rule); border-radius: 6px; padding: 2px 8px; font-size: .7rem; color: var(--muted); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .15s; margin-left: 6px; vertical-align: middle; }
.copy-btn:hover { background: var(--green-pale); border-color: var(--green-teal); color: var(--green-teal); }
.bank-flag { display: inline-flex; align-items: center; gap: 6px; font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green-teal); margin-bottom: 18px; }
.bank-flag .flag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-teal); }
.qr-wrap { width: 148px; height: 148px; background: var(--green-pale); border: 2px dashed var(--green-border); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: .72rem; color: var(--muted); text-align: center; margin-bottom: 16px; }
.qr-wrap i { font-size: 2rem; color: var(--green-teal); margin-bottom: 8px; display: block; }
.upi-apps { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.upi-pill { background: var(--green-pale); border: 1px solid var(--green-border); border-radius: 50px; padding: 5px 12px; font-family: 'DM Sans', sans-serif; font-size: .73rem; font-weight: 600; color: var(--green-teal); }

.impact-section { background: var(--green-deep); padding: 80px 0; position: relative; overflow: hidden; }
.impact-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.impact-title { font-size: clamp(2rem, 3.5vw, 3rem); color: #fff; margin-bottom: 12px; font-weight: 700; }
.impact-sub { font-family: 'DM Sans', sans-serif; font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: 48px; }
.impact-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 32px 28px; height: 100%; transition: background .25s; }
.impact-card:hover { background: rgba(255,255,255,.11); }
.impact-amount { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 14px; }
.impact-desc { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.7; margin: 0; }
.impact-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 16px; display: block; opacity: .7; }

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-tile { background: var(--green-deep); border-radius: 14px; padding: 22px 24px; color: #fff; height: 100%; transition: background .2s; }
.contact-tile:hover { background: var(--green-teal); }
.tile-label { font-family: 'DM Sans', sans-serif; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: 10px; }
.tile-value { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin: 0; word-break: break-all; }
.tile-value a { color: #fff; text-decoration: none; }
.tile-icon { font-size: 1.2rem; color: var(--gold); margin-bottom: 10px; display: block; }

.office-card { background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 24px 26px; position: relative; overflow: hidden; transition: box-shadow .25s, transform .22s; }
.office-card:hover { box-shadow: 0 10px 36px rgba(27,107,42,.09); transform: translateY(-2px); }
.office-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(to bottom, var(--green-teal), var(--teal-accent)); }
.office-type { font-family: 'DM Sans', sans-serif; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.office-city { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--green-deep); margin-bottom: 8px; }
.office-addr { font-family: 'DM Sans', sans-serif; font-size: .86rem; color: var(--muted); line-height: 1.75; margin: 0; }
.response-note { background: var(--green-pale); border: 1px solid var(--green-border); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-size: .82rem; color: var(--muted); margin-top: 24px; }
.response-note i { color: var(--green-teal); font-size: 1rem; flex-shrink: 0; }

.form-card { background: #fff; border: 1px solid var(--rule); border-radius: 20px; padding: 44px 40px; box-shadow: 0 8px 40px rgba(27,107,42,.07); height: 100%; }
.form-section-label { font-family: 'DM Sans', sans-serif; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.form-section-label::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.btn-send { width: 100%; background: var(--green-deep); color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .04em; padding: 15px 28px; border-radius: 50px; border: none; cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s; display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 4px 18px rgba(27,107,42,.2); }
.btn-send:hover { background: var(--green-teal); transform: translateY(-1px); }
.form-note { font-family: 'DM Sans', sans-serif; font-size: .76rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form-note i { color: var(--green-teal); margin-right: 4px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success i { font-size: 3rem; color: var(--green-teal); margin-bottom: 16px; display: block; }
.form-success h4 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--green-deep); margin-bottom: 10px; }
.form-success p { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--muted); }

.follow-section { background: var(--green-deep); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.follow-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.follow-title { font-size: clamp(2rem, 3.2vw, 2.8rem); color: #fff; font-weight: 700; margin-bottom: 10px; }
.follow-sub { font-family: 'DM Sans', sans-serif; font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: 36px; }
.social-big { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.2); color: #fff; text-decoration: none; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .88rem; transition: all .22s; margin: 6px; }
.social-big:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,255,255,.08); }

/* ===================================================
   GET INVOLVED PAGE
   =================================================== */
.gi-volunteer { padding: 90px 0; background: var(--off); }
.paths-strip { background: #fff; border-bottom: 1px solid var(--rule); padding: 0; }
.path-item { padding: 36px 28px; border-right: 1px solid var(--rule); display: flex; align-items: flex-start; gap: 18px; transition: background .2s; text-decoration: none; }
.path-item:last-child { border-right: none; }
.path-item:hover { background: var(--green-pale); }
.path-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--green-teal); flex-shrink: 0; transition: background .2s; }
.path-item:hover .path-icon { background: var(--green-teal); color: #fff; }
.path-title { font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.path-desc { font-family: 'DM Sans', sans-serif; font-size: .8rem; color: var(--muted); line-height: 1.6; margin: 0; }

.vol-intro-quote { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--green-deep); line-height: 1.65; border-left: 4px solid var(--gold); padding-left: 26px; margin-bottom: 28px; font-weight: 400; }
.vol-body p { font-family: 'DM Sans', sans-serif; font-size: .95rem; color: var(--muted); line-height: 1.9; }

.who-card { background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 28px 24px; height: 100%; text-align: center; transition: all .25s; }
.who-card:hover { box-shadow: 0 10px 36px rgba(27,107,42,.09); transform: translateY(-3px); }
.who-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--green-teal); margin: 0 auto 16px; transition: background .25s; }
.who-card:hover .who-icon { background: var(--green-teal); color: #fff; }
.who-title { font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 700; color: var(--green-deep); margin-bottom: 6px; }
.who-desc { font-family: 'DM Sans', sans-serif; font-size: .8rem; color: var(--muted); line-height: 1.65; margin: 0; }

.activity-pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--rule); border-radius: 50px; padding: 10px 18px; font-family: 'DM Sans', sans-serif; font-size: .83rem; font-weight: 500; color: var(--green-deep); margin: 5px; transition: all .2s; }
.activity-pill:hover { background: var(--green-pale); border-color: var(--green-teal); color: var(--green-teal); }
.activity-pill i { color: var(--green-teal); font-size: .9rem; }

.btn-apply { background: var(--green-deep); color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .04em; padding: 15px 40px; border-radius: 50px; border: none; cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 4px 18px rgba(27,107,42,.2); }
.btn-apply:hover { background: var(--green-teal); transform: translateY(-1px); }
.form-or { display: flex; align-items: center; gap: 14px; font-family: 'DM Sans', sans-serif; font-size: .8rem; color: var(--muted); margin: 24px 0; }
.form-or::before, .form-or::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.email-alt { font-family: 'DM Sans', sans-serif; font-size: .88rem; color: var(--muted); text-align: center; }
.email-alt a { color: var(--green-teal); font-weight: 600; text-decoration: none; }
.success-msg { display: none; text-align: center; padding: 32px 20px; }
.success-msg i { font-size: 2.8rem; color: var(--green-teal); display: block; margin-bottom: 14px; }
.success-msg h4 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--green-deep); margin-bottom: 8px; }
.success-msg p { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--muted); }

.other-section { background: var(--green-deep); padding: 90px 0; position: relative; overflow: hidden; }
.other-section::before { content: ''; position: absolute; top: -140px; right: -140px; width: 460px; height: 460px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.other-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); }
.other-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 44px 36px; height: 100%; transition: background .25s; }
.other-card:hover { background: rgba(255,255,255,.12); }
.other-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1.45rem; color: var(--gold); margin-bottom: 24px; }
.other-card h3 { font-size: 1.7rem; color: #fff; font-weight: 700; margin-bottom: 14px; }
.other-card p { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 28px; }
.btn-other { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 1.5px solid rgba(255,255,255,.4); color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .88rem; padding: 12px 26px; border-radius: 50px; text-decoration: none; transition: all .22s; }
.btn-other:hover { border-color: var(--gold); color: var(--gold); }

/* APPLY FORM SECTION (get-involved page) */
.form-section { background: #fff; padding: 80px 0; border-top: 1px solid var(--rule); }

/* ===================================================
   CAREERS PAGE
   =================================================== */
.intro-quote { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--green-deep); line-height: 1.65; border-left: 4px solid var(--gold); padding-left: 26px; margin-bottom: 28px; font-weight: 400; }
.intro-body { font-family: 'DM Sans', sans-serif; font-size: .97rem; color: var(--muted); line-height: 1.9; }

.quality-card { background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 24px; height: 100%; transition: all .25s; }
.quality-card:hover { box-shadow: 0 10px 36px rgba(27,107,42,.09); transform: translateY(-2px); }
.quality-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--green-teal); flex-shrink: 0; transition: background .25s; }
.quality-card:hover .quality-icon { background: var(--green-teal); color: #fff; }
.quality-title { font-family: 'DM Sans', sans-serif; font-size: .92rem; font-weight: 700; color: var(--green-deep); margin-bottom: 8px; }
.quality-desc { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: var(--muted); line-height: 1.7; margin: 0; }

.openings-card { background: #fff; border: 1px solid var(--rule); border-radius: 18px; padding: 48px 44px; }
.role-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--green-pale); border: 1px solid var(--green-border); border-radius: 50px; padding: 9px 18px; font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 600; color: var(--green-deep); margin: 5px; }
.role-pill i { color: var(--green-teal); }
.no-openings-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(56,176,72,.1); border: 1px solid rgba(56,176,72,.2); color: var(--gold); font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .06em; padding: 9px 20px; border-radius: 50px; margin-bottom: 24px; }

.open-app-card { background: var(--green-deep); border-radius: 18px; padding: 44px; position: relative; overflow: hidden; }
.open-app-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(255,255,255,.07); }
.open-app-card::after { content: ''; position: absolute; bottom: -50px; left: -50px; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.open-app-card h3 { font-size: 1.8rem; color: #fff; font-weight: 700; margin-bottom: 14px; position: relative; z-index: 1; }
.open-app-card p { font-family: 'DM Sans', sans-serif; font-size: .92rem; color: rgba(255,255,255,.7); line-height: 1.85; margin-bottom: 28px; position: relative; z-index: 1; }
.btn-cv { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: #fff !important; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .92rem; letter-spacing: .04em; padding: 14px 32px; border-radius: 50px; text-decoration: none; transition: all .25s; text-shadow: 0 1px 3px rgba(0,0,0,.2); position: relative; z-index: 1; box-shadow: 0 4px 18px rgba(27,107,42,.25); }
.btn-cv:hover { background: var(--gold-light); color: #fff !important; transform: translateY(-2px); }
.subject-line { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; padding: 10px 16px; font-family: 'DM Sans', sans-serif; font-size: .8rem; color: rgba(255,255,255,.9); position: relative; z-index: 1; }
.subject-line strong { color: #fff; font-weight: 600; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 991px) {
  .section-pad { padding: 80px 0; }
  .mission-content { padding: 56px 40px; }
  .mission-img-col { min-height: 400px; }
  .path-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .tl-item { flex-direction: column; }
  .tl-left { width: 100%; padding-right: 0; padding-left: 52px; text-align: left; padding-bottom: 16px; }
  .tl-right { width: 100%; padding-left: 52px; }
  .timeline::before { left: 20px; }
  .tl-dot { left: 20px; }
  .story-img-badge { right: 12px; bottom: -20px; }
  .story-img-side-badge { left: 12px; top: 16px; }
  .form-card { padding: 32px 24px; }
  .openings-card, .open-app-card { padding: 32px 24px; }
}
@media (max-width: 767px) {
  .page-hero, .donate-hero { padding: 72px 0 60px; }
  .hero-slide { height: 86vh; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .stat-item:last-child { border-bottom: none; }
  .mission-img-col { min-height: 300px; }
  .mission-content { padding: 48px 28px; }
  .mission-quote-badge { left: 20px; right: 20px; bottom: 20px; }
  .mission-mini-stats { flex-direction: column; gap: 12px; }
  .trust-item { border-right: none; padding: 8px 16px; }
  .cert-item { padding: 14px 18px; }
  .story-img-wrap img { height: 320px; }
}

/* ===================================================
   SUPPLEMENTARY — classes used in page bodies
   =================================================== */

/* About Us hero stats */
.hero-stat-row { display: flex; flex-wrap: wrap; gap: 0; }
.hero-stat { padding: 28px 36px 28px 0; border-right: 1px solid rgba(255,255,255,.12); margin-right: 36px; }
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.6rem; color: var(--gold); font-weight: 700; line-height: 1; }
.hero-stat span { font-family: 'DM Sans', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-top: 6px; display: block; }

/* About Us hero circle deco */
.hero-circle-deco { position: absolute; bottom: -100px; left: -100px; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); }

/* Donate page hero deco */
.hero-deco2 { position: absolute; bottom: -100px; left: -100px; width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); }

/* Donate cheque section */
.cheque-instruction { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--muted); line-height: 1.8; }
.cheque-instruction strong { color: var(--green-deep); }
.cheque-address-box { background: var(--green-pale); border: 1px solid var(--green-border); border-radius: 10px; padding: 16px 20px; margin-top: 16px; font-family: 'DM Sans', sans-serif; font-size: .85rem; color: var(--green-deep); line-height: 1.75; font-weight: 500; }

/* Contact page */
.contact-hero { background: var(--green-deep); padding: 96px 0 76px; position: relative; overflow: hidden; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(56,176,72,.3) 0%, transparent 65%); }
.contact-hero::after { content: ''; position: absolute; top: -160px; right: -160px; width: 480px; height: 480px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.contact-hero h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 18px; }
.contact-hero h1 em { color: #fff; }
.contact-hero p { color: rgba(255,255,255,.7); font-family: 'DM Sans', sans-serif; font-size: 1rem; line-height: 1.85; max-width: 560px; margin: 0; }
.contact-body { padding: 80px 0 100px; }

/* Map section */
.map-section { background: #fff; padding: 0; }
.map-wrap { width: 100%; height: 320px; background: var(--green-pale); position: relative; overflow: hidden; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(.3) contrast(1.05); }

/* Careers page */
.careers-body { padding: 90px 0 100px; }
.section-divider { font-family: 'DM Sans', sans-serif; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.section-divider::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

/* Volunteer section (get-involved body) */
.volunteer-gi-section { padding: 90px 0; background: var(--off); }

/* Form wrapper for get-involved apply section */
.apply-form-section { background: #fff; padding: 80px 0; border-top: 1px solid var(--rule); }
.apply-form-card { background: var(--off); border: 1px solid var(--rule); border-radius: 20px; padding: 48px 44px; max-width: 780px; margin: 0 auto; }

@media (max-width: 767px) {
  .hero-stat { padding: 16px 20px 16px 0; margin-right: 16px; }
  .hero-stat strong { font-size: 2rem; }
  .contact-hero { padding: 72px 0 60px; }
  .apply-form-card { padding: 28px 20px; }
}

/* ===================================================
   LOGO COLOR THEME — targeted overrides
   Logo green + logo navy blue as accent
   =================================================== */

/* Eyebrow lines on LIGHT sections — use logo blue */
.section-eyebrow::before { background: var(--gold); }

/* Eyebrow lines on DARK hero sections — use white */
.hero-eyebrow::before,
.home-hero-eyebrow::before { background: rgba(255,255,255,.7); }

/* Stat strip plus signs — on white bg → logo blue */
.stat-item h3 span { color: var(--gold); }

/* Testimonial stars & divider — on white cards → logo blue */
.star-row { color: var(--gold); }
.testi-divider { background: var(--gold); }

/* Mission quote badge border — on white card → logo blue */
.mission-quote-badge { border-left-color: var(--gold); }

/* Leader avatar initials — on dark green circle → white */
.leader-avatar { color: #fff; }

/* Story/volunteer/careers pull-quote borders — on light bg → logo blue */
.story-lead,
.vol-intro-quote,
.intro-quote { border-left-color: var(--gold); }

/* Story side badge — logo blue */
.story-img-side-badge { background: var(--gold); }
.story-img-side-badge i,
.story-img-side-badge span { color: #fff; }

/* Timeline dot — on white about-us section → logo blue */
.tl-dot { background: var(--gold); box-shadow: 0 0 0 3px var(--green-border); }

/* Office type label — inside white card → logo blue */
.office-type { color: var(--gold); }

/* Value card hover icon → logo blue */
.value-card:hover .value-icon { background: var(--gold); color: #fff; }

/* Cert strip — logo blue background with white text */
.cert-strip { background: var(--gold); }
.cert-item i { color: rgba(255,255,255,.85); }
.cert-item span { color: rgba(255,255,255,.95); }

/* Nav donate button — logo blue on white navbar */
.nav-donate-btn { background: var(--gold); box-shadow: 0 4px 18px rgba(45,58,140,.35); }
.nav-donate-btn:hover { background: var(--gold-light); }

/* Hero CTA button — on dark hero (white bg + dark text) */
.btn-primary-dark { background: #fff; color: var(--green-deep); }
.btn-primary-dark:hover { background: var(--green-pale); color: var(--green-deep); }

/* Volunteer CTA button — on dark green section */
.btn-vol-primary { background: #fff; color: var(--green-deep); }
.btn-vol-primary:hover { background: var(--green-pale); color: var(--green-deep); }

/* Donate page main button — on light bg → logo blue */
.btn-donate-primary { background: var(--gold); box-shadow: 0 8px 28px rgba(45,58,140,.3); }
.btn-donate-primary:hover { background: var(--gold-light); }

/* Footer donate button → logo blue */
.footer-donate-btn { background: var(--gold); color: #fff; }
.footer-donate-btn:hover { background: var(--gold-light); }

/* Send CV button — dark green section → white btn */
.btn-cv { background: #fff; color: var(--green-deep) !important; box-shadow: 0 4px 18px rgba(27,107,42,.25); }
.btn-cv:hover { background: var(--green-pale); color: var(--green-deep) !important; }

/* No-openings badge */
.no-openings-badge { background: rgba(45,58,140,.08); border-color: rgba(45,58,140,.25); color: var(--gold); }

/* Footer hovers — on dark footer bg → white */
.footer-links a:hover,
.footer-bottom a:hover,
.top-bar a:hover,
.breadcrumb-bar a:hover { color: rgba(255,255,255,.9); }

/* Social link hover — use logo blue */
.social-link:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Social big hover — on dark follow section */
.social-big:hover { border-color: rgba(255,255,255,.8); color: #fff; background: rgba(255,255,255,.1); }

/* Carousel active indicator → white */
.carousel-indicators .active { background: #fff; }

/* Vol tile icons — dark section → white */
.vol-tile i { color: rgba(255,255,255,.85); }

/* Contact tile icon */
.tile-icon { color: rgba(255,255,255,.85); }

/* Impact amounts & icons — dark section → white */
.impact-amount { color: #fff; }
.impact-icon { color: rgba(255,255,255,.7); }

/* About hero stats — dark section → white */
.hero-stat strong { color: #fff; }

/* CSR/Careers other section icons — dark → white */
.other-icon { color: rgba(255,255,255,.8); }
.btn-other:hover { border-color: rgba(255,255,255,.8); color: #fff; }

/* Story badge year number — dark badge → white */
.story-img-badge strong { color: #fff; }

/* Promise/closing quote bg dots — already dark section */

/* donatePulse using logo blue glow */
@keyframes donatePulse {
  0%   { box-shadow: 0 0 0 0 rgba(45,58,140,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(45,58,140,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,58,140,0); }
}

/* ===================================================
   BLOG PAGE
   =================================================== */

/* ── Hero ── */
.blog-hero {
  background: var(--green-deep); padding: 96px 0 0;
  position: relative; overflow: hidden;
}
.blog-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(56,176,72,.25) 0%, transparent 65%);
}
.blog-hero::after {
  content: ''; position: absolute; top: -160px; right: -160px;
  width: 480px; height: 480px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.blog-hero-inner {
  position: relative; z-index: 2; padding-bottom: 64px;
}
.blog-hero h1 { font-size: clamp(2.4rem, 4.8vw, 4rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 14px; }
.blog-hero h1 em { color: #fff; }
.blog-hero-lead { color: rgba(255,255,255,.65); font-family: 'DM Sans', sans-serif; font-size: .97rem; line-height: 1.85; max-width: 480px; margin-bottom: 0; }

/* Search bar */
.blog-search-wrap { margin-top: 36px; }
.blog-search-box {
  display: flex; align-items: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px; padding: 6px 6px 6px 22px;
  max-width: 480px; transition: background .2s, border-color .2s;
}
.blog-search-box:focus-within {
  background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5);
}
.blog-search-box input {
  flex: 1; background: none; border: none; outline: none;
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  color: #fff; min-width: 0;
}
.blog-search-box input::placeholder { color: rgba(255,255,255,.45); }
.blog-search-btn {
  background: var(--gold); border: none; border-radius: 50px;
  padding: 9px 20px; color: #fff; font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: .82rem; cursor: pointer;
  transition: background .2s; display: flex; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.blog-search-btn:hover { background: var(--gold-light); }

/* Hero right — featured counter cards */
.blog-hero-stats {
  display: flex; flex-direction: column; justify-content: center;
  gap: 16px; height: 100%; padding-bottom: 64px;
}
.blog-hero-stat-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 22px 24px; transition: background .22s;
}
.blog-hero-stat-card:hover { background: rgba(255,255,255,.12); }
.blog-hero-stat-card strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: #fff; line-height: 1;
}
.blog-hero-stat-card span {
  font-family: 'DM Sans', sans-serif; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.5); margin-top: 4px; display: block;
}
.blog-hero-stat-card i {
  font-size: 1.2rem; color: var(--teal-accent);
  display: block; margin-bottom: 10px;
}

/* Category filter strip below hero */
.blog-filter-strip {
  background: #fff; border-bottom: 1px solid var(--rule);
  padding: 0; position: sticky; top: 72px; z-index: 100;
  box-shadow: 0 2px 16px rgba(27,107,42,.06);
}
.blog-filter-inner {
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; scrollbar-width: none;
  -ms-overflow-style: none;
}
.blog-filter-inner::-webkit-scrollbar { display: none; }
.filter-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 18px 22px; font-family: 'DM Sans', sans-serif;
  font-size: .8rem; font-weight: 600; color: var(--muted);
  border-bottom: 2px solid transparent; white-space: nowrap;
  cursor: pointer; transition: color .18s, border-color .18s;
  text-decoration: none; background: none; border-top: none;
  border-left: none; border-right: none; outline: none;
  letter-spacing: .02em;
}
.filter-pill:hover { color: var(--green-teal); border-bottom-color: var(--green-border); }
.filter-pill.active { color: var(--green-deep); border-bottom-color: var(--green-teal); font-weight: 700; }
.filter-pill .fp-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.filter-count {
  background: var(--green-pale); color: var(--muted);
  font-size: .66rem; font-weight: 700; padding: 2px 7px;
  border-radius: 50px; margin-left: 2px;
}
.filter-pill.active .filter-count { background: var(--green-teal); color: #fff; }

/* Category colours */
.cat-edu  { background: rgba(56,176,72,.1);  color: #1B6B2A; }
.cat-health { background: rgba(23,185,154,.12); color: #0D6B54; }
.cat-women  { background: rgba(45,58,140,.1);  color: #2D3A8C; }
.cat-child  { background: rgba(180,80,40,.1);  color: #7A3010; }
.cat-legal  { background: rgba(80,50,140,.1);  color: #3A1A70; }
.cat-community { background: rgba(27,107,42,.08); color: #1B6B2A; }

.dot-edu  { background: #38B048; }
.dot-health { background: #17B99A; }
.dot-women  { background: #2D3A8C; }
.dot-child  { background: #B45028; }
.dot-legal  { background: #50328C; }
.dot-community { background: #1B6B2A; }

/* ── BODY ── */
.blog-body { padding: 72px 0 100px; }

/* ── FEATURED POST ── */
.featured-post {
  border-radius: 20px; overflow: hidden;
  position: relative; margin-bottom: 72px;
  display: grid; grid-template-columns: 1.1fr 1fr; min-height: 480px;
  box-shadow: 0 20px 60px rgba(27,107,42,.14);
  transition: transform .3s, box-shadow .3s;
}
.featured-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(27,107,42,.2);
}
.featured-post-img {
  position: relative; overflow: hidden; min-height: 360px;
}
.featured-post-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center; transition: transform .5s;
}
.featured-post:hover .featured-post-img img { transform: scale(1.04); }
.featured-post-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(9,31,14,.4) 100%);
}
.featured-post-body {
  background: var(--green-deep); padding: 52px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.featured-post-body::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06); pointer-events: none;
}
.feat-badge-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.feat-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: .65rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.feat-cat-tag {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.8);
  font-family: 'DM Sans', sans-serif; font-size: .72rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.featured-post-body h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem); color: #fff;
  font-weight: 700; line-height: 1.25; margin-bottom: 16px;
}
.featured-post-body p {
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  color: rgba(255,255,255,.62); line-height: 1.8; margin-bottom: 28px;
}
.feat-meta {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  flex-wrap: wrap;
}
.feat-author {
  display: flex; align-items: center; gap: 9px;
  font-family: 'DM Sans', sans-serif;
}
.feat-author-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center;
  justify-content: center; font-family: 'Playfair Display', serif;
  font-size: .82rem; color: #fff; font-weight: 700; flex-shrink: 0;
}
.feat-author-name {
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8);
}
.feat-meta-sep { color: rgba(255,255,255,.2); font-size: .7rem; }
.feat-date, .feat-read {
  font-family: 'DM Sans', sans-serif; font-size: .78rem;
  color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 5px;
}
.feat-date i, .feat-read i { font-size: .72rem; }
.btn-read-more {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green-deep);
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: .84rem; padding: 12px 24px; border-radius: 50px;
  text-decoration: none; transition: all .22s; align-self: flex-start;
}
.btn-read-more:hover { background: var(--green-pale); color: var(--green-deep); transform: translateX(3px); }
.btn-read-more i { transition: transform .2s; }
.btn-read-more:hover i { transform: translateX(4px); }

/* ── BLOG CARD GRID ── */
.blog-card {
  background: #fff; border: 1px solid var(--rule);
  border-radius: 16px; overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
  transition: box-shadow .28s, transform .28s;
}
.blog-card:hover { box-shadow: 0 16px 48px rgba(27,107,42,.12); transform: translateY(-4px); }

.blog-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 10;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,31,14,.35) 0%, transparent 55%);
}
.blog-card-cat {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'DM Sans', sans-serif; font-size: .67rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.blog-card-read-time {
  position: absolute; bottom: 12px; right: 14px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(9,31,14,.65); color: rgba(255,255,255,.9);
  font-family: 'DM Sans', sans-serif; font-size: .7rem; font-weight: 500;
  padding: 4px 10px; border-radius: 50px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

.blog-card-body {
  padding: 24px 24px 20px; flex: 1; display: flex; flex-direction: column;
}
.blog-card-body h3 {
  font-size: 1.2rem; color: var(--green-deep); font-weight: 700;
  line-height: 1.35; margin-bottom: 10px;
  transition: color .2s;
}
.blog-card:hover .blog-card-body h3 { color: var(--green-teal); }
.blog-card-body p {
  font-family: 'DM Sans', sans-serif; font-size: .85rem;
  color: var(--muted); line-height: 1.75; margin-bottom: 20px; flex: 1;
}
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--rule);
}
.blog-card-author { display: flex; align-items: center; gap: 9px; }
.blog-card-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: .76rem;
  color: #fff; font-weight: 700; flex-shrink: 0;
}
.blog-card-author-name {
  font-family: 'DM Sans', sans-serif; font-size: .78rem;
  font-weight: 600; color: var(--green-deep);
}
.blog-card-date {
  font-family: 'DM Sans', sans-serif; font-size: .72rem; color: var(--muted);
}
.blog-read-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 700;
  color: var(--green-teal); text-decoration: none;
  transition: gap .2s, color .2s;
}
.blog-card:hover .blog-read-link { gap: 8px; }
.blog-read-link:hover { color: var(--green-deep); }

/* avatar colour variants */
.av-green  { background: var(--green-teal); }
.av-blue   { background: var(--gold); }
.av-teal   { background: #0D9488; }
.av-deep   { background: var(--green-deep); }

/* ── SIDEBAR (stacked on the right) ── */
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }

.sidebar-card {
  background: #fff; border: 1px solid var(--rule);
  border-radius: 16px; padding: 28px 24px;
}
.sidebar-card-title {
  font-family: 'DM Sans', sans-serif; font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  font-weight: 700; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.sidebar-card-title::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

/* Popular posts */
.popular-post { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--rule); }
.popular-post:last-child { border-bottom: none; padding-bottom: 0; }
.popular-post-img { width: 66px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.popular-post-num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--green-border); line-height: 1; flex-shrink: 0; width: 24px; }
.popular-post-title { font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 600; color: var(--green-deep); line-height: 1.45; margin-bottom: 4px; text-decoration: none; display: block; transition: color .18s; }
.popular-post-title:hover { color: var(--green-teal); }
.popular-post-date { font-family: 'DM Sans', sans-serif; font-size: .72rem; color: var(--muted); }

/* Topics cloud */
.topic-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--off); border: 1px solid var(--rule);
  border-radius: 50px; padding: 7px 14px;
  font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 600;
  color: var(--green-deep); text-decoration: none; transition: all .18s;
}
.topic-pill:hover { background: var(--green-teal); border-color: var(--green-teal); color: #fff; }
.topic-pill span { font-size: .68rem; color: var(--muted); transition: color .18s; }
.topic-pill:hover span { color: rgba(255,255,255,.7); }

/* Subscribe in sidebar */
.sidebar-subscribe { background: var(--green-deep); border-radius: 16px; padding: 28px 24px; border: none; }
.sidebar-subscribe .sidebar-card-title { color: rgba(255,255,255,.5); }
.sidebar-subscribe .sidebar-card-title::after { background: rgba(255,255,255,.1); }
.sidebar-subscribe h4 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: #fff; font-weight: 700; margin-bottom: 10px; }
.sidebar-subscribe p { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.sidebar-email-input { display: flex; gap: 0; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; overflow: hidden; }
.sidebar-email-input input { flex: 1; background: none; border: none; outline: none; padding: 11px 16px; font-family: 'DM Sans', sans-serif; font-size: .84rem; color: #fff; min-width: 0; }
.sidebar-email-input input::placeholder { color: rgba(255,255,255,.35); }
.sidebar-email-input button { background: var(--gold); border: none; padding: 10px 18px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .78rem; color: #fff; cursor: pointer; transition: background .2s; flex-shrink: 0; }
.sidebar-email-input button:hover { background: var(--gold-light); }

/* ── LOAD MORE ── */
.load-more-wrap { text-align: center; padding-top: 52px; }
.btn-load-more {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--rule);
  color: var(--green-deep); font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: .88rem; padding: 14px 36px;
  border-radius: 50px; cursor: pointer; transition: all .22s;
}
.btn-load-more:hover { border-color: var(--green-teal); color: var(--green-teal); background: var(--green-pale); }

/* ── NEWSLETTER CTA (full width) ── */
.blog-newsletter {
  background: var(--green-deep); padding: 90px 0;
  position: relative; overflow: hidden;
}
.blog-newsletter::before {
  content: ''; position: absolute; top: -140px; right: -140px;
  width: 480px; height: 480px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.blog-newsletter::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
}
.nl-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal-accent); font-weight: 600; margin-bottom: 14px;
}
.nl-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.blog-newsletter h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); color: #fff; font-weight: 700; margin-bottom: 12px; }
.blog-newsletter p { font-family: 'DM Sans', sans-serif; color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.8; max-width: 420px; margin-bottom: 0; }
.nl-form-col { display: flex; flex-direction: column; justify-content: center; }
.nl-form-wrap {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 32px 28px;
}
.nl-form-label { font-family: 'DM Sans', sans-serif; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: 10px; display: block; }
.nl-input-row { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-input {
  flex: 1; min-width: 180px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); border-radius: 50px;
  padding: 12px 20px; font-family: 'DM Sans', sans-serif;
  font-size: .88rem; color: #fff; outline: none; transition: border-color .2s;
}
.nl-input::placeholder { color: rgba(255,255,255,.35); }
.nl-input:focus { border-color: rgba(255,255,255,.5); }
.nl-submit {
  background: var(--gold); border: none; border-radius: 50px;
  padding: 12px 24px; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: .88rem; color: #fff;
  cursor: pointer; transition: all .22s; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.nl-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.nl-note { font-family: 'DM Sans', sans-serif; font-size: .74rem; color: rgba(255,255,255,.35); margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.nl-note i { color: var(--teal-accent); font-size: .8rem; }
.nl-social-proof { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
.nl-avatars { display: flex; }
.nl-avatar { width: 28px; height: 28px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); overflow: hidden; margin-left: -8px; background: var(--green-mid); display: flex; align-items: center; justify-content: center; font-size: .6rem; color: #fff; font-weight: 700; font-family: 'DM Sans', sans-serif; }
.nl-avatar:first-child { margin-left: 0; }
.nl-social-proof span { font-family: 'DM Sans', sans-serif; font-size: .78rem; color: rgba(255,255,255,.5); }
.nl-social-proof strong { color: rgba(255,255,255,.8); }

/* ── Responsive ── */
@media (max-width: 1199px) {
  .featured-post { grid-template-columns: 1fr 1fr; }
  .featured-post-body { padding: 40px 36px; }
}
@media (max-width: 991px) {
  .featured-post { grid-template-columns: 1fr; min-height: auto; }
  .featured-post-img { min-height: 280px; }
  .featured-post-img::after { background: linear-gradient(to top, rgba(9,31,14,.5) 0%, transparent 60%); }
  .blog-hero h1 { font-size: clamp(2rem, 5.5vw, 3rem); }
  .blog-filter-strip { top: 62px; }
  .blog-hero-stats { flex-direction: row; flex-wrap: wrap; padding-bottom: 40px; }
  .blog-hero-stat-card { flex: 1; min-width: 140px; }
}
@media (max-width: 767px) {
  .blog-hero { padding: 72px 0 0; }
  .featured-post-body { padding: 32px 24px; }
  .nl-input-row { flex-direction: column; }
  .nl-submit { width: 100%; justify-content: center; }
  .blog-body { padding: 48px 0 72px; }
}

/* ===================================================
   BLOG DETAIL PAGE
   =================================================== */

/* Hero */
.blog-detail-hero {
  position: relative; min-height: 520px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.blog-detail-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.blog-detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(9,31,14,.92) 0%,
    rgba(9,31,14,.6) 50%,
    rgba(9,31,14,.2) 100%);
}
.blog-detail-hero-content {
  position: relative; z-index: 2;
  padding: 80px 0 60px; width: 100%;
}
.blog-detail-cat {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif; font-size: .7rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 18px;
}
.blog-detail-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: #fff; font-weight: 700; line-height: 1.15;
  margin-bottom: 24px; max-width: 820px;
}
.blog-detail-meta {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.bd-author {
  display: flex; align-items: center; gap: 10px;
}
.bd-author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: .9rem;
  color: #fff; font-weight: 700; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.3);
}
.bd-author-name {
  font-family: 'DM Sans', sans-serif; font-size: .88rem;
  font-weight: 600; color: rgba(255,255,255,.9);
}
.bd-author-role {
  font-family: 'DM Sans', sans-serif; font-size: .74rem;
  color: rgba(255,255,255,.5);
}
.bd-meta-sep { color: rgba(255,255,255,.2); }
.bd-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif; font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.bd-meta-item i { font-size: .75rem; color: var(--teal-accent); }

/* Progress bar */
.read-progress-bar {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; background: var(--green-teal);
  width: 0%; transition: width .1s linear;
}

/* Article layout */
.blog-detail-body { padding: 72px 0 100px; }
.blog-article-col { max-width: 740px; }

/* Article content */
.article-content { font-family: 'Inter', sans-serif; }
.article-content .lead-para {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--green-deep);
  line-height: 1.7; margin-bottom: 32px;
  border-left: 4px solid var(--gold); padding-left: 24px;
}
.article-content p {
  font-size: .97rem; color: var(--muted); line-height: 1.95;
  margin-bottom: 22px;
}
.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; color: var(--green-deep);
  font-weight: 700; margin: 48px 0 18px; line-height: 1.25;
}
.article-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--green-deep); margin: 36px 0 14px;
}
.article-content ul, .article-content ol {
  font-family: 'DM Sans', sans-serif; font-size: .95rem;
  color: var(--muted); line-height: 1.85;
  padding-left: 22px; margin-bottom: 24px;
}
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--green-deep); font-weight: 600; }
.article-content a { color: var(--green-teal); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-content a:hover { color: var(--green-deep); }

/* Pull quote */
.pull-quote {
  background: var(--green-pale); border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0; padding: 28px 32px;
  margin: 40px 0;
}
.pull-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: var(--green-deep);
  line-height: 1.55; margin: 0 0 12px; font-weight: 600;
}
.pull-quote cite {
  font-family: 'DM Sans', sans-serif; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-style: normal;
}

/* Inline image */
.article-img-wrap { margin: 40px 0; border-radius: 14px; overflow: hidden; }
.article-img-wrap img { width: 100%; object-fit: cover; display: block; }
.article-img-caption {
  font-family: 'DM Sans', sans-serif; font-size: .78rem;
  color: var(--muted); padding: 10px 0 0; text-align: center;
  font-style: italic;
}

/* Stats callout box */
.stats-callout {
  background: var(--green-deep); border-radius: 16px;
  padding: 36px 32px; margin: 40px 0;
  display: flex; gap: 0; text-align: center;
}
.stats-callout-item { flex: 1; }
.stats-callout-item strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: #fff; line-height: 1;
}
.stats-callout-item span {
  font-family: 'DM Sans', sans-serif; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.5); margin-top: 6px; display: block;
}
.stats-callout-item + .stats-callout-item {
  border-left: 1px solid rgba(255,255,255,.12);
}

/* Tags row */
.article-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--rule); }
.article-tags-label { font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.article-tag { display: inline-flex; align-items: center; background: var(--off); border: 1px solid var(--rule); border-radius: 50px; padding: 6px 14px; font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 500; color: var(--green-deep); text-decoration: none; transition: all .18s; }
.article-tag:hover { background: var(--green-pale); border-color: var(--green-teal); color: var(--green-teal); }

/* Share row */
.article-share { display: flex; align-items: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.article-share-label { font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.share-btn { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--rule); border-radius: 50px; padding: 8px 16px; font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 600; color: var(--text); text-decoration: none; transition: all .18s; cursor: pointer; }
.share-btn:hover { background: var(--green-pale); border-color: var(--green-teal); color: var(--green-teal); }
.share-btn i { font-size: .9rem; }

/* Author bio card */
.author-bio-card {
  background: var(--off); border: 1px solid var(--rule);
  border-radius: 16px; padding: 32px 28px;
  display: flex; gap: 22px; align-items: flex-start;
  margin-top: 52px;
}
.author-bio-avatar {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  color: #fff; font-weight: 700;
}
.author-bio-name { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.author-bio-role { font-family: 'DM Sans', sans-serif; font-size: .78rem; color: var(--muted); margin-bottom: 12px; }
.author-bio-text { font-family: 'DM Sans', sans-serif; font-size: .86rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* Sticky TOC sidebar */
.blog-toc-sidebar { position: sticky; top: 100px; }
.toc-card { background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 24px 22px; margin-bottom: 24px; }
.toc-card-title { font-family: 'DM Sans', sans-serif; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.toc-card-title::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-list li { margin-bottom: 2px; }
.toc-list a { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: var(--muted); text-decoration: none; padding: 7px 10px; border-radius: 8px; display: flex; align-items: center; gap: 8px; transition: all .18s; border-left: 2px solid transparent; }
.toc-list a:hover, .toc-list a.active { color: var(--green-teal); background: var(--green-pale); border-left-color: var(--green-teal); }
.toc-list a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; opacity: .5; }

/* Donate nudge */
.donate-nudge { background: var(--green-deep); border-radius: 14px; padding: 28px 24px; text-align: center; }
.donate-nudge i { font-size: 2rem; color: rgba(255,255,255,.85); margin-bottom: 12px; display: block; }
.donate-nudge h4 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: #fff; font-weight: 700; margin-bottom: 8px; }
.donate-nudge p { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 18px; }
.donate-nudge a { display: inline-flex !important; align-items: center !important; gap: 8px !important; background: #ffffff !important; color: var(--green-deep) !important; font-family: 'DM Sans', sans-serif !important; font-weight: 700 !important; font-size: .88rem !important; padding: 13px 28px !important; border-radius: 50px !important; text-decoration: none !important; transition: all .22s !important; width: auto !important; border: none !important; }
.donate-nudge a:hover { background: var(--green-pale) !important; color: var(--green-deep) !important; transform: translateY(-2px) !important; box-shadow: 0 6px 20px rgba(0,0,0,.15) !important; }

/* Related posts */
.related-posts-section { padding: 72px 0; background: var(--off); border-top: 1px solid var(--rule); }
.related-card { background: #fff; border: 1px solid var(--rule); border-radius: 14px; overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; text-decoration: none; }
.related-card:hover { box-shadow: 0 12px 40px rgba(27,107,42,.1); transform: translateY(-3px); }
.related-card-img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.related-card:hover .related-card-img img { transform: scale(1.05); }
.related-card-body { padding: 20px 20px 16px; flex: 1; display: flex; flex-direction: column; }
.related-card-cat { font-family: 'DM Sans', sans-serif; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; display: block; color: var(--green-teal); }
.related-card-body h4 { font-size: 1.05rem; color: var(--green-deep); font-weight: 700; line-height: 1.35; margin-bottom: 10px; flex: 1; }
.related-card:hover h4 { color: var(--green-teal); }
.related-card-meta { font-family: 'DM Sans', sans-serif; font-size: .76rem; color: var(--muted); display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--rule); margin-top: auto; }
.related-card-meta i { color: var(--green-teal); font-size: .72rem; }

/* Responsive */
@media (max-width: 991px) {
  .blog-detail-hero { min-height: 400px; }
  .blog-detail-hero-content h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .blog-toc-sidebar { position: static; }
  .stats-callout { flex-direction: column; gap: 20px; }
  .stats-callout-item + .stats-callout-item { border-left: none; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; }
}
@media (max-width: 767px) {
  .blog-detail-body { padding: 48px 0 72px; }
  .author-bio-card { flex-direction: column; }
  .pull-quote { padding: 22px 22px; }
  .article-content .lead-para { font-size: 1.15rem; }
}

/* donate-nudge button — styled inline on element */

/* Blog hero image (replaces stat cards) */
.blog-hero-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.blog-hero-img {
  width: 100%; height: 420px;
  object-fit: cover; object-position: center;
  display: block; border-radius: 20px;
}
.blog-hero-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(9,31,14,.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 14px 20px;
  display: flex; flex-direction: column;
}
.bhib-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: #fff; line-height: 1;
}
.bhib-label {
  font-family: 'DM Sans', sans-serif; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.5); margin-top: 4px;
}

/* ── Programme card with bottom image ── */
.prog-card-img { padding-bottom: 0; }
.prog-card-photo-wrap {
  margin: 20px -30px -30px -30px;
  overflow: hidden;
  border-radius: 0 0 14px 14px;
  height: 180px;
}
.prog-card-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .45s;
}
.prog-card:hover .prog-card-photo { transform: scale(1.06); }

/* ── Programme card gallery thumbnails ── */
.prog-card-img { padding-bottom: 0; }
.prog-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 150px;
  gap: 3px;
  margin: 20px -30px -30px -30px;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  cursor: pointer;
}
.prog-thumb-wrap { position: relative; overflow: hidden; }
.prog-thumb {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s, filter .3s;
}
.prog-gallery:hover .prog-thumb { filter: brightness(.88); }
.prog-gallery:hover .prog-thumb-wrap:first-child .prog-thumb { transform: scale(1.06); }
.prog-thumb-last { position: relative; }
.prog-thumb-more {
  position: absolute; inset: 0;
  background: rgba(9,31,14,.62);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  font-family: 'DM Sans', sans-serif; font-size: .82rem;
  font-weight: 700; color: #fff;
  transition: background .2s;
}
.prog-gallery:hover .prog-thumb-more { background: rgba(27,107,42,.75); }
.prog-thumb-more i { font-size: 1.1rem; }

/* ── Lightbox ── */
.lb-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.94);
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
}
.lb-overlay.active { display: flex; }
.lb-img-container {
  display: flex; align-items: center; justify-content: center;
  flex: 1; padding: 60px 80px 20px;
}
.lb-img-container img {
  max-width: 85vw; max-height: 72vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  display: block;
}
.lb-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; z-index: 10001;
  transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.22); }
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2);
  color: #fff; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; z-index: 10001;
  transition: background .2s;
}
.lb-nav:hover { background: rgba(27,107,42,.7); border-color: var(--green-teal); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-bottom {
  padding: 16px 0 28px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  width: 100%;
}
.lb-thumb-strip { display: flex; gap: 8px; justify-content: center; }
.lb-thumb-mini {
  width: 60px; height: 44px; object-fit: cover;
  border-radius: 6px; opacity: .45; cursor: pointer;
  border: 2px solid transparent; transition: opacity .2s, border-color .2s;
}
.lb-thumb-mini.active { opacity: 1; border-color: var(--green-teal); }
.lb-thumb-mini:hover { opacity: .8; }
.lb-counter {
  font-family: 'DM Sans', sans-serif; font-size: .78rem;
  color: rgba(255,255,255,.4); letter-spacing: .08em;
}

/* ===================================================
   AREAS OF IMPACT — Full Image Overlay Cards
   =================================================== */
.impact-card {
  position: relative; border-radius: 16px;
  overflow: hidden; cursor: pointer; display: block;
  background: var(--green-deep);
}
.impact-card-tall  { height: 520px; }
.impact-card-half  { height: 252px; }
.impact-card-medium { height: 300px; }

.impact-card-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.impact-card:hover .impact-card-bg { transform: scale(1.07); }

.impact-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(9,31,14,.92) 0%,
    rgba(9,31,14,.55) 45%,
    rgba(9,31,14,.15) 100%
  );
  transition: background .3s;
}
.impact-card:hover .impact-card-overlay {
  background: linear-gradient(
    to top,
    rgba(9,31,14,.95) 0%,
    rgba(9,31,14,.65) 50%,
    rgba(9,31,14,.2) 100%
  );
}

/* Number */
.impact-card-num {
  position: absolute; top: 18px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,.2); line-height: 1;
  z-index: 2;
}

/* Icon badge */
.impact-card-icon {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
  transition: background .25s;
}
.impact-card:hover .impact-card-icon {
  background: var(--green-teal);
  border-color: var(--green-teal);
}

/* Content */
.impact-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 22px; z-index: 2;
}
.impact-card-body h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #fff; line-height: 1.35; margin-bottom: 0;
  transition: margin .3s;
}
.impact-card:hover .impact-card-body h5 { margin-bottom: 8px; }

.impact-card-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem; color: rgba(255,255,255,.68);
  line-height: 1.65; margin: 0;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, opacity .3s;
  opacity: 0;
}
.impact-card:hover .impact-card-body p {
  max-height: 80px; opacity: 1;
}

.impact-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 0; max-height: 0; overflow: hidden;
  font-family: 'DM Sans', sans-serif; font-size: .76rem;
  font-weight: 700; color: var(--teal-accent);
  opacity: 0; transition: max-height .35s, opacity .3s, margin .3s;
  white-space: nowrap;
}
.impact-card:hover .impact-card-link {
  max-height: 30px; opacity: 1; margin-top: 10px;
}

/* Taller card — show desc always */
.impact-card-tall .impact-card-body h5 { font-size: 1.2rem; margin-bottom: 10px; }
.impact-card-tall .impact-card-body p {
  max-height: 80px; opacity: 1;
  font-size: .85rem;
}
.impact-card-tall .impact-card-link {
  max-height: 30px; opacity: .7; margin-top: 12px;
}
.impact-card-tall:hover .impact-card-link { opacity: 1; }

/* Responsive */
@media (max-width: 991px) {
  .impact-card-tall { height: 380px; }
  .impact-card-half { height: 200px; }
}
@media (max-width: 767px) {
  .impact-card-tall, .impact-card-half { height: 260px; }
  .impact-card-medium { height: 220px; }
  .impact-card-body p { max-height: 60px; opacity: 1; }
  .impact-card-link { max-height: 30px; opacity: .8; margin-top: 8px; }
}

/* Always show text on all impact cards (like tall card) */
.impact-card-body p {
  max-height: 80px !important;
  opacity: 1 !important;
}
.impact-card-link {
  max-height: 30px !important;
  opacity: .8 !important;
  margin-top: 8px !important;
}
.impact-card:hover .impact-card-link { opacity: 1 !important; }
.impact-card-body h5 { margin-bottom: 8px !important; }
