/* ============================================
   Reaching the Unreachable — Global Stylesheet
   ============================================ */

:root {
  --navy:       #1B3A5C;
  --navy-dark:  #112538;
  --gold:       #C8932A;
  --gold-light: #E8B84B;
  --cream:      #F8F6F1;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --text-muted: #5C5C5C;
  --border:     #DDD5C5;
  --radius:     6px;
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
  --max-width:  1100px;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

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

/* ── UTILITY ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: 2px solid transparent;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary   { background: var(--gold); color: var(--white); }
.btn-outline   { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-navy      { background: var(--navy); color: var(--white); }
.btn-gold-dark { background: var(--gold); color: var(--white); }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-serif);
  letter-spacing: -1px;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.nav-logo-text span { display: block; font-size: 11px; font-weight: 400; color: var(--text-muted); font-family: var(--font-sans); letter-spacing: .5px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--cream); }
.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--white);
  padding: 8px 18px;
}
.nav-links .nav-cta a:hover { background: var(--gold-light); color: var(--navy); }

/* ── HERO ── */
.hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 100px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(200,147,42,.025) 40px,
    rgba(200,147,42,.025) 80px
  );
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--white);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 38px;
}
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── SECTION DEFAULTS ── */
section { padding: 80px 24px; }
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 38px);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

/* ── PILLARS ── */
.pillars { background: var(--cream); }
.pillars-header { text-align: center; margin-bottom: 52px; }
.pillars-header .section-intro { margin: 0 auto; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.pillar-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.pillar-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── CAMPAIGN BANNER ── */
.campaign-banner {
  background: var(--navy);
  color: var(--white);
  padding: 72px 24px;
}
.campaign-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.campaign-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 14px;
  line-height: 1.25;
}
.campaign-banner .lead {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  max-width: 560px;
  line-height: 1.65;
}
.campaign-actions { display: flex; flex-direction: column; gap: 12px; min-width: 200px; }
.campaign-actions .btn { text-align: center; }

/* ── QUOTE BLOCK ── */
.quote-section { background: var(--white); text-align: center; padding: 80px 24px; }
.blockquote {
  max-width: 740px;
  margin: 0 auto;
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 32px;
  text-align: left;
}
.blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
}
.blockquote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .5px;
}

/* ── MISSION SPLIT ── */
.mission-split {
  background: var(--cream);
  padding: 80px 24px;
}
.mission-split-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.mission-split p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.mission-split p:last-child { margin-bottom: 0; }

/* ── TEAM PREVIEW ── */
.team-preview { padding: 80px 24px; background: var(--white); }
.team-preview-header {
  max-width: var(--max-width);
  margin: 0 auto 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.team-grid-mini {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}
.team-card-mini {
  text-align: center;
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 12px;
  border: 3px solid var(--border);
}
.team-card-mini h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.team-card-mini span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── TEAM PAGE ── */
.team-hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
}
.team-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 14px;
}
.team-hero p {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto;
}

.team-section { padding: 72px 24px; }
.team-section-inner { max-width: var(--max-width); margin: 0 auto; }
.team-section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.team-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow .2s;
}
.team-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); }
.team-card-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  background: var(--cream);
}
.team-card-body { padding: 24px 24px 28px; }
.team-card-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-card-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.team-card-full {
  grid-column: 1 / -1;
}
.team-card-full .team-card-photo-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
}
.team-card-full .team-card-photo {
  height: 100%;
  min-height: 320px;
}
.team-card-full .team-card-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-card-full .team-card-body p {
  font-size: 15px;
  margin-bottom: 10px;
}
.team-card-full .team-card-body p:last-child { margin-bottom: 0; }

/* Volunteers */
.volunteers-section { background: var(--cream); padding: 64px 24px; }
.volunteers-inner { max-width: var(--max-width); margin: 0 auto; }
.volunteers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.volunteer-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow);
}
.volunteer-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 14px;
  border: 3px solid var(--border);
  background: var(--cream);
}
.volunteer-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.volunteer-card span { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.volunteer-card p { font-size: 13px; color: var(--text-muted); margin-top: 10px; line-height: 1.6; }

/* ── ABOUT PAGE ── */
.about-hero {
  background: linear-gradient(135deg, var(--navy-dark) 60%, #1e4a70);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
}
.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 16px;
}
.about-hero p {
  color: rgba(255,255,255,.8);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}
.about-section { padding: 72px 24px; }
.about-section-inner { max-width: var(--max-width); margin: 0 auto; }
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-section p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-section p:last-child { margin-bottom: 0; }

.programs-grid {
  max-width: var(--max-width);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.program-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}
.program-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.tech-gap-section {
  background: var(--navy);
  color: var(--white);
  padding: 80px 24px;
}
.tech-gap-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.tech-gap-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 20px;
}
.tech-gap-section p {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.tech-gap-section p:last-child { margin-bottom: 0; }
.campaign-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 32px;
}
.campaign-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.campaign-card .btn { width: 100%; text-align: center; margin-top: 12px; }
.qr-block {
  text-align: center;
  margin-top: 20px;
}
.qr-block img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 8px;
  border-radius: 4px;
  background: var(--white);
  padding: 4px;
}
.qr-block p { font-size: 12px; color: rgba(255,255,255,.6); }

/* ── STATS ROW ── */
.stats-row {
  background: var(--gold);
  padding: 48px 24px;
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.stat-item { text-align: center; color: var(--white); }
.stat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; font-weight: 600; letter-spacing: 1px; opacity: .9; text-transform: uppercase; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 56px 20px; }
  .campaign-inner { grid-template-columns: 1fr; }
  .campaign-actions { flex-direction: row; }
  .mission-split-inner { grid-template-columns: 1fr; gap: 32px; }
  .team-card-full .team-card-photo-wrap { grid-template-columns: 1fr; }
  .team-card-full .team-card-photo { height: 260px; }
  .about-two-col { grid-template-columns: 1fr; gap: 32px; }
  .tech-gap-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .team-preview-header { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 72px 20px 64px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-inner { gap: 20px; }
  .stat-num { font-size: 32px; }
}
