/*
Theme Name:  Kusaidia Charity
Theme URI:   https://kusaidiacharityinc.com
Author:      Kusaidia Charity Inc.
Description: Official WordPress theme for Kusaidia Charity Inc. — a non-profit humanitarian organization providing food, clothing, shelter, and education to children worldwide.
Version:     4.0
License:     GNU General Public License v2 or later
Text Domain: kusaidia
*/

/* =============================================================
   CSS CUSTOM PROPERTIES
   ============================================================= */
:root {
  --navy:        #1a2f5e;
  --navy-dark:   #0f1e3d;
  --navy-mid:    #1e3668;
  --navy-light:  #2a4080;
  --gold:        #c9a84c;
  --gold-light:  #dfc06a;
  --white:       #ffffff;
  --off-white:   #f7f6f2;
  --light-gray:  #eceef4;
  --mid-gray:    #8a9ab8;
  --text:        #2c3550;
  --text-soft:   #5a6a8a;
  --shadow-sm:   0 2px 8px rgba(26,47,94,.10);
  --shadow:      0 4px 20px rgba(26,47,94,.13);
  --shadow-lg:   0 10px 40px rgba(26,47,94,.18);
  --radius:      8px;
  --radius-lg:   14px;
  --ease:        .22s ease;
  --max-w:       1180px;
}

/* =============================================================
   RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: Georgia, 'Times New Roman', serif; line-height: 1.7; color: var(--text); background: var(--white); }
img   { max-width: 100%; height: auto; display: block; }
a     { color: var(--navy); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold); }
h1,h2,h3,h4,h5 { font-family: Georgia, serif; color: var(--navy); line-height: 1.3; }
ul    { list-style: none; }

/* =============================================================
   LAYOUT HELPERS
   ============================================================= */
.wrap        { max-width: var(--max-w); margin: 0 auto; padding: 0 22px; }
.sec         { padding: 52px 0; }
.sec-sm      { padding: 36px 0; }
.sec-title   { font-size: clamp(1.55rem, 2.8vw, 2.1rem); margin-bottom: 10px; }
.sec-title em{ color: var(--gold); font-style: normal; }
.eyebrow     { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 6px; display: block; }
.rule        { width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin: 14px 0 22px; }
.rule-c      { margin-left: auto; margin-right: auto; }
.tc          { text-align: center; }
.lead        { color: var(--text-soft); font-size: 1.02rem; line-height: 1.75; max-width: 650px; margin: 0 auto 36px; }

/* =============================================================
   TAGS
   ============================================================= */
.tag {
  display: inline-block; padding: 3px 11px; border-radius: 20px;
  font-size: .73rem; font-weight: 700; letter-spacing: .04em;
  background: var(--light-gray); color: var(--navy); margin: 2px;
}
.tag-green  { background: #d4edda; color: #155724; }
.tag-yellow { background: #fff3cd; color: #856404; }
.tag-blue   { background: #cce5ff; color: #004085; }

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: 6px;
  font-size: .93rem; font-weight: 700; letter-spacing: .02em;
  cursor: pointer; transition: all var(--ease); border: 2px solid transparent;
  font-family: inherit; line-height: 1.4;
}
.btn-gold {
  background: var(--gold); color: var(--navy-dark); border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  color: var(--navy-dark); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.38);
}
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white);
}
.btn-navy {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light); border-color: var(--navy-light);
  color: var(--white); transform: translateY(-2px);
}
.btn-block { width: 100%; text-align: center; display: block; }

/* =============================================================
   HEADER
   ============================================================= */
#site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--navy-dark);
  box-shadow: 0 2px 14px rgba(0,0,0,.28);
}
.hdr-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 68px; gap: 16px;
}
/* Logo */
.site-logo { display: flex; align-items: center; gap: 11px; }
.site-logo img {
  height: 48px; width: auto; border-radius: 5px;
  object-fit: contain; background: transparent;
}
.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-name    { font-size: 1.0rem; font-weight: 700; color: var(--white); }
.logo-sub     { font-size: .68rem; color: var(--gold); letter-spacing: .09em; text-transform: uppercase; margin-top: 2px; }
/* Nav */
.primary-nav { display: flex; align-items: center; gap: 2px; }
.primary-nav a {
  display: block; padding: 7px 13px; color: rgba(255,255,255,.85);
  font-size: .87rem; font-weight: 600; border-radius: 5px;
  transition: all var(--ease); letter-spacing: .01em;
}
.primary-nav a:hover,
.primary-nav a.current { color: var(--gold); background: rgba(255,255,255,.07); }
.nav-donate {
  background: var(--gold) !important; color: var(--navy-dark) !important;
  border-radius: 6px !important; padding: 7px 16px !important;
}
.nav-donate:hover { background: var(--gold-light) !important; color: var(--navy-dark) !important; }
/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 23px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all var(--ease);
}

/* =============================================================
   HERO  (homepage)
   ============================================================= */
.hero {
  background: linear-gradient(130deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  padding: 56px 0 48px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 44px; align-items: center; position: relative; z-index: 1;
}
/* ---- Large Logo Column ---- */
.hero-logo-col { display: flex; justify-content: center; align-items: center; }
.hero-logo-img {
  width: 340px; max-width: 100%; height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 0 3px rgba(201,168,76,.25);
}
/* ---- Text Column ---- */
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-block; background: rgba(201,168,76,.18);
  color: var(--gold); border: 1px solid rgba(201,168,76,.38);
  padding: 5px 14px; border-radius: 20px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2rem, 4.2vw, 3rem); color: var(--white);
  line-height: 1.15; margin-bottom: 16px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-body {
  font-size: 1.05rem; color: rgba(255,255,255,.82);
  line-height: 1.75; margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
/* Stats bar */
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius); margin-top: 44px; overflow: hidden;
  position: relative; z-index: 1;
}
.stat {
  text-align: center; padding: 20px 12px;
  border-right: 1px solid rgba(255,255,255,.09);
}
.stat:last-child { border-right: none; }
.stat-n { display: block; font-size: 1.7rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 3px; }
.stat-l { font-size: .74rem; color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .06em; }

/* =============================================================
   PILLAR CARDS  (homepage "Four Pillars")
   ============================================================= */
.pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 32px; }
.pillar {
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg); padding: 26px 22px;
  box-shadow: var(--shadow-sm); transition: all var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,.45); }
.pillar-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.pillar h3   { font-size: 1.08rem; margin-bottom: 7px; }
.pillar p    { font-size: .88rem; color: var(--text-soft); line-height: 1.6; }

/* =============================================================
   QUOTE BAND
   ============================================================= */
.quote-band { background: var(--navy); padding: 36px 0; text-align: center; }
.quote-band blockquote {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--white);
  font-style: italic; max-width: 720px; margin: 0 auto; line-height: 1.65;
}
.quote-band cite { display: block; margin-top: 10px; color: var(--gold); font-size: .82rem; font-style: normal; letter-spacing: .06em; }

/* =============================================================
   CTA BAND
   ============================================================= */
.cta-band { background: linear-gradient(130deg, var(--navy-dark), var(--navy-light)); padding: 46px 0; text-align: center; }
.cta-band h2 { color: var(--white); font-size: 1.75rem; margin-bottom: 10px; }
.cta-band p  { color: rgba(255,255,255,.78); margin-bottom: 26px; font-size: .98rem; }
.cta-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* =============================================================
   PAGE HERO  (inner pages)
   ============================================================= */
.page-hero { background: linear-gradient(130deg, var(--navy-dark), var(--navy)); padding: 44px 0 36px; text-align: center; }
.page-hero h1   { color: var(--white); font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.page-hero p    { color: rgba(255,255,255,.78); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold); }

/* =============================================================
   ABOUT PAGE
   ============================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-body h3 { font-size: 1.22rem; margin: 24px 0 9px; }
.about-body h3:first-child { margin-top: 0; }
.about-body p  { color: var(--text-soft); margin-bottom: 13px; font-size: .95rem; }
.check-list li { padding: 5px 0 5px 22px; position: relative; color: var(--text-soft); font-size: .93rem; }
.check-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: .75rem; top: 9px; }
.mission-box { background: var(--navy); border-radius: var(--radius-lg); padding: 28px; margin-top: 22px; }
.mission-box h4 { color: var(--gold); font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 12px; }
.mission-box p  { color: rgba(255,255,255,.84); font-style: italic; font-size: .95rem; line-height: 1.8; }
.vision-box { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 26px; }
.vision-box h3  { font-size: 1.1rem; margin-bottom: 10px; }
.vision-box p   { font-size: .88rem; color: var(--text-soft); margin-bottom: 14px; }
.arrow-list li  { padding: 7px 0 7px 20px; position: relative; font-size: .88rem; color: var(--text-soft); border-bottom: 1px solid var(--light-gray); }
.arrow-list li:last-child { border-bottom: none; }
.arrow-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

/* =============================================================
   PROGRAMS PAGE
   ============================================================= */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px,1fr)); gap: 24px; margin-top: 36px; }
.prog-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: all var(--ease); }
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,.4); }
.prog-icon  { font-size: 2.4rem; margin-bottom: 12px; }
.prog-card h3  { font-size: 1.12rem; margin-bottom: 9px; }
.prog-card p   { font-size: .9rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 13px; }
.prog-tags     { display: flex; flex-wrap: wrap; gap: 5px; }

/* =============================================================
   GALLERY PAGE
   ============================================================= */
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; justify-content: center; }
.g-tab {
  padding: 8px 20px; border-radius: 22px; border: 2px solid var(--light-gray);
  background: var(--white); color: var(--text); font-size: .86rem; font-weight: 700;
  cursor: pointer; transition: all var(--ease); font-family: inherit;
}
.g-tab:hover, .g-tab.active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}
.g-section    { display: none; }
.g-section.active { display: block; }
.g-header {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--off-white); border: 1px solid var(--light-gray);
  border-radius: var(--radius); padding: 20px 22px; margin-bottom: 22px;
}
.g-header-icon { font-size: 1.9rem; flex-shrink: 0; }
.g-header h3   { font-size: 1.1rem; margin-bottom: 3px; }
.g-header p    { font-size: .86rem; color: var(--text-soft); }
.photo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr));
  gap: 13px; margin-bottom: 22px;
}
.photo-item {
  aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  background: var(--light-gray); cursor: pointer; position: relative;
  box-shadow: var(--shadow-sm); transition: transform var(--ease);
}
.photo-item:hover { transform: scale(1.04); }
.photo-item img   { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease); }
.photo-item:hover img { transform: scale(1.07); }
.photo-overlay {
  position: absolute; inset: 0; background: rgba(15,30,61,0);
  display: flex; align-items: flex-end; padding: 10px;
  transition: background var(--ease);
}
.photo-item:hover .photo-overlay { background: rgba(15,30,61,.52); }
.photo-cap { color: var(--white); font-size: .76rem; opacity: 0; transition: opacity var(--ease); }
.photo-item:hover .photo-cap { opacity: 1; }
.photo-placeholder {
  aspect-ratio: 1; border-radius: var(--radius); border: 2px dashed var(--mid-gray);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 7px; background: var(--off-white); color: var(--mid-gray);
  font-size: .78rem; text-align: center; padding: 14px;
}
.photo-placeholder span { font-size: 1.7rem; }

/* Upload panel (admin only) */
.upload-panel {
  background: var(--off-white); border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg); padding: 22px; margin-top: 14px;
}
.upload-panel h4 { font-size: .95rem; margin-bottom: 14px; color: var(--navy); }
.drop-zone {
  border: 2px dashed var(--gold); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; background: rgba(201,168,76,.04);
  cursor: pointer; transition: background var(--ease); margin-bottom: 14px;
}
.drop-zone:hover { background: rgba(201,168,76,.1); }
.drop-zone .dz-icon { font-size: 2.2rem; color: var(--gold); }
.drop-zone p   { color: var(--text-soft); font-size: .87rem; margin-top: 7px; }
.drop-zone p strong { color: var(--navy); }
.drop-zone input[type=file] { display: none; }
.upload-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-bottom: 11px; }
.upload-row input, .upload-row select {
  padding: 9px 13px; border: 1px solid var(--light-gray); border-radius: 6px;
  font-size: .88rem; color: var(--text); background: var(--white);
  font-family: inherit; width: 100%;
}
.upload-row input:focus, .upload-row select:focus { outline: none; border-color: var(--navy); }
.upload-notice {
  background: #fff8e1; border: 1px solid #ffe082; border-radius: 6px;
  padding: 9px 13px; font-size: .8rem; color: #5a4000; margin-top: 10px;
}
.upload-status { font-size: .86rem; margin-top: 9px; min-height: 20px; }
.admin-bar-notice {
  background: var(--navy-mid); color: var(--white);
  padding: 9px 22px; font-size: .83rem; display: flex; align-items: center; gap: 10px;
}
.admin-bar-notice a { color: var(--gold); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lb-close {
  position: absolute; top: 18px; right: 22px; color: var(--white);
  font-size: 2.2rem; line-height: 1; background: none; border: none;
  cursor: pointer; transition: color var(--ease);
}
.lb-close:hover { color: var(--gold); }

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.65fr; gap: 48px; align-items: start; }
.info-item { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 20px; }
.info-icon {
  width: 42px; height: 42px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.info-text strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); margin-bottom: 2px; }
.info-text span   { font-size: .92rem; color: var(--text-soft); }
.info-text a      { color: var(--navy); }
.donate-nudge { background: var(--navy); border-radius: var(--radius-lg); padding: 22px; margin-top: 26px; text-align: center; }
.donate-nudge h4  { color: var(--gold); margin-bottom: 8px; font-size: 1rem; }
.donate-nudge p   { color: rgba(255,255,255,.78); font-size: .86rem; margin-bottom: 15px; }
.form-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 22px; font-size: 1.2rem; }
.f-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.f-group  { margin-bottom: 16px; }
.f-group label { display: block; font-size: .83rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.f-group input, .f-group select, .f-group textarea {
  width: 100%; padding: 10px 13px; border: 1px solid var(--light-gray); border-radius: 6px;
  font-size: .9rem; color: var(--text); font-family: inherit;
  transition: border-color var(--ease); background: var(--white);
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,47,94,.07);
}
.f-group textarea { resize: vertical; min-height: 110px; }
.req { color: var(--gold); }
.form-success { background: #d4edda; border: 1px solid #c3e6cb; border-radius: 6px; padding: 13px 16px; color: #155724; font-size: .9rem; margin-bottom: 18px; }

/* =============================================================
   DONATE PAGE
   ============================================================= */
.donate-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.donate-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.donate-card h2 { margin-bottom: 6px; }
.donate-card > p { color: var(--text-soft); font-size: .93rem; margin-bottom: 24px; }
.amt-label   { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--navy); margin-bottom: 9px; }
.amt-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-bottom: 12px; }
.amt-btn {
  padding: 11px 8px; border: 2px solid var(--light-gray); border-radius: var(--radius);
  background: var(--white); font-size: .97rem; font-weight: 700; color: var(--navy);
  cursor: pointer; transition: all var(--ease); font-family: inherit; text-align: center;
}
.amt-btn:hover, .amt-btn.sel {
  border-color: var(--gold); background: rgba(201,168,76,.08);
}
.custom-wrap { display: flex; border: 2px solid var(--light-gray); border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; }
.custom-wrap span { padding: 10px 13px; background: var(--light-gray); color: var(--text-soft); font-size: .97rem; }
.custom-wrap input { flex: 1; padding: 10px 13px; border: none; font-size: .97rem; font-family: inherit; color: var(--text); outline: none; }
.freq-wrap { display: flex; gap: 7px; margin-bottom: 20px; flex-wrap: wrap; }
.freq-btn {
  flex: 1; min-width: 90px; padding: 8px; border: 2px solid var(--light-gray);
  border-radius: 6px; background: var(--white); font-size: .82rem; font-weight: 700;
  cursor: pointer; text-align: center; transition: all var(--ease); font-family: inherit;
}
.freq-btn:hover, .freq-btn.sel {
  border-color: var(--navy); background: var(--navy); color: var(--white);
}
.secure-line { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--text-soft); justify-content: center; margin-top: 12px; }
.impact-item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius); padding: 16px; margin-bottom: 13px; box-shadow: var(--shadow-sm); transition: all var(--ease); }
.impact-item:hover { border-color: var(--gold); transform: translateX(3px); }
.impact-amt { background: var(--navy); color: var(--gold); font-size: .92rem; font-weight: 700; padding: 9px 12px; border-radius: 6px; min-width: 60px; text-align: center; flex-shrink: 0; }
.impact-desc strong { display: block; font-size: .9rem; margin-bottom: 2px; color: var(--navy); }
.impact-desc p { font-size: .8rem; color: var(--text-soft); line-height: 1.5; }

/* =============================================================
   FOOTER
   ============================================================= */
#site-footer { background: var(--navy-dark); color: rgba(255,255,255,.72); padding: 46px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.09); }
.foot-brand .fb-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.fb-k { width: 40px; height: 40px; background: var(--gold); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; color: var(--navy-dark); }
.fb-name { font-size: .92rem; font-weight: 700; color: var(--white); }
.foot-brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 11px; }
.foot-brand a { color: var(--gold); font-size: .87rem; }
.foot-col h5 { color: var(--white); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 13px; }
.foot-col li  { margin-bottom: 7px; }
.foot-col a   { color: rgba(255,255,255,.62); font-size: .86rem; transition: color var(--ease); }
.foot-col a:hover { color: var(--gold); }
.foot-bottom {
  padding: 16px 0; display: flex; align-items: center;
  justify-content: space-between; font-size: .8rem; gap: 14px; flex-wrap: wrap;
}
.foot-bottom p { color: rgba(255,255,255,.45); }
.foot-bottom em { color: var(--gold); font-style: italic; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 960px) {
  .hero-grid     { grid-template-columns: 1fr; text-align: center; }
  .hero-logo-col { order: -1; }
  .hero-logo-img { width: 230px; }
  .hero-actions  { justify-content: center; }
  .hero-stats    { grid-template-columns: repeat(2,1fr); }
  .pillars       { grid-template-columns: repeat(2,1fr); }
  .about-grid    { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .donate-grid   { grid-template-columns: 1fr; }
  .foot-grid     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hamburger       { display: flex; }
  .primary-nav     { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy-dark); padding: 14px; gap: 3px; box-shadow: 0 8px 22px rgba(0,0,0,.28); }
  .primary-nav.open{ display: flex; }
  .primary-nav a   { padding: 9px 14px; }
  .pillars         { grid-template-columns: 1fr 1fr; }
  .programs-grid   { grid-template-columns: 1fr; }
  .f-row           { grid-template-columns: 1fr; }
  .foot-grid       { grid-template-columns: 1fr; gap: 24px; }
  .amt-grid        { grid-template-columns: repeat(2,1fr); }
  .freq-wrap       { }
  .upload-row      { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .pillars { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
}
