/* =========================================
   GCHP — Main Stylesheet
   Colors: Navy #0B2D52 | Teal #589593 | Gray #676f7a
   Fonts: Fredoka (headings) | Inter (body)
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B2D52;
  --navy-dark: #071e38;
  --teal: #589593;
  --teal-light: #7ab5b3;
  --teal-pale: #e8f4f4;
  --gray: #676f7a;
  --gray-light: #f4f6f8;
  --gray-mid: #e2e6ea;
  --white: #ffffff;
  --font-head: 'Fredoka', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(11,45,82,0.10);
  --shadow-lg: 0 12px 48px rgba(11,45,82,0.16);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--teal-light); }
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 600px; line-height: 1.7; }
.section-subtitle.light { color: rgba(255,255,255,0.8); }
.section-header-center { text-align: center; margin-bottom: 60px; }
.section-header-center .section-subtitle { margin: 0 auto; }

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(88,149,147,0.35); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--navy); color: white; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-mid);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(11,45,82,0.12); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-emblem { flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-the {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
}
.logo-main {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.logo-project {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gray);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover { background: var(--gray-light); color: var(--teal); }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-nav-login {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 7px;
  border: 1.5px solid var(--gray-mid);
  transition: all var(--transition);
}
.btn-nav-login:hover { border-color: var(--navy); background: var(--gray-light); }
.btn-nav-donate {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 7px;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav-donate:hover { background: var(--teal); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-mid);
  background: white;
}
.nav-mobile a {
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 15px;
}
.nav-mobile a.mobile-login {
  margin-top: 12px;
  color: var(--teal);
  font-weight: 600;
  border-bottom: none;
}
.nav-mobile.open { display: flex; }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #0f3d6e 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(88,149,147,0.18) 0%, transparent 70%);
}
/* Decorative globe arcs */
.hero-bg::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(88,149,147,0.15);
  box-shadow: 0 0 0 60px rgba(88,149,147,0.06), 0 0 0 120px rgba(88,149,147,0.04), 0 0 0 200px rgba(88,149,147,0.025);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 24px 80px 10%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--teal);
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-accent { color: var(--teal-light); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary-lg {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: 9px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(88,149,147,0.4);
}
.btn-primary-lg:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(88,149,147,0.5); }
.btn-outline-lg {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 9px;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-outline-lg:hover { border-color: white; background: rgba(255,255,255,0.1); }
.hero-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  color: white;
  line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* =========================================
   MISSION BAND
   ========================================= */
.mission-band {
  background: var(--teal-pale);
  padding: 48px 0;
  border-top: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
}
.mission-band-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.mission-band-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
  padding-top: 4px;
}
.mission-band-text {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--navy);
  line-height: 1.5;
  font-style: italic;
}

/* =========================================
   ABOUT
   ========================================= */
.about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-card-stack { display: flex; flex-direction: column; gap: 16px; }
.about-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-left: 4px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.about-card-1 { border-left-color: var(--teal); margin-right: 40px; }
.about-card-2 { border-left-color: var(--navy); margin-left: 40px; }
.about-card-3 { border-left-color: var(--teal); margin-right: 40px; }
.about-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--teal);
  flex-shrink: 0;
}
.about-card-2 .about-card-icon { background: rgba(11,45,82,0.08); color: var(--navy); }
.about-card-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-card-desc { font-size: 14px; color: var(--gray); line-height: 1.5; }
.about-content { }
.about-text { font-size: 1.02rem; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0 32px; }
.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.value-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* =========================================
   ISSUE SECTION
   ========================================= */
.issue { position: relative; overflow: hidden; }
.issue-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0e3660 100%);
}
.issue-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.issue-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background var(--transition), transform var(--transition);
}
.issue-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
.issue-icon { margin-bottom: 20px; }
.issue-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 12px;
}
.issue-card p { font-size: 14.5px; color: rgba(255,255,255,0.72); line-height: 1.7; }

/* =========================================
   PILLARS
   ========================================= */
.pillars { background: var(--gray-light); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar-card-accent {
  background: var(--navy);
  color: white;
}
.pillar-card-accent::before { background: var(--teal); }
.pillar-number {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 3.5rem;
  color: rgba(11,45,82,0.07);
  line-height: 1;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.pillar-card-accent .pillar-number { color: rgba(255,255,255,0.1); }
.pillar-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-card-accent .pillar-icon { background: rgba(255,255,255,0.12); }
.pillar-header h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
}
.pillar-card-accent .pillar-header h3 { color: white; }
.pillar-tagline {
  font-size: 13.5px;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 14px;
  font-weight: 500;
}
.pillar-card-accent .pillar-tagline { color: var(--teal-light); }
.pillar-desc { font-size: 14.5px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.pillar-card-accent .pillar-desc { color: rgba(255,255,255,0.75); }
.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pillar-list li {
  font-size: 13.5px;
  color: var(--navy);
  padding-left: 18px;
  position: relative;
}
.pillar-list li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-size: 13px; }
.pillar-card-accent .pillar-list li { color: rgba(255,255,255,0.85); }
.pillar-card-accent .pillar-list li::before { color: var(--teal-light); }

/* =========================================
   WHAT WE DO
   ========================================= */
.what-we-do { background: white; }
.wwd-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.wwd-items { display: flex; flex-direction: column; gap: 32px; margin: 32px 0; }
.wwd-item { display: flex; gap: 18px; align-items: flex-start; }
.wwd-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wwd-item h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.wwd-item p { font-size: 14px; color: var(--gray); line-height: 1.65; }
.wwd-visual-inner { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.wwd-vision-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
}
.vision-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.vision-text {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-style: italic;
}
.partnership-opportunities {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px;
}
.partnership-opportunities h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.partnership-opportunities ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.partnership-opportunities li {
  font-size: 14px;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
}
.partnership-opportunities li::before { content: '✦'; position: absolute; left: 0; color: var(--teal); font-size: 10px; top: 3px; }

/* =========================================
   TIMELINE
   ========================================= */
.timeline-section { position: relative; overflow: hidden; }
.timeline-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #071e38 0%, var(--navy) 60%, #0e3660 100%);
}
.timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: rgba(88,149,147,0.35);
  z-index: 0;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.timeline-marker {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(88,149,147,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.timeline-marker.active {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 0 8px rgba(88,149,147,0.2);
}
.timeline-marker span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
}
.timeline-marker.active span { color: white; }
.timeline-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.timeline-badge.active { color: var(--teal-light); border-color: var(--teal); }
.timeline-content h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: white;
  margin-bottom: 10px;
}
.timeline-content p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* =========================================
   LEADERSHIP
   ========================================= */
.leadership { background: var(--gray-light); }
.leadership-exec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.leader-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.leader-avatar {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.leader-avatar span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
}
.leader-info h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.leader-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.leader-info p { font-size: 13.5px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.leader-resp { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.leader-resp li {
  font-size: 13px;
  color: var(--navy);
  padding-left: 14px;
  position: relative;
}
.leader-resp li::before { content: '·'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.leadership-core-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-mid);
}
.leadership-core {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.core-leader-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.core-leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.core-leader-avatar {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}
.core-leader-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.core-leader-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.core-leader-card p { font-size: 13px; color: var(--gray); line-height: 1.55; }
.leadership-network {
  display: flex;
  gap: 32px;
  background: white;
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow);
}
.network-item { display: flex; gap: 14px; align-items: flex-start; flex: 1; }
.network-icon { color: var(--teal); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.network-item strong { display: block; font-size: 14.5px; color: var(--navy); margin-bottom: 4px; }
.network-item span { font-size: 13.5px; color: var(--gray); line-height: 1.5; }

/* =========================================
   PARTNERS
   ========================================= */
.partners { background: white; }
.partner-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.partner-benefit {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.partner-benefit:hover { background: var(--teal-pale); transform: translateY(-4px); }
.pb-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 2px 10px rgba(11,45,82,0.08);
}
.partner-benefit h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.partner-benefit p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }
.partner-cta { text-align: center; }
.partner-cta p { font-size: 1.1rem; color: var(--gray); margin-bottom: 16px; font-weight: 500; }

/* =========================================
   GET INVOLVED
   ========================================= */
.get-involved { position: relative; overflow: hidden; }
.gi-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0f3d6e 100%);
}
.gi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.gi-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.gi-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.gi-card-featured {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(88,149,147,0.4);
}
.gi-card-featured:hover { background: var(--teal-light); transform: translateY(-12px); }
.gi-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.gi-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 12px;
}
.gi-card p { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 24px; }
.btn-gi {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-gi:hover { border-color: white; background: rgba(255,255,255,0.15); }
.btn-gi-white {
  background: white;
  color: var(--teal);
  border-color: white;
}
.btn-gi-white:hover { background: rgba(255,255,255,0.9); color: var(--navy); }
.gi-contact {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.gi-contact h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  color: white;
  text-align: center;
  margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9px;
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.45); }
.form-input:focus { border-color: var(--teal-light); background: rgba(255,255,255,0.12); }
.form-select option { background: var(--navy); color: white; }
.form-textarea { min-height: 120px; resize: vertical; }
.btn-form-submit {
  background: var(--teal);
  color: white;
  border: none;
  padding: 15px 36px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
}
.btn-form-submit:hover { background: var(--teal-light); transform: translateY(-1px); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-the,
.footer-logo .logo-project { color: rgba(255,255,255,0.4); }
.footer-logo .logo-main { color: white; font-size: 13px; }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--teal); color: var(--teal-light); }
.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal-light); }
.footer-mission-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-mission-note p { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.35); }

/* =========================================
   LOGO IMAGE (nav + footer)
   ========================================= */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  /* logo has dark colors, make visible on dark bg */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* nav active link */
.nav-links a.active {
  color: var(--teal);
  background: var(--teal-pale);
}

/* btn-nav-login as <button> */
.btn-nav-login {
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.mobile-login {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  text-align: center;
  margin-top: 8px;
}
.mobile-login:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* =========================================
   PAGE HERO BANNER (internal pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #0f4a6e 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23589593' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  line-height: 1.7;
}

/* =========================================
   HOME FEATURE CARDS
   ========================================= */
.home-features { background: var(--gray-light); }
.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home-feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.home-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-pale);
}
.home-feature-card.hfc-accent {
  background: var(--navy);
  color: white;
}
.home-feature-card.hfc-accent h3,
.home-feature-card.hfc-accent p { color: rgba(255,255,255,0.9); }
.home-feature-card.hfc-accent:hover { border-color: var(--teal); }
.hfc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hfc-accent .hfc-icon { background: rgba(255,255,255,0.1); }
.home-feature-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
}
.home-feature-card p { font-size: 14px; color: var(--gray); line-height: 1.7; flex: 1; }
.hfc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-top: auto;
}
.hfc-accent .hfc-link { color: var(--teal-light); }

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0f4a6e 100%);
  padding: 80px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: white;
  margin-bottom: 8px;
}
.cta-band p { font-size: 1rem; color: rgba(255,255,255,0.7); }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* =========================================
   SITE FOOTER (new multi-page footer)
   ========================================= */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 240px;
}
.site-footer .footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}
.site-footer .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer .footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer .footer-col a:hover { color: var(--teal-light); }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.site-footer .footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-login-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 13.5px;
  padding: 7px 14px;
  border-radius: 7px;
  cursor: pointer;
  transition: all var(--transition);
}
.footer-login-btn:hover { border-color: var(--teal-light); color: var(--teal-light); }

/* =========================================
   ABOUT PAGE
   ========================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-left: 3px solid var(--teal);
}
.value-card h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.value-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.mv-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.mv-card.mv-mission { background: var(--navy); color: white; }
.mv-card.mv-vision { background: var(--teal); color: white; }
.mv-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.mv-card p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  font-style: italic;
}

/* =========================================
   PARTNERS FORM
   ========================================= */
.partner-form-section {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
}
.partner-form-section h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.partner-form-section > p { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.partner-form { display: flex; flex-direction: column; gap: 14px; }
.partner-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.partner-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  background: white;
  outline: none;
  transition: border-color var(--transition);
}
.partner-input:focus { border-color: var(--teal); }
.partner-input::placeholder { color: var(--gray); opacity: 0.6; }
.partner-textarea { min-height: 110px; resize: vertical; }

/* =========================================
   RESPONSIVE — new elements
   ========================================= */
/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .wwd-grid { grid-template-columns: 1fr; gap: 48px; }
  .wwd-visual-inner { position: static; }
  .leadership-core { grid-template-columns: repeat(2, 1fr); }
  .partner-benefits { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .home-feature-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .partner-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .issue-cards { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .leadership-exec { grid-template-columns: 1fr; }
  .gi-cards { grid-template-columns: 1fr; }
  .gi-card-featured { transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .mission-band-inner { flex-direction: column; gap: 12px; }
  .hero-stats { gap: 20px; }
  .hero-content { padding: 60px 24px; }
  .home-feature-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .partner-form-section { padding: 28px 20px; }
  .nav-logo-img { height: 36px; }
}
@media (max-width: 480px) {
  .leadership-core { grid-template-columns: 1fr; }
  .partner-benefits { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .leadership-network { flex-direction: column; }
}
