/*
Theme Name: Greater Today Community
Theme URI: https://greatertoday.org
Author: Greater Today, Inc.-NFP
Author URI: https://greatertoday.org
Description: Official WordPress theme for Greater Today, Inc.-NFP - Community Empowerment, Hope & Action
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: greater-today
Tags: nonprofit, community, custom-colors, custom-menu, featured-images, footer-widgets
*/

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1b2d3e;
  --navy-mid: #2a4259;
  --navy-light: #e8eef3;
  --sage: #5a7a6a;
  --sage-light: #e8f0ec;
  --sage-mid: #c2d5ca;
  --sage-dark: #3d5a4d;
  --brown: #6b4f3a;
  --brown-light: #f2ebe3;
  --brown-mid: #c9a98a;
  --cream: #faf6ef;
  --cream-dark: #f0e9de;
  --warm-white: #fffef9;
  --gold: #b8863f;
  --gold-light: #f5ead8;
  --gold-mid: #ddb870;
  --ink: #1a1714;
  --ink-muted: #4a4540;
  --ink-faint: #8a8480;
  --border: rgba(90, 122, 106, 0.18);
  --border-navy: rgba(27, 45, 62, 0.15);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}

.site-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); text-decoration: none; }
a:hover { color: var(--sage-dark); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: 42px; font-weight: 600; }
h2 { font-size: 28px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; font-size: 13px; font-weight: 600; padding: 0.7rem 1.5rem; border-radius: 6px; border: none; cursor: pointer; text-decoration: none; transition: opacity 0.2s; }
.btn:hover { opacity: 0.88; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy-out { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-sage { background: var(--sage); color: #fff; }
.btn-sage-out { background: transparent; color: var(--sage); border: 2px solid var(--sage); }
.btn-gold { background: var(--gold); color: #fff; font-weight: 700; }
.btn-brown { background: var(--brown); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white-out { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-submit { background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; padding: 0.8rem 1.75rem; border: none; border-radius: 6px; cursor: pointer; }

/* ===== UTILITY ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--sage); background: var(--sage-light);
  padding: 0.3rem 0.85rem; border-radius: 5px; width: fit-content; font-weight: 700;
}
.sec-eyebrow {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--sage); font-weight: 700; margin-bottom: 0.3rem;
}
.sec-title { font-family: 'Lora', serif; font-size: 28px; color: var(--navy); font-weight: 600; }
.sec-body { font-size: 14px; color: var(--ink-muted); line-height: 1.85; max-width: 640px; margin-top: 0.75rem; }
.sec-top { margin-bottom: 1.75rem; }

/* ===== NAVIGATION ===== */
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem; border-bottom: 1.5px solid var(--border);
  background: var(--warm-white); position: sticky; top: 0; z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-mark {
  width: 38px; height: 38px; border-radius: 8px; background: var(--navy);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 7px 8px; gap: 3px; position: relative; flex-shrink: 0;
}
.nav-bar { border-radius: 2px; width: 5px; }
.nav-bar-1 { height: 8px; background: rgba(194,213,202,0.5); }
.nav-bar-2 { height: 13px; background: var(--sage-mid); }
.nav-bar-3 { height: 18px; background: var(--gold-mid); }
.nav-arrow-tip {
  position: absolute; top: 7px; right: 9px;
  border-left: 3px solid transparent; border-right: 3px solid transparent;
  border-bottom: 5px solid var(--gold); width: 0; height: 0;
}
.nav-text { display: flex; flex-direction: column; gap: 1px; }
.nav-name { font-family: 'Lora', serif; font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1; }
.nav-sub { font-size: 9px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--sage); font-weight: 600; }
.nav-menu { display: flex; gap: 1.3rem; list-style: none; }
.nav-menu a { font-size: 12px; font-weight: 600; color: var(--ink-muted); text-decoration: none; letter-spacing: 0.03em; }
.nav-menu a:hover { color: var(--sage); }
.btn-donate-nav {
  background: var(--gold); color: #fff; font-size: 12px; font-weight: 700;
  border: none; padding: 0.5rem 1.2rem; border-radius: 6px; cursor: pointer; text-decoration: none;
}

/* Mobile menu toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero-section {
  display: grid; grid-template-columns: 1.2fr 1fr;
  min-height: 430px; border-bottom: 1.5px solid var(--border);
}
.hero-text {
  padding: 3.5rem 2.5rem 3rem 2rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.1rem;
  background: var(--cream);
}
.hero-heading { font-family: 'Lora', serif; font-size: 42px; line-height: 1.1; font-weight: 600; color: var(--navy); }
.hero-heading em { font-style: italic; color: var(--sage); }
.hero-tribute {
  font-size: 12px; font-style: italic; color: var(--brown);
  padding: 0.55rem 1rem; border-left: 3px solid var(--gold);
  background: var(--gold-light); border-radius: 0 5px 5px 0; line-height: 1.6;
}
.hero-tribute strong { color: var(--gold); font-style: normal; font-weight: 700; }
.hero-sub { font-size: 14px; color: var(--ink-muted); line-height: 1.85; max-width: 390px; }
.hero-family-note { font-size: 12px; color: var(--sage-dark); font-style: italic; border-top: 1px solid var(--border); padding-top: 0.75rem; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-visual {
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 2.5rem; position: relative; overflow: hidden;
}
.hero-dot-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(194,213,202,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}
.jb-medallion { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.med-ring { width: 112px; height: 112px; border-radius: 50%; border: 1.5px solid var(--gold-mid); display: flex; align-items: center; justify-content: center; }
.med-inner { width: 90px; height: 90px; border-radius: 50%; border: 1px solid rgba(184,134,63,0.35); display: flex; align-items: center; justify-content: center; }
.med-core { width: 66px; height: 66px; border-radius: 50%; background: var(--sage-dark); display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-size: 26px; color: var(--gold-mid); font-style: italic; font-weight: 600; }
.hero-vis-title { font-family: 'Lora', serif; font-size: 21px; color: #fff; text-align: center; font-style: italic; line-height: 1.45; position: relative; z-index: 1; }
.hero-vis-sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(221,184,112,0.75); text-align: center; position: relative; z-index: 1; }
.hero-stripe { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sage), var(--gold), var(--brown)); }

/* ===== STATS BAR ===== */
.stats-bar { display: flex; border-bottom: 1.5px solid var(--border); }
.stat-item { flex: 1; padding: 1.3rem 1.4rem; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.15rem; text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-val { font-family: 'Lora', serif; font-size: 24px; color: var(--sage); font-weight: 600; }
.stat-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); font-weight: 600; }

/* ===== REACH BAND ===== */
.reach-band {
  background: var(--sage-dark); padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1.5rem; border-bottom: 1.5px solid var(--border);
}
.reach-icon { font-size: 22px; flex-shrink: 0; }
.reach-text { font-size: 13px; color: rgba(255,255,255,0.9); line-height: 1.6; }
.reach-text strong { color: var(--gold-mid); font-weight: 700; }

/* ===== MISSION BAND ===== */
.mission-band {
  display: grid; grid-template-columns: 1fr 1px 1fr;
  padding: 2.25rem 2rem; gap: 2rem;
  background: var(--navy); border-bottom: 3px solid var(--gold-mid);
}
.mission-divider { background: rgba(184,134,63,0.25); align-self: stretch; }
.mission-eyebrow { font-size: 9px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold-mid); font-weight: 700; margin-bottom: 0.4rem; }
.mission-text { font-family: 'Lora', serif; font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.9); font-style: italic; }

/* ===== PILLARS ===== */
.section-standard { padding: 2.75rem 2rem; border-bottom: 1.5px solid var(--border); }
.section-cream { background: var(--cream-dark); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pillar-card { border-radius: 10px; padding: 1.5rem 1.2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.pillar-card:nth-child(1) { background: var(--sage-light); border: 1px solid var(--sage-mid); }
.pillar-card:nth-child(2) { background: var(--navy-light); border: 1px solid var(--border-navy); }
.pillar-card:nth-child(3) { background: var(--brown-light); border: 1px solid rgba(107,79,58,0.15); }
.pillar-card:nth-child(4) { background: var(--gold-light); border: 1px solid rgba(184,134,63,0.25); }
.pillar-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.pillar-card:nth-child(1) .pillar-icon { background: var(--sage-mid); }
.pillar-card:nth-child(2) .pillar-icon { background: rgba(27,45,62,0.12); }
.pillar-card:nth-child(3) .pillar-icon { background: var(--brown-mid); }
.pillar-card:nth-child(4) .pillar-icon { background: var(--gold-mid); }
.pillar-num { font-size: 9px; color: var(--ink-faint); letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; }
.pillar-title { font-family: 'Lora', serif; font-size: 15px; line-height: 1.35; font-weight: 600; color: var(--navy); }
.pillar-desc { font-size: 12px; color: var(--ink-muted); line-height: 1.65; }

/* ===== PROGRAMS ===== */
.programs-wrap { display: grid; grid-template-columns: 2fr 1fr; gap: 0; border-bottom: 1.5px solid var(--border); }
.programs-left { padding: 2.75rem 2rem; border-right: 1.5px solid var(--border); }
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.program-card { background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.program-tag { display: inline-block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em; padding: 0.25rem 0.65rem; border-radius: 4px; width: fit-content; font-weight: 700; }
.program-card:nth-child(1) .program-tag { background: var(--sage-light); color: var(--sage-dark); }
.program-card:nth-child(2) .program-tag { background: var(--navy-light); color: var(--navy); }
.program-card:nth-child(3) .program-tag { background: var(--brown-light); color: var(--brown); }
.program-card:nth-child(4) .program-tag { background: var(--gold-light); color: #7a5520; }
.program-name { font-family: 'Lora', serif; font-size: 15.5px; line-height: 1.35; color: var(--navy); font-weight: 600; }
.program-desc { font-size: 12px; color: var(--ink-muted); line-height: 1.65; }
.program-link { font-size: 11px; color: var(--sage); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-top: auto; cursor: pointer; text-decoration: none; }
.metrics-col { padding: 2.75rem 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; }
.metric-card { border-radius: 9px; padding: 1.2rem 1.3rem; }
.metric-card.m1 { background: var(--navy); border: 1px solid rgba(184,134,63,0.4); }
.metric-card.m2 { background: var(--sage-light); border: 1px solid var(--sage-mid); }
.metric-card.m3 { background: var(--brown-light); border: 1px solid rgba(107,79,58,0.2); }
.metric-card.m4 { background: var(--gold-light); border: 1px solid rgba(184,134,63,0.3); }
.metric-num { font-family: 'Lora', serif; font-size: 34px; font-weight: 600; }
.metric-card.m1 .metric-num { color: var(--gold-mid); }
.metric-card.m2 .metric-num { color: var(--sage); }
.metric-card.m3 .metric-num { color: var(--brown); }
.metric-card.m4 .metric-num { color: var(--gold); }
.metric-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 0.15rem; }
.metric-card.m1 .metric-label { color: rgba(255,255,255,0.45); }
.metric-card.m2 .metric-label { color: var(--sage-dark); }
.metric-card.m3 .metric-label, .metric-card.m4 .metric-label { color: var(--brown); }

/* ===== BOOKS ===== */
.books-section {
  background: var(--cream-dark);
  border-top: 1px solid rgba(184,134,63,0.3);
  border-bottom: 1px solid rgba(184,134,63,0.3);
  padding: 2.75rem 2rem;
}
.books-intro { font-size: 14px; color: var(--ink-muted); line-height: 1.85; max-width: 640px; margin-bottom: 0; }
.books-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.75rem; }
.book-card { background: var(--warm-white); border: 1.5px solid rgba(184,134,63,0.3); border-radius: 10px; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.book-spine { width: 52px; height: 68px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.book-card:nth-child(1) .book-spine { background: var(--navy); }
.book-card:nth-child(2) .book-spine { background: var(--sage-dark); }
.book-card:nth-child(3) .book-spine { background: var(--brown); }
.book-header { display: flex; gap: 1rem; align-items: flex-start; }
.book-author-tag { font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; width: fit-content; }
.book-card:nth-child(1) .book-author-tag { background: var(--navy-light); color: var(--navy); }
.book-card:nth-child(2) .book-author-tag { background: var(--sage-light); color: var(--sage-dark); }
.book-card:nth-child(3) .book-author-tag { background: var(--brown-light); color: var(--brown); }
.book-title { font-family: 'Lora', serif; font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-top: 0.4rem; }
.book-author-name { font-size: 12px; color: var(--ink-muted); font-style: italic; }
.book-desc { font-size: 12px; color: var(--ink-muted); line-height: 1.65; }
.book-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 12px; font-weight: 700; color: var(--gold); text-decoration: none;
  margin-top: auto; padding: 0.45rem 0.9rem;
  border: 1.5px solid var(--gold-mid); border-radius: 5px; width: fit-content;
}
.book-link:hover { background: var(--gold-light); color: var(--brown); }

/* ===== DOCUMENTARY ===== */
.doc-section {
  background: var(--navy); padding: 2rem 2rem;
  border-bottom: 1.5px solid var(--border);
  display: flex; gap: 1.75rem; align-items: flex-start;
}
.doc-icon-wrap {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(184,134,63,0.2); border: 1px solid var(--gold-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.doc-title { font-family: 'Lora', serif; font-size: 17px; color: #fff; font-weight: 600; margin-bottom: 0.4rem; }
.doc-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.75; }
.doc-text strong { color: var(--gold-mid); }

/* ===== TWO COL ADVOCACY ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-bottom: 1.5px solid var(--border); }
.two-col-left { padding: 2.75rem 2rem; border-right: 1.5px solid var(--border); }
.two-col-right { padding: 2.75rem 2rem; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-top: 1.5rem; }
.svc-card { border-radius: 8px; padding: 1.1rem 1rem; display: flex; flex-direction: column; gap: 0.3rem; }
.svc-card:nth-child(1) { background: var(--sage-light); }
.svc-card:nth-child(2) { background: var(--navy-light); }
.svc-card:nth-child(3) { background: var(--brown-light); }
.svc-card:nth-child(4) { background: var(--gold-light); }
.svc-icon { font-size: 17px; margin-bottom: 0.2rem; }
.svc-label { font-size: 13px; font-weight: 600; color: var(--navy); }
.svc-sub { font-size: 11px; color: var(--ink-muted); line-height: 1.5; }
.partner-list { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.25rem; }
.partner-row { border-radius: 8px; padding: 0.9rem 1.1rem; border: 1px solid var(--border); display: flex; align-items: flex-start; gap: 0.75rem; }
.partner-pip { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 0.38rem; }
.partner-row:nth-child(1) .partner-pip { background: var(--sage); }
.partner-row:nth-child(2) .partner-pip { background: var(--navy); }
.partner-row:nth-child(3) .partner-pip { background: var(--brown); }
.partner-row:nth-child(4) .partner-pip { background: var(--gold); }
.partner-label { font-size: 12px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.partner-sub { font-size: 11px; color: var(--ink-faint); line-height: 1.4; margin-top: 0.15rem; }

/* ===== ENGAGE ===== */
.engage-section { padding: 2.75rem 2rem; border-bottom: 1.5px solid var(--border); }
.engage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.75rem; }
.engage-card { background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 1.5rem 1rem; text-align: center; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; text-decoration: none; transition: border-color 0.2s; }
.engage-card:hover { border-color: var(--sage); }
.engage-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 21px; }
.engage-card:nth-child(1) .engage-icon { background: var(--gold-light); }
.engage-card:nth-child(2) .engage-icon { background: var(--sage-light); }
.engage-card:nth-child(3) .engage-icon { background: var(--navy-light); }
.engage-card:nth-child(4) .engage-icon { background: var(--brown-light); }
.engage-label { font-size: 13px; font-weight: 600; color: var(--navy); }
.engage-sub { font-size: 11px; color: var(--ink-faint); line-height: 1.5; }

/* ===== FAMILY STORY ===== */
.family-story-section { background: var(--cream-dark); padding: 3rem 2rem; border-bottom: 1.5px solid var(--border); }
.family-story-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; margin-top: 2rem; align-items: start; }
.family-portrait { background: var(--navy); border-radius: 12px; padding: 2.25rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; text-align: center; }
.family-emblem-wrap { width: 90px; height: 90px; border-radius: 50%; border: 2.5px solid var(--gold-mid); display: flex; align-items: center; justify-content: center; background: var(--sage-dark); }
.family-emblem-text { font-family: 'Lora', serif; font-size: 14px; color: var(--gold-mid); font-style: italic; line-height: 1.3; text-align: center; }
.family-portrait-name { font-family: 'Lora', serif; font-size: 19px; color: #fff; font-weight: 600; }
.family-portrait-role { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold-mid); font-weight: 700; }
.family-portrait-tags { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; width: 100%; }
.fam-tag { font-size: 11px; padding: 0.35rem 0.75rem; border-radius: 5px; text-align: center; }
.fam-tag.jb { background: rgba(184,134,63,0.2); color: var(--gold-mid); font-style: italic; }
.fam-tag.role { background: rgba(90,122,106,0.2); color: var(--sage-mid); }
.daughters-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.daughter-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 9px; padding: 1.1rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.daughter-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--sage-light); border: 1px solid var(--sage-mid); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.daughter-title { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.daughter-sub { font-size: 11px; color: var(--ink-faint); line-height: 1.5; margin-top: 0.15rem; }
.family-story-text { display: flex; flex-direction: column; gap: 1rem; }
.family-story-text p { font-size: 14px; color: var(--ink-muted); line-height: 1.9; }
.family-quote { font-family: 'Lora', serif; font-size: 17px; font-style: italic; color: var(--sage-dark); line-height: 1.6; border-left: 3px solid var(--sage); padding: 0.65rem 1rem; background: var(--sage-light); border-radius: 0 6px 6px 0; }
.family-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* ===== PARTNERS ===== */
.partners-section { padding: 2.25rem 2rem; border-bottom: 1.5px solid var(--border); background: var(--cream); }
.partner-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }
.p-badge { background: var(--sage-light); color: var(--sage-dark); font-size: 12px; font-weight: 600; padding: 0.4rem 1rem; border-radius: 5px; border: 1px solid var(--sage-mid); }

/* ===== DONATE ===== */
.donate-section {
  background: var(--gold); padding: 3rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; border-bottom: 1.5px solid var(--border);
}
.donate-heading { font-family: 'Lora', serif; font-size: 26px; color: #fff; line-height: 1.3; font-weight: 600; }
.donate-sub { font-size: 14px; color: rgba(255,255,255,0.88); margin-top: 0.4rem; line-height: 1.7; max-width: 460px; }
.donate-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn-donate-lg { background: #fff; color: var(--brown); font-size: 14px; font-weight: 700; padding: 0.85rem 2rem; border: none; border-radius: 6px; cursor: pointer; }
.btn-donate-sec { background: transparent; color: #fff; font-size: 13px; font-weight: 600; padding: 0.8rem 1.5rem; border: 2px solid rgba(255,255,255,0.6); border-radius: 6px; cursor: pointer; }

/* ===== CONTACT ===== */
.contact-section { padding: 3rem 2rem; border-bottom: 1.5px solid var(--border); background: var(--cream); }
.contact-intro { font-size: 14px; color: var(--ink-muted); line-height: 1.8; max-width: 580px; margin-top: 0.5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--sage-light); border: 1px solid var(--sage-mid); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.contact-item-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sage); font-weight: 700; margin-bottom: 0.2rem; }
.contact-item-val { font-size: 14px; color: var(--navy); font-weight: 500; }
.contact-item-sub { font-size: 12px; color: var(--ink-faint); }
.contact-form { display: flex; flex-direction: column; gap: 0.85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-muted); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px;
  color: var(--ink); background: #fff; outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--sage); }
.form-field textarea { resize: vertical; min-height: 100px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--sage-dark); padding: 2.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.cta-heading { font-family: 'Lora', serif; font-size: 24px; color: #fff; line-height: 1.3; font-weight: 600; }
.cta-sub { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 0.4rem; }
.cta-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); padding: 2.5rem 2rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.5rem; }
.footer-mark {
  width: 28px; height: 28px; border-radius: 6px; background: var(--sage-dark);
  display: flex; align-items: flex-end; justify-content: center; padding: 5px 6px; gap: 2px;
}
.fb { border-radius: 1px; width: 4px; }
.fb-1 { height: 6px; background: rgba(194,213,202,0.45); }
.fb-2 { height: 10px; background: var(--sage-mid); }
.fb-3 { height: 14px; background: var(--gold-mid); }
.footer-name { font-family: 'Lora', serif; font-size: 16px; font-weight: 600; color: #fff; }
.footer-tagline { font-size: 11px; line-height: 1.75; color: rgba(255,255,255,0.38); margin-top: 0.15rem; }
.footer-col h4 { font-size: 9px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold-mid); margin-bottom: 0.75rem; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.42); text-decoration: none; }
.footer-col ul li a:hover { color: var(--sage-mid); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem;
  font-size: 10px; color: rgba(255,255,255,0.22);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-donate-btn { background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; padding: 0.4rem 1rem; border: none; border-radius: 5px; cursor: pointer; text-decoration: none; }

/* ===== WORDPRESS SPECIFIC ===== */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--ink-faint); text-align: center; padding-top: 0.4rem; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .programs-wrap { grid-template-columns: 1fr; }
  .metrics-col { flex-direction: row; flex-wrap: wrap; padding: 1.5rem 2rem; border-right: none; border-top: 1.5px solid var(--border); }
  .metric-card { flex: 1; min-width: 120px; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-left { border-right: none; border-bottom: 1.5px solid var(--border); }
  .family-story-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr 1fr; }
  .engage-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-band { grid-template-columns: 1fr; }
  .mission-divider { height: 1px; width: 100%; }
}

@media (max-width: 640px) {
  h1, .hero-heading { font-size: 30px; }
  h2, .sec-title { font-size: 22px; }
  .site-nav { flex-wrap: wrap; gap: 1rem; padding: 1rem; }
  .nav-menu { display: none; flex-direction: column; width: 100%; gap: 0.5rem; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .engage-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 0 33%; }
  .donate-section { flex-direction: column; }
  .cta-band { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .daughters-row { grid-template-columns: 1fr; }
}
