/* ============================================================
   WE HEARD Foundation — Main Stylesheet + Animations
   ============================================================ */

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-56px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(56px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.75); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(6deg); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(212,104,30,.45); }
  70%  { box-shadow: 0 0 0 18px rgba(212,104,30,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,104,30,0); }
}
@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes shimmer {
  0%   { background-position: -400% 0; }
  100% { background-position: 400% 0; }
}
@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(0.4); }
  55%  { opacity: 1; transform: scale(1.08); }
  75%  { transform: scale(0.94); }
  100% { transform: scale(1); }
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}
@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(40px,-28px) scale(1.1); }
  66%       { transform: translate(-24px,32px) scale(0.92); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(-50px,36px) scale(0.88); }
  66%       { transform: translate(30px,-40px) scale(1.08); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-22px); }
}
@keyframes underlineDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes borderGlow {
  0%, 100% { border-color: var(--border); }
  50%       { border-color: var(--primary); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes progressBar {
  from { width: 0; }
  to   { width: 100%; }
}

/* ============================================================
   SCROLL-REVEAL SYSTEM
   ============================================================ */

/* Initial hidden states — added by JS */
.anim-ready {
  transition-property: opacity, transform;
  transition-duration: 0.72s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
/* Stagger delay via CSS variable --i set by JS */
.anim-ready { transition-delay: calc(var(--i, 0) * 0.09s); }

.anim-fade-up    { opacity: 0; transform: translateY(44px); }
.anim-fade-down  { opacity: 0; transform: translateY(-32px); }
.anim-fade-left  { opacity: 0; transform: translateX(-52px); }
.anim-fade-right { opacity: 0; transform: translateX(52px); }
.anim-scale      { opacity: 0; transform: scale(0.78); }
.anim-fade       { opacity: 0; }

/* Triggered state */
.anim-ready.in-view {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   HERO SECTION — LOAD ANIMATIONS (CSS only, no JS needed)
   ============================================================ */

.hero {
  background: linear-gradient(-45deg, #1A0D04, #3D1F08, #2E1A0A, #180C00) !important;
  background-size: 400% 400% !important;
  animation: gradientFlow 14s ease infinite;
}
.hero-badge   { animation: fadeInDown 0.75s cubic-bezier(0.22,1,.36,1) 0.15s both; }
.hero h1      { animation: fadeInUp   0.85s cubic-bezier(0.22,1,.36,1) 0.32s both; }
.hero > .container > .hero-content > p
              { animation: fadeInUp   0.8s  cubic-bezier(0.22,1,.36,1) 0.50s both; }
.hero-actions { animation: fadeInUp   0.75s cubic-bezier(0.22,1,.36,1) 0.68s both; }
.hero-quote   { animation: fadeIn     1.1s  cubic-bezier(0.22,1,.36,1) 0.90s both; }

/* Page hero (inner pages) */
.page-hero .breadcrumb { animation: fadeIn    0.6s ease 0.05s both; }
.page-hero h1          { animation: fadeInUp  0.8s cubic-bezier(0.22,1,.36,1) 0.18s both; }
.page-hero > .container > p
                       { animation: fadeInUp  0.75s cubic-bezier(0.22,1,.36,1) 0.35s both; }

/* ============================================================
   AMBIENT HERO ORBS — injected by JS
   ============================================================ */

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.hero-orb-1 {
  width: 480px; height: 480px;
  top: -140px; right: -120px;
  background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 70%);
  animation: orb-drift-1 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 320px; height: 320px;
  bottom: -80px; left: 15%;
  background: radial-gradient(circle, rgba(212,104,30,.09) 0%, transparent 70%);
  animation: orb-drift-2 11s ease-in-out infinite;
}
.hero-orb-3 {
  width: 180px; height: 180px;
  top: 38%; left: 4%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  animation: orb-drift-3 8s ease-in-out infinite;
}

/* ============================================================
   NAV — Animated underline
   ============================================================ */

.nav-list > li > a { position: relative; }
.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22,1,.36,1);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after { transform: scaleX(1); }

/* ============================================================
   HEADER — Scrolled state
   ============================================================ */

.site-header {
  animation: fadeInDown 0.55s cubic-bezier(0.22,1,.36,1) 0.05s both;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,.14);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Top bar */
.top-bar { animation: fadeInDown 0.45s ease both; }

/* ============================================================
   BRAND LOGO — image version
   ============================================================ */

/* Header logo */
.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,.64,1), opacity 0.25s ease;
}
.brand-logo-img:hover {
  transform: scale(1.07);
  opacity: .9;
}

/* Footer logo — sits on dark background, needs white pill */
.footer-logo-wrap {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-logo-wrap:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(0,0,0,.45);
}
.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Keep the old brand-logo-box styles only for any page that still uses the text fallback */
.brand-logo-box {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -.5px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,.64,1);
}
.brand-logo-box:hover { transform: scale(1.12) rotate(-6deg); }

/* ============================================================
   BUTTONS — Ripple
   ============================================================ */

.btn { position: relative; overflow: hidden; }
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  transform: scale(0);
  animation: ripple-anim 0.65s linear;
  pointer-events: none;
}
.btn-primary:hover .ripple { background: rgba(255,255,255,.22); }

/* ============================================================
   ACRONYM STRIP
   ============================================================ */

.acronym-letter {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34,1.56,.64,1), color 0.3s ease;
}
.acronym-item:hover .acronym-letter {
  transform: translateY(-6px) scale(1.15);
  color: white;
}
.acronym-item {
  transition: background 0.25s ease;
  cursor: default;
}

/* ============================================================
   STAT CARDS — hover & animation
   ============================================================ */

.stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.stat-icon {
  transition: transform 0.4s cubic-bezier(0.34,1.56,.64,1);
}
.stat-card:hover .stat-icon {
  transform: scale(1.15) rotate(-8deg);
}

/* ============================================================
   PROGRAM CARDS — hover icon bounce
   ============================================================ */

.program-icon {
  transition: transform 0.4s cubic-bezier(0.34,1.56,.64,1);
}
.program-card:hover .program-icon {
  transform: scale(1.2) rotate(-5deg);
}
.program-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* ============================================================
   MISSION VISUAL — floating number
   ============================================================ */

.mission-visual { overflow: hidden; }
.mission-visual .big-num {
  animation: float 5s ease-in-out infinite;
  display: block;
}
.mission-visual .big-num:nth-child(4) { animation-delay: -1.5s; }
.mission-visual .big-num:nth-child(7) { animation-delay: -3s; }

/* ============================================================
   MEMBERSHIP CARDS
   ============================================================ */

.membership-card {
  transition: transform 0.3s cubic-bezier(0.22,1,.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */

.blog-card-img {
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.read-more:hover { gap: 10px; color: var(--primary-dark); }

/* ============================================================
   FOOTER SOCIAL LINKS
   ============================================================ */

.social-link {
  transition: transform 0.25s cubic-bezier(0.34,1.56,.64,1),
              border-color 0.25s ease,
              color 0.25s ease,
              background 0.25s ease;
}
.social-link:hover { transform: translateY(-5px); }

/* ============================================================
   QUOTE BANNER
   ============================================================ */

.quote-banner blockquote {
  transition: transform 0.3s ease;
}
.quote-banner:hover blockquote {
  transform: scale(1.01);
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--green));
  background-size: 200% 100%;
  z-index: 9999;
  transition: width 0.12s linear;
  animation: shimmer 3s linear infinite;
}

/* ============================================================
   CHIP — subtle hover
   ============================================================ */

.chip {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212,104,30,.2);
}

/* ============================================================
   CONTACT ITEMS
   ============================================================ */

.contact-item {
  transition: transform 0.25s ease;
}
.contact-item:hover {
  transform: translateX(6px);
}
.contact-icon {
  transition: transform 0.3s cubic-bezier(0.34,1.56,.64,1);
}
.contact-item:hover .contact-icon {
  transform: scale(1.15);
}

/* ============================================================
   FORM CONTROLS — focus animation
   ============================================================ */

.form-control {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.form-control:focus {
  transform: translateY(-1px);
}

/* ============================================================
   OBJECTIVE ITEMS
   ============================================================ */

.objective-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.objective-item:hover {
  transform: translateX(8px);
}
.obj-num {
  transition: transform 0.3s cubic-bezier(0.34,1.56,.64,1), background 0.25s ease;
}
.objective-item:hover .obj-num {
  transform: scale(1.1) rotate(-5deg);
  background: var(--primary-dark);
}

/* ============================================================
   FOOTER COLS — stagger reveal handled by JS
   ============================================================ */

.footer-col ul li a {
  position: relative;
  transition: color 0.22s ease, padding-left 0.22s ease;
}
.footer-col ul li a:hover {
  padding-left: 6px;
}

/* ============================================================
   PAGE LOAD — body fade-in
   ============================================================ */

body {
  animation: fadeIn 0.45s ease both;
}

/* ============================================================
   DONATE AMOUNT BUTTONS — pulse on active
   ============================================================ */

.amount-btn {
  transition: all 0.25s cubic-bezier(0.22,1,.36,1);
}
.amount-btn.active {
  animation: pulse-ring 1.8s cubic-bezier(0.455,.03,.515,.955) infinite;
}

/* ============================================================
   BACK-TO-TOP BUTTON
   ============================================================ */

.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(212,104,30,.4);
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
  border: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary:        #D4681E;
  --primary-light:  #F08040;
  --primary-dark:   #A84E12;
  --green:          #2E7D32;
  --green-light:    #43A047;
  --accent:         #F5A623;
  --cream:          #FFF7EE;
  --cream-dark:     #F5EDE0;
  --dark:           #1A1A1A;
  --text:           #333333;
  --text-muted:     #6B6B6B;
  --border:         #E5DDD4;
  --white:          #FFFFFF;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.08);
  --shadow-md:      0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:      0 16px 48px rgba(0,0,0,.14);
  --radius:         10px;
  --radius-lg:      20px;
  --transition:     0.25s ease;
  --max-width:      1180px;
  --font-head:      'Poppins', sans-serif;
  --font-body:      'Open Sans', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- Utility ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-green  { color: var(--green); }
.bg-cream    { background: var(--cream); }
.bg-dark     { background: var(--dark); color: var(--white); }
.bg-green    { background: var(--green); color: var(--white); }
.bg-primary  { background: var(--primary); color: var(--white); }

.chip {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--cream-dark);
  color: var(--primary);
  margin-bottom: 12px;
}
.chip-white { background: rgba(255,255,255,.2); color: var(--white); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-header { margin-bottom: 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(212,104,30,.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,104,30,.4); }
.btn-outline {
  border: 2px solid currentColor;
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(46,125,50,.3);
}
.btn-green:hover { background: #1B5E20; transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar a { color: inherit; transition: color var(--transition); }
.top-bar a:hover { color: var(--accent); }
.top-bar-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-contact span { display: flex; align-items: center; gap: 6px; }
.top-socials { display: flex; gap: 4px; align-items: center; }
.top-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition), background var(--transition);
}
.top-socials a:hover { color: var(--accent); background: rgba(255,255,255,.1); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -.5px;
}
.brand-text { font-family: var(--font-head); }
.brand-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.3px;
}
.brand-text small {
  font-size: .68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active { background: var(--cream); color: var(--primary); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  padding: 8px;
  z-index: 999;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: all var(--transition);
}
.dropdown li a:hover { background: var(--cream); color: var(--primary); }

.nav-donate { margin-left: 8px; }
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--dark);
  padding: 6px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1A0D04 0%, #3D1F08 40%, #2E1A0A 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,104,30,.6) 0%, rgba(26,13,4,.8) 100%);
}
.hero .container { position: relative; z-index: 1; padding: 80px 24px; }
.hero-content { max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-quote {
  margin-top: 56px;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 500px;
}
.hero-quote p {
  font-size: .95rem;
  font-style: italic;
  color: rgba(255,255,255,.8);
  margin: 0;
}

/* ---------- Acronym Strip ---------- */
.acronym-strip { background: var(--primary); color: white; padding: 48px 0; }
.acronym-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0;
}
.acronym-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.2);
  transition: background var(--transition);
}
.acronym-item:last-child { border-right: none; }
.acronym-item:hover { background: rgba(0,0,0,.1); }
.acronym-letter {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.acronym-word {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}

/* ---------- Stats ---------- */
.stats { background: var(--cream); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
}
.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- Programs ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.program-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.program-card:hover::before { transform: scaleX(1); }
.program-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.pi-orange { background: #FEF0E6; }
.pi-green  { background: #E8F5E9; }
.pi-blue   { background: #E3F2FD; }
.pi-red    { background: #FFEBEE; }
.pi-purple { background: #F3E5F5; }
.pi-teal   { background: #E0F2F1; }
.pi-gold   { background: #FFFDE7; }

.program-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.program-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.program-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag {
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--cream);
  color: var(--primary-dark);
}

/* ---------- Mission Block ---------- */
.mission-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mission-block.reverse { direction: rtl; }
.mission-block.reverse > * { direction: ltr; }
.mission-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.mission-text p { color: var(--text-muted); margin-bottom: 16px; }
.mission-visual {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.mission-visual::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -80px; right: -80px;
}
.mission-visual .big-num {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.mission-visual .big-label { font-size: .9rem; opacity: .85; font-weight: 500; }
.mission-visual .big-divider { width: 40px; height: 3px; background: rgba(255,255,255,.4); margin: 20px auto; border-radius: 2px; }

/* ---------- Objectives ---------- */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.objective-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.objective-item:hover { box-shadow: var(--shadow-sm); border-color: var(--primary); }
.obj-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.objective-item p { font-size: .88rem; color: var(--text); line-height: 1.6; }

/* ---------- Membership ---------- */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.membership-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  background: var(--white);
  transition: all var(--transition);
  position: relative;
}
.membership-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(212,104,30,.1);
}
.membership-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.membership-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mem-type {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.mem-price {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.mem-price sub { font-size: 1rem; font-weight: 500; vertical-align: middle; }
.mem-period { font-size: .82rem; color: var(--text-muted); margin-bottom: 20px; }
.mem-features { text-align: left; margin: 20px 0; }
.mem-features li {
  font-size: .88rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text);
}
.mem-features li:last-child { border-bottom: none; }
.mem-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ---------- Donate ---------- */
.donate-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
.amount-btn {
  padding: 12px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  transition: all var(--transition);
  cursor: pointer;
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}
.donate-form {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.donate-form h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  text-align: center;
}

/* ---------- Form ---------- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(212,104,30,.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-item strong { display: block; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 2px; }
.contact-item a { color: var(--primary); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--primary); color: var(--primary); background: var(--cream); }

/* ---------- Quote Banner ---------- */
.quote-banner {
  background: linear-gradient(135deg, var(--green) 0%, #1B5E20 100%);
  padding: 72px 24px;
  text-align: center;
  color: white;
}
.quote-banner blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  font-style: italic;
  max-width: 780px;
  margin: 0 auto 16px;
  line-height: 1.5;
}
.quote-banner cite { font-size: .85rem; opacity: .7; font-style: normal; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 24px;
  text-align: center;
  color: white;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section p { font-size: 1.05rem; opacity: .85; max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--primary);
}
.blog-card-body { padding: 24px; }
.blog-meta { font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.read-more { font-size: .85rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 4px; }
.read-more:hover { gap: 8px; }

/* ---------- Page Hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #3D1F08 100%);
  padding: 72px 24px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,104,30,.4) 0%, rgba(0,0,0,.6) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.page-hero p { font-size: 1.05rem; opacity: .8; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  opacity: .7;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { opacity: .5; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0F0F0F;
  color: rgba(255,255,255,.72);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .brand-logo-box {
  width: 52px; height: 52px;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-brand p { font-size: .88rem; line-height: 1.8; margin-top: 12px; opacity: .7; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: .85rem; }
.footer-contact-item .icon { flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-bottom a { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mission-block { grid-template-columns: 1fr; gap: 40px; }
  .mission-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  nav { display: none; position: fixed; inset: 0; top: 0; background: rgba(26,26,26,.97); flex-direction: column; justify-content: center; align-items: center; z-index: 999; }
  nav.open { display: flex; }
  .nav-list { flex-direction: column; gap: 0; text-align: center; }
  .nav-list > li > a { font-size: 1.3rem; padding: 14px 24px; color: white; }
  .nav-list > li > a:hover { background: rgba(255,255,255,.1); }
  .has-dropdown:hover .dropdown { display: none; }
  .dropdown { position: static; background: transparent; border: none; box-shadow: none; }
  .dropdown li a { color: rgba(255,255,255,.7); font-size: 1rem; }
  .nav-donate { margin: 16px 0 0; }
  .menu-toggle { display: block; z-index: 1000; position: relative; }
  .top-bar { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .acronym-grid { grid-template-columns: repeat(4, 1fr); }
  .donate-form { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .acronym-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
