/* ============================================================
   NEW GENESIS PROJECT — Global Stylesheet
   Premium Gold / Navy Authority Design System
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-dark:   #9A7A2E;
  --navy:        #0B1A2E;
  --navy-mid:    #122340;
  --navy-light:  #1A3459;
  --white:       #FFFFFF;
  --off-white:   #F4F1EB;
  --text-light:  #E8DFC8;
  --text-muted:  #9AA3B2;
  --border:      rgba(201,168,76,0.25);
  --shadow:      0 8px 40px rgba(0,0,0,0.45);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.35);
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.3s ease;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

/* ---------- Typography ---------- */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 600;
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 680px;
  line-height: 1.8;
}

.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.text-center { text-align: center; }
.center-block { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); color: var(--navy); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); color: var(--gold-light); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--white); }

/* ---------- Cards ---------- */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.5); transform: translateY(-4px); box-shadow: var(--shadow-card); }

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--gold-light);
}

/* ---------- Divider ---------- */
.gold-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem 0 1.8rem;
}

.gold-line-center { margin: 1rem auto 1.8rem; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: rgba(201,168,76,0.08);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  text-align: center;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.trust-bar span + span::before {
  content: '·';
  margin-right: 2rem;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(11,26,46,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.nav-logo .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-ctas {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-donate-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.nav-donate-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.4); }

.nav-partner-btn {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-partner-btn:hover { background: rgba(201,168,76,0.1); }

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

.mobile-menu {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 1.5rem 24px 2rem;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-ctas {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.hero-stat .stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- Section Backgrounds ---------- */
.bg-navy-mid   { background: var(--navy-mid); }
.bg-navy-light { background: var(--navy-light); }
.bg-dark       { background: rgba(0,0,0,0.25); }

/* ---------- Pillars ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  text-align: center;
  transition: all var(--transition);
}
.pillar-card:hover { border-color: rgba(201,168,76,0.55); transform: translateY(-5px); }

.pillar-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.2rem;
}

.pillar-card h3 {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

/* ---------- Stats Band ---------- */
.stats-band {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
}

.stat-item .stat-desc {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-top: 6px;
  font-weight: 600;
}

/* ---------- Donor Notice ---------- */
.donor-notice {
  background: rgba(201,168,76,0.07);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.2rem 1.8rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.donor-notice strong { color: var(--gold); }

/* ---------- Programs Grid ---------- */
.program-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.program-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-3px); }

.program-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.badge-active { background: rgba(76,201,130,0.15); color: #5de3a0; border: 1px solid rgba(76,201,130,0.3); }
.badge-expanding { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid var(--border); }

.program-region {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}
.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy-mid);
}
.timeline-year {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.timeline-desc { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Impact Progress Bars ---------- */
.impact-goal {
  margin-bottom: 2rem;
}
.impact-goal-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.impact-goal-header h4 { font-family: var(--font-sans); font-size: 0.9rem; color: var(--text-light); }
.impact-goal-header span { font-size: 0.8rem; color: var(--gold); font-weight: 600; }
.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 3px;
  width: 0;
  transition: width 1.4s ease;
}

/* ---------- Video Section ---------- */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.video-tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
  font-family: var(--font-sans);
}
.video-tab.active, .video-tab:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); color: var(--gold); }

.video-panel { display: none; }
.video-panel.active { display: block; }

/* ---------- Script Tabs ---------- */
.script-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.script-tab {
  padding: 8px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  transition: all var(--transition);
}
.script-tab.active, .script-tab:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); color: var(--gold); }

.script-panel { display: none; }
.script-panel.active { display: block; }

.voiceover-block {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}
.scene {
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.scene:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.scene-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.scene p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; }

/* ---------- Partnership Paths ---------- */
.path-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  transition: all var(--transition);
}
.path-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
.path-card h3 { font-size: 1.2rem; color: var(--gold-light); margin-bottom: 0.6rem; }
.path-card ul { margin: 1rem 0; }
.path-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.path-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ---------- Contact Form ---------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; min-height: 140px; }

.form-submit-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  align-self: flex-start;
  font-family: var(--font-sans);
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }

.form-success {
  display: none;
  background: rgba(76,201,130,0.08);
  border: 1px solid rgba(76,201,130,0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: #5de3a0;
}

/* ---------- Floating Donate ---------- */
.float-donate {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(201,168,76,0.45);
  animation: pulse-glow 2.5s ease-in-out infinite;
  font-family: var(--font-sans);
  transition: all var(--transition);
}
.float-donate:hover { transform: translateY(-2px) scale(1.04); }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(201,168,76,0.45); }
  50% { box-shadow: 0 4px 36px rgba(201,168,76,0.75); }
}

/* ---------- Back to Top ---------- */
.back-top {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 800;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: var(--gold);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: rgba(201,168,76,0.15); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.footer-brand .brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }

.footer-contact p, .footer-contact address {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.footer-contact a { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.footer-legal { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; max-width: 680px; }
.footer-legal strong { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); text-align: right; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 100px 0 80px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.9;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section-pad  { padding: 70px 0; }
  .section-pad-sm { padding: 44px 0; }
  .grid-2       { grid-template-columns: 1fr; }
  .grid-3       { grid-template-columns: 1fr; }
  .grid-4       { grid-template-columns: 1fr; }
  .pillar-grid  { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .form-row     { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-copy  { text-align: left; }

  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .float-donate { bottom: 1rem; right: 1rem; padding: 11px 18px; font-size: 0.75rem; }
}
