/* ===== WEGIVEFORWARD — MAIN STYLESHEET ===== */

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

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2f47;
  --navy-light: #243850;
  --gold: #c9973a;
  --gold-light: #e0b85a;
  --gold-pale: #f5e9cd;
  --white: #ffffff;
  --off-white: #f8f5f0;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-light: #888888;
  --border: #e2ddd6;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;

  --max-w: 1180px;
  --nav-h: 72px;
  --radius: 4px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }

/* --- LAYOUT --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section-dark { background: var(--navy); }
.section-gold { background: var(--gold); }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,151,58,0.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,27,42,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,151,58,0.2);
  transition: box-shadow var(--transition);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
.logo span { color: var(--gold); }
.logo-img {
  height: 52px;
  width: auto;
  max-width: 360px;
  display: block;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 340px;
}
.family-photo {
  width: 380px;
  max-width: 100%;
  aspect-ratio: 612 / 408;
  background: url(military-family.8e378c48a9.jpg) center/cover no-repeat;
  border-radius: 4px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-donate {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  letter-spacing: 0.06em !important;
}
.nav-donate::after { display: none !important; }
.nav-donate:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  padding: 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a {
  color: var(--white);
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0d1b2a 0%, #1a3050 40%, #0d2238 70%, #0a1520 100%);
}
/* Stars effect */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 60%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,0.25) 0%, transparent 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,151,58,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,151,58,0.05) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,0.85) 50%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  max-width: 680px;
  margin-left: max(2rem, calc((100vw - var(--max-w)) / 2 + 2rem));
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.3); }
}

/* ===========================
   MISSION STRIP
   =========================== */
.mission-strip {
  background: var(--gold);
  padding: 2rem 0;
}
.mission-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--navy);
  text-align: center;
  font-weight: 700;
}

/* ===========================
   PILLARS
   =========================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.pillar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeUp 0.6s ease both;
  animation-delay: var(--delay);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,27,42,0.12);
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.pillar-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.pillar-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   WHO WE SERVE
   =========================== */
.who-serve-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.who-text { color: var(--white); }
.who-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.serve-list {
  list-style: none;
  margin-bottom: 2rem;
}
.serve-list li {
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.serve-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.85rem;
}
.who-image {
  display: flex;
  justify-content: center;
}
.image-frame {
  border: 3px solid rgba(201,151,58,0.4);
  padding: 0.5rem;
  border-radius: var(--radius);
  position: relative;
}
.image-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: -12px; bottom: -12px;
  border: 1px solid rgba(201,151,58,0.2);
  border-radius: var(--radius);
  z-index: -1;
}
.image-placeholder {
  width: 380px;
  max-width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a3050, #0d2238);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 2px;
}
.flag-icon { font-size: 4rem; }
.image-placeholder p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
}

/* ===========================
   STATS
   =========================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.4;
}

/* ===========================
   DONATE CTA
   =========================== */
.donate-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.cta-text p { color: var(--navy); opacity: 0.8; max-width: 550px; }
.cta-action { text-align: center; min-width: 220px; }
.cta-note {
  font-size: 0.78rem;
  color: rgba(13,27,42,0.6);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ===========================
   BRAND ASSETS
   =========================== */
.brand-assets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.brand-asset-card {
  text-align: center;
}
.brand-asset-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links a {
  color: rgba(255,255,255,0.5);
  font-size: 1.25rem;
  transition: color var(--transition);
}
.social-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0a2240 100%);
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,151,58,0.08) 0%, transparent 70%);
}
.page-hero-gold {
  background: linear-gradient(135deg, #8a6520 0%, var(--gold) 50%, #c9973a 100%);
}
.page-hero-gold .hero-eyebrow { color: var(--navy); }
.page-hero-gold h1 { color: var(--navy); }
.page-hero-gold p { color: rgba(13,27,42,0.75); }
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero .hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  margin: 0 auto;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}
.col-text p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.accent-block {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
}
.accent-quote {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  display: block;
}
.accent-block p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.value-item { color: var(--white); }
.value-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,151,58,0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-item h3 {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.value-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.vision-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: start;
}
.vision-text p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.vision-text strong { color: var(--navy); }
.vision-text .btn { margin-top: 0.75rem; }
.vision-steps { display: flex; flex-direction: column; gap: 2rem; }
.vision-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.35rem;
  position: relative;
}
.step-dot::after {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 2rem;
  background: rgba(201,151,58,0.3);
}
.vision-step:last-child .step-dot::after { display: none; }
.step-content h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.step-content p { font-size: 0.9rem; color: var(--text-mid); }

/* ===========================
   PROGRAMS PAGE
   =========================== */
.text-center-section { text-align: center; }
.text-center-section .section-label { display: block; }
.intro-para {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.program-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(13,27,42,0.1);
}
.program-card-icon {
  padding: 2rem;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-card-icon.food { background: #f0f7f0; }
.program-card-icon.clothing { background: #f7f0f7; }
.program-card-icon.travel { background: #f0f4f7; }
.program-card-icon.childcare { background: #fff7f0; }
.program-card-icon.emergency { background: #fff0f0; }
.program-card-icon.resources { background: #f0f7ff; }
.program-card-body {
  padding: 1.75rem;
}
.program-card-body h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.program-card-body p {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.program-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.program-card-body ul li {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.program-card-body ul li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
}

.advocate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: start;
}
.advocate-text { color: var(--white); }
.advocate-text p { color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; font-size: 1.05rem; }
.advocate-text .btn { margin-top: 0.75rem; }
.advocate-qualities {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quality {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.quality-check {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.quality p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.gethelp-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ===========================
   DONATE PAGE
   =========================== */
.donate-section { background: var(--off-white); padding-top: 4rem; padding-bottom: 4rem; }
.donate-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.donate-form-wrap {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(13,27,42,0.08);
}
.form-header { margin-bottom: 2rem; }
.form-header h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-header p { color: var(--text-mid); }

.freq-toggle {
  display: flex;
  background: var(--off-white);
  border-radius: 6px;
  padding: 4px;
  margin-bottom: 2rem;
  gap: 4px;
}
.freq-btn {
  flex: 1;
  padding: 0.7rem;
  background: none;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-mid);
  transition: all var(--transition);
}
.freq-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(13,27,42,0.15);
}

.field-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: block;
  margin-bottom: 0.75rem;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.amount-btn {
  padding: 0.85rem;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}
.amount-btn:hover { border-color: var(--gold); color: var(--gold); }
.amount-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.custom-amount { margin-bottom: 2rem; }
.custom-amount label {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: block;
  margin-bottom: 0.5rem;
}
.custom-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.custom-input-wrap:focus-within { border-color: var(--gold); }
.dollar-sign {
  padding: 0.75rem 1rem;
  background: var(--off-white);
  color: var(--text-mid);
  font-weight: 600;
  border-right: 1px solid var(--border);
}
.custom-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
}

.amount-selector { margin-bottom: 1.5rem; }

.impact-message {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 2rem;
}
.impact-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
#impactText { color: var(--navy); font-size: 0.9rem; font-weight: 600; line-height: 1.5; }

.form-field { margin-bottom: 1.75rem; }
.dedication-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}
.dedication-check input { width: 16px; height: 16px; cursor: pointer; accent-color: var(--gold); }
.dedication-check label { font-size: 0.9rem; color: var(--text-mid); cursor: pointer; }
.dedication-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.donor-info { margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.text-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.text-input:focus { border-color: var(--gold); }
.text-input.full { display: block; margin-bottom: 0.75rem; }
select.text-input { cursor: pointer; }

.payment-section { margin-bottom: 2rem; }
.payment-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f0f7f0;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.lock-icon { font-size: 1rem; color: #2e7d32; }
.payment-notice p { font-size: 0.8rem; color: #2e7d32; font-weight: 600; }
.payment-section .text-input { margin-bottom: 0.75rem; }

.donate-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all var(--transition);
  margin-bottom: 1.25rem;
}
.donate-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,151,58,0.4);
}
.btn-arrow { font-size: 1.25rem; transition: transform var(--transition); }
.donate-submit:hover .btn-arrow { transform: translateX(4px); }

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
}

.success-message {
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  padding: 3rem;
  text-align: center;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
}
.success-message h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.success-message p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 0.5rem; }
.success-sub { font-style: italic; color: rgba(255,255,255,0.5) !important; font-size: 0.9rem !important; }

/* SIDEBAR */
.donate-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
}
.sidebar-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}
.gift-impact { display: flex; flex-direction: column; gap: 1rem; }
.gift-row { display: flex; gap: 1rem; align-items: flex-start; }
.gift-amount {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 55px;
}
.gift-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.trust-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; color: var(--navy); font-size: 0.9rem; margin-bottom: 0.2rem; }
.trust-item p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

.sidebar-other-ways p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.sidebar-other-ways strong { color: var(--navy); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .who-serve-inner { grid-template-columns: 1fr; gap: 3rem; }
  .image-placeholder { width: 100%; max-width: 400px; }
  .donate-layout { grid-template-columns: 1fr; }
  .donate-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .section { padding: 4rem 0; }
  .hero-content { padding-top: calc(var(--nav-h) + 3rem); }
  .pillars-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .vision-layout { grid-template-columns: 1fr; gap: 2rem; }
  .advocate-layout { grid-template-columns: 1fr; gap: 2rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .brand-assets-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .donate-form-wrap { padding: 1.75rem; }
  .donate-sidebar { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .gethelp-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.25rem; }
  .accent-block { position: static; }
}
