/* ==========================================================================
   Pathways Community Outreach Foundation — Homepage Stylesheet
   Static HTML5 / CSS3, no frameworks.
   ========================================================================== */

:root {
  --navy: #052B52;
  --blue: #1267B2;
  --green: #247447;
  --gold: #D9A321;
  --white: #FAFAF7;
  --slate: #374553;

  --navy-rgb: 5, 43, 82;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1280px;
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* Visually-hidden utility for accessibility labels */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Focus visibility for keyboard users */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(5,43,82,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 72px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a.nav-link {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a.nav-link:hover,
.main-nav a.nav-link.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.has-dropdown svg { width: 10px; height: 10px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.btn-donate-header {
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 26px;
  border-radius: 3px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-donate-header:hover {
  background: #c4901d;
  transform: translateY(-1px);
}

.icon-search {
  width: 18px;
  height: 18px;
  color: var(--navy);
  flex-shrink: 0;
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(5,43,82,0.35) 0%, rgba(5,43,82,0.12) 40%, rgba(5,43,82,0.05) 100%),
    url('images/pathways-hero.webp');
  background-size: cover;
  background-position: center;
  padding: 90px 0 130px;
}

.hero-content {
  max-width: 680px;
  width: 100%;
  margin: 0;
}

.hero h1 {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: 26px;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero .lede {
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 3px;
  transition: background 0.2s ease, transform 0.15s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: #c4901d; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.75);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #ffffff; }

/* ==========================================================================
   PROGRAM CARDS (overlap the hero bottom edge)
   ========================================================================== */

.programs-wrap {
  max-width: var(--max-width);
  margin: -96px auto 0;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(5,43,82,0.14);
  padding: 0 34px 34px;
  text-align: center;
  border-bottom: 4px solid var(--card-accent, var(--blue));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program-card.card-blue  { --card-accent: var(--blue); }
.program-card.card-green { --card-accent: var(--green); }
.program-card.card-gold  { --card-accent: var(--gold); }

.program-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(5,43,82,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -46px;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.program-icon svg {
  width: 42px;
  height: 42px;
  color: var(--card-accent, var(--blue));
}

.program-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.program-card .program-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14.5px;
  color: var(--card-accent, var(--blue));
  margin-bottom: 16px;
}

.program-card p {
  font-size: 14.5px;
  color: var(--slate);
  margin-bottom: 22px;
}

.learn-more {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s ease, color 0.2s ease;
}
.learn-more svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.learn-more:hover { color: var(--card-accent, var(--blue)); gap: 10px; }

/* ==========================================================================
   ABOUT + IMPACT SECTION
   ========================================================================== */

.about-section {
  padding: 110px 0 90px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.85fr;
  gap: 44px;
  align-items: stretch;
}

.about-text {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-text h4 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 22px 0 10px;
}

.about-text h4:first-of-type {
  margin-top: 0;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--slate);
}

.about-signature {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.signature-script {
  font-family: 'Playfair Display', cursive;
  font-style: italic;
  font-size: 26px;
  color: var(--blue);
  margin-bottom: 4px;
}

.signature-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 14.5px;
}

.signature-title {
  font-size: 13px;
  color: var(--slate);
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(5,43,82,0.12);
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.impact-box {
  background: #ffffff;
  border: 1px solid rgba(5,43,82,0.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 12px 28px rgba(5,43,82,0.08);
}

.impact-box p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate);
}

.impact-box h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 18px;
}

.impact-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(5,43,82,0.08);
}
.impact-stat:first-of-type { border-top: none; padding-top: 0; }

.impact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}
.impact-icon svg { width: 22px; height: 22px; }
.impact-icon.icon-navy  { background: var(--navy); }
.impact-icon.icon-green { background: var(--green); }
.impact-icon.icon-gold  { background: var(--gold); }

.impact-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
  display: block;
  line-height: 1.1;
}

.impact-label {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.35;
}

.impact-view-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.impact-view-more svg { width: 12px; height: 12px; }

/* ==========================================================================
   MAKE A DIFFERENCE (navy band)
   ========================================================================== */

.difference-section {
  background: var(--navy);
  color: #ffffff;
  padding: 56px 0;
}

.difference-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 50px;
  align-items: center;
}

.difference-intro {
  display: flex;
  align-items: center;
  gap: 24px;
}

.difference-icon {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  color: var(--gold);
}

.difference-intro h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}

.difference-intro p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  max-width: 360px;
}

.difference-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.difference-action {
  text-align: center;
  padding: 0 22px;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.difference-action:first-child { border-left: none; }

.difference-action svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 12px;
}

.difference-action h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.difference-action p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--white);
  color: var(--slate);
  padding: 64px 0 0;
  font-size: 13.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand-block img {
  height: 84px;
  margin-bottom: 14px;
}

.footer-org-name {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.footer-tagline {
  font-style: italic;
  color: var(--slate);
  font-size: 13px;
}

.footer-col h5 {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: var(--slate); }
.footer-col ul li a:hover { color: var(--blue); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--slate);
}
.footer-contact-item svg {
  width: 15px; height: 15px;
  color: var(--blue);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--blue); }
.footer-social svg { width: 16px; height: 16px; color: #ffffff; }

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border-radius: 3px;
  border: 1px solid rgba(5,43,82,0.2);
  background: #ffffff;
  color: var(--navy);
  font-size: 13px;
}
.newsletter-form input::placeholder { color: rgba(55,69,83,0.55); }

.newsletter-form button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 11px 20px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #c4901d; }

.footer-newsletter-note {
  color: var(--slate);
  font-size: 13px;
  margin-bottom: 6px;
}

/* Full-width navy strip, separate from the white footer content above it */
.footer-bottom-bar {
  background: var(--navy);
  margin-top: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal-links { display: flex; gap: 18px; }
.footer-legal-links a:hover { color: var(--gold); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Laptop */
@media (max-width: 1180px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .impact-box { grid-column: span 2; }

  /* Six nav labels + logo + donate button + search icon don't fit
     comfortably at laptop width without wrapping — switch to the
     hamburger menu here rather than let labels break onto two lines. */
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
}

/* Tablet */
@media (max-width: 900px) {
  .header-inner { padding: 12px 24px; }

  .container, .programs-wrap { padding-left: 24px; padding-right: 24px; }

  .hero { min-height: 560px; padding: 70px 0 110px; }

  .programs-grid { grid-template-columns: 1fr; gap: 60px; }
  .programs-wrap { margin-top: -70px; }
  .program-icon { margin-top: -66px; }

  .about-section { padding: 80px 0 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image img { min-height: 320px; }
  .impact-box { grid-column: span 1; }

  .difference-grid { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .difference-intro { flex-direction: column; text-align: center; }
  .difference-intro p { max-width: 100%; }
  .difference-actions { grid-template-columns: 1fr; gap: 28px; }
  .difference-action { border-left: none; border-top: 1px solid rgba(255,255,255,0.18); padding: 24px 0 0; }
  .difference-action:first-child { border-top: none; padding-top: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}

/* Mobile */
@media (max-width: 640px) {
  .header-inner { padding: 12px 20px; }
  .brand img { height: 56px; }
  .header-actions { gap: 10px; }
  .btn-donate-header { padding: 10px 18px; font-size: 12px; }

  .main-nav.mobile-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 18px;
    box-shadow: 0 12px 24px rgba(5,43,82,0.12);
  }
  .main-nav.mobile-open ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav.mobile-open li { border-top: 1px solid rgba(5,43,82,0.08); }
  .main-nav.mobile-open li:first-child { border-top: none; }
  .main-nav.mobile-open a.nav-link {
    display: block;
    padding: 15px 24px;
    border-bottom: none;
  }

  .hero { padding: 56px 0 100px; }
  .hero-content { max-width: 100%; }
  .hero .lede { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .container, .programs-wrap { padding-left: 20px; padding-right: 20px; }
  .programs-wrap { margin-top: -60px; }
  .programs-grid { gap: 54px; }
  .program-card { padding: 0 24px 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-bottom: 34px; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ==========================================================================
   ABOUT US PAGE — rebuilt composition
   Reuses the homepage's existing --navy/--blue/--green/--gold/--white
   variables, Playfair Display / Source Sans 3 typography, .container,
   .btn/.btn-primary/.btn-outline, and the shared header/footer markup.
   Nothing above this point (the homepage's shared design system) was
   modified. Everything below is new, scoped to About-page-only classes.
   ========================================================================== */

/* Outer page width intentionally matches Home: section backgrounds run
   full browser width (no outer canvas wrapper), while each section's own
   .container keeps content aligned to the same 1280px grid as the header
   — identical two-layer pattern used throughout index.html. */

:root {
  --navy-dark: #081d33;
  --warm: #F1EEE6;
}

main h1, main h2, main h3 {
  font-family: var(--font-display);
  color: var(--navy);
}

/* ---- About Hero ---- */
.about-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: url('images/about-hero-background-mountains.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, rgba(5,43,82,0.94) 0%, rgba(5,43,82,0.72) 40%, rgba(5,43,82,0.18) 75%);
}

.about-hero-inner {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
}

.about-hero-copy {
  width: 52%;
  position: relative;
  z-index: 3;
  color: #ffffff;
}

.about-hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.1;
}

.gold-rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 18px 0;
}

.about-hero-copy h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
}

.about-hero-copy p {
  color: rgba(255,255,255,0.92);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
}

.about-hero-people {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(47%, 650px);
  height: auto;
  max-width: 55%;
  z-index: 2;
  opacity: 0.96;
}

/* ---- Why / Story / Purpose intro band ---- */
.intro-band {
  padding: 55px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 36px;
  align-items: stretch;
}

.intro-grid h2 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.intro-grid > article > p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.purpose-card {
  background: var(--navy);
  color: #ffffff;
  padding: 30px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(5,43,82,0.16);
}

.purpose-card h2 { color: #ffffff; font-size: 20px; margin-bottom: 0; }

.purpose-icon svg { width: 80px; height: 80px; }

.small-gold-rule {
  width: 38px;
  height: 2px;
  background: var(--gold);
  margin: 10px 0 12px;
}

.purpose-card p {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Who We Are / Photo / Mission / Vision composite row ---- */
.identity-section {
  padding: 20px 0 55px;
  background: var(--white);
}

.identity-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.85fr 0.85fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(5,43,82,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.who-copy,
.mission-card,
.vision-card {
  padding: 30px 26px;
}

.who-copy h2, .mission-card h2, .vision-card h2 {
  font-size: 21px;
  margin-bottom: 8px;
}

.who-copy p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.who-photo {
  min-height: 260px;
}

.who-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-card,
.vision-card {
  border-left: 1px solid rgba(5,43,82,0.08);
  background: var(--warm);
}

.round-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.round-icon svg { width: 22px; height: 22px; }

.mission-card p, .vision-card p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- What We Believe + Our Core Values ---- */
.belief-values {
  background: var(--warm);
  padding: 55px 0;
}

.belief-values-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.8fr;
  gap: 40px;
  align-items: center;
}

.belief-block {
  display: flex;
  gap: 20px;
  align-items: center;
}

.belief-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  color: var(--gold);
}

.belief-icon svg { width: 100%; height: 100%; }

.belief-block h2 { font-size: 21px; margin-bottom: 10px; }

.belief-block p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.values-block h2 { font-size: 21px; margin-bottom: 18px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  background: #ffffff;
  padding: 24px 20px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(5,43,82,0.08);
}

.value-icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin: 0 auto 12px;
}

.value-icon svg { width: 100%; height: 100%; }

.value-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ---- CTA ---- */
.about-cta {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: url('images/about-cta-community-background.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-overlay::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(5,43,82,0.88);
}

.cta-inner {
  position: relative;
  z-index: 1;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 45px 0;
}

.cta-message {
  display: flex;
  gap: 22px;
  align-items: center;
  max-width: 620px;
}

.cta-message h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(24px, 2.6vw, 30px);
}

.cta-message p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 15.5px;
  line-height: 1.6;
}

.cta-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon svg { width: 30px; height: 30px; }

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.cta-buttons .btn { white-space: nowrap; }

/* ==========================================================================
   ABOUT PAGE — RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .purpose-card { grid-column: 1 / -1; }
  .identity-grid { grid-template-columns: 1fr 1fr; }
  .who-photo { grid-column: 2; grid-row: 1 / 3; min-height: 100%; }
  .mission-card, .vision-card { border-left: none; border-top: 1px solid rgba(5,43,82,0.08); }
}

@media (max-width: 900px) {
  .about-hero { min-height: 620px; }
  .about-hero-inner { min-height: 620px; align-items: flex-start; padding-top: 60px; }
  .about-hero-copy { width: 100%; }
  .about-hero-people { width: 90%; max-width: 90%; right: 50%; transform: translateX(50%); }

  .intro-grid, .identity-grid, .values-grid { grid-template-columns: 1fr; }
  .who-photo { grid-column: auto; grid-row: auto; min-height: 260px; }
  .mission-card, .vision-card { border-left: none; border-top: 1px solid rgba(5,43,82,0.08); }

  .belief-values-grid { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; text-align: center; }

  .intro-band, .identity-section, .belief-values { padding: 45px 0; }
}

@media (max-width: 640px) {
  .about-hero-copy h1 { font-size: 32px; }
  .belief-block { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   OUR PROGRAMS PAGE
   Reuses the homepage's existing --navy/--blue/--green/--gold/--white
   variables, Playfair Display / Source Sans 3 typography, .container,
   and .btn/.btn-primary, plus the shared header/footer markup. No
   full-page canvas wrapper — sections run full browser width, matching
   Home's outer-width behavior. Nothing above this point was modified.
   ========================================================================== */

.programs-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.programs-hero .hero-background {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.programs-hero .hero-background::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, rgba(5,43,82,0.96) 0%, rgba(5,43,82,0.82) 35%, rgba(5,43,82,0.4) 65%, rgba(5,43,82,0.1) 100%);
}

.programs-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 60px 40px;
}

.programs-hero-text {
  max-width: 640px;
}

.programs-hero-content h1 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.05;
}

.programs-hero .gold-rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 18px 0;
}

.programs-hero-tagline {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
}

.programs-hero-lede {
  max-width: 600px;
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ---- Intro: Three Pathways Forward ---- */
.programs-intro {
  padding: 28px 20px 24px;
  background: var(--white);
  text-align: center;
}

.programs-intro h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
}

.gold-rule.center {
  margin: 0 auto;
}

.programs-intro p {
  max-width: 780px;
  margin: 8px auto 0;
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---- Program rows ---- */
.program-row {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
  background: var(--white);
  margin: 0;
}

.program-row.reverse {
  grid-template-columns: 58% 42%;
}

.program-row .program-image {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: auto;
}

.program-row .program-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.program-service .program-image img { object-position: center 30%; }
.program-stability .program-image img { object-position: center center; }
.program-leadership .program-image img { object-position: center 35%; }

.program-content-wrap {
  display: flex;
  align-items: center;
}

.program-content {
  padding: 34px 0;
  width: 100%;
}

.program-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.program-main-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.program-main-icon svg { width: 26px; height: 26px; }

.program-service .program-main-icon { background: var(--blue); }
.program-stability .program-main-icon { background: var(--green); }
.program-leadership .program-main-icon { background: var(--gold); }

.program-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
}

.program-service h2 { color: var(--navy); }
.program-stability h2 { color: var(--green); }
.program-leadership h2 { color: var(--gold); }

.program-subtitle {
  margin: 3px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
}

.program-service .program-subtitle { color: var(--blue); }
.program-stability .program-subtitle { color: var(--green); }
.program-leadership .program-subtitle { color: var(--gold); }

.program-description-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 28px;
  margin-bottom: 22px;
}

.program-description-grid > div + div {
  border-left: 1px solid rgba(5,43,82,0.1);
  padding-left: 28px;
}

.program-description-grid h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 15px;
}

.program-description-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(5,43,82,0.08);
}

.capability {
  text-align: center;
}

.capability-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 8px;
}

.capability-icon svg { width: 100%; height: 100%; }

.program-service .capability-icon { color: var(--blue); }
.program-stability .capability-icon { color: var(--green); }
.program-leadership .capability-icon { color: var(--gold); }

.capability strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 600;
}

.program-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  color: #ffffff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 3px;
}

.program-btn svg { width: 14px; height: 14px; }

.program-btn-service { background: var(--navy); }
.program-btn-stability { background: var(--green); }
.program-btn-leadership { background: var(--gold); }

/* ---- One Mission. Three Pathways. ---- */
.one-mission {
  background: linear-gradient(100deg, var(--navy-dark), var(--navy));
  color: #ffffff;
  padding: 38px 0;
  text-align: center;
}

.one-mission h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
}

.mission-paths {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.mission-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.mission-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.mission-icon svg { width: 24px; height: 24px; }

.mission-service { background: var(--blue); }
.mission-stability { background: var(--green); }
.mission-leadership { background: var(--gold); }

.mission-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 2px;
}

.mission-item span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.mission-arrow {
  color: var(--gold);
  width: 24px;
  height: 24px;
}

.mission-arrow svg { width: 100%; height: 100%; }

.mission-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- More Than a Referral / How Can We Help ---- */
.lower-area {
  background: var(--white);
  padding: 0;
}

.lower-area-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 50px;
  align-items: stretch;
}

.referral-section {
  padding-top: 28px;
  padding-bottom: 28px;
  padding-right: 30px;
  border-right: 1px solid rgba(5,43,82,0.08);
}

.help-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.referral-section h2,
.help-section h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 25px);
}

.referral-section p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.referral-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 10px;
}

.small-feature {
  text-align: center;
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
}

.small-feature svg {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto 6px;
  color: var(--gold);
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.help-card {
  padding: 26px 18px;
  text-align: center;
  border: 1px solid rgba(5,43,82,0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(5,43,82,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.help-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.help-card-icon svg { width: 100%; height: 100%; }

.help-card-service .help-card-icon,
.help-card-service h3 { color: var(--navy); }
.help-card-stability .help-card-icon,
.help-card-stability h3 { color: var(--green); }
.help-card-leadership .help-card-icon,
.help-card-leadership h3 { color: var(--gold); }

.help-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 15.5px;
  line-height: 1.3;
}

.help-card p {
  margin: 0 0 16px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.5;
}

.help-card .program-btn {
  margin-top: auto;
  font-size: 11px;
  padding: 11px 18px;
}

/* ---- We Don't Do This Work Alone ---- */
.partnership {
  background: #F1EEE6;
  padding: 40px 0;
}

.partnership-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.partnership-icon {
  width: 48px;
  height: 48px;
  color: var(--navy);
}

.partnership-icon svg { width: 100%; height: 100%; }

.partnership-text h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}

.partnership-text p {
  margin: 0;
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 640px;
}

.partnership-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.partnership-btn svg { width: 14px; height: 14px; }

/* ---- Final CTA ---- */
.programs-final-cta {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.programs-final-cta .cta-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.programs-final-cta .cta-overlay::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(5,43,82,0.9);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 45px 0;
}

.final-cta-copy {
  max-width: 560px;
}

.final-cta-copy h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
}

.final-cta-copy p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.6;
}

.final-cta-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  flex-shrink: 0;
}

.final-cta-action {
  min-height: 92px;
  width: 108px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.final-cta-action svg { width: 24px; height: 24px; }

.final-cta-donate {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==========================================================================
   PROGRAMS PAGE — RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .lower-area-grid { grid-template-columns: 1fr; }
  .referral-section { border-right: none; padding-right: 0; margin-bottom: 36px; }
  .final-cta-action { width: 96px; min-height: 84px; }
}

@media (max-width: 900px) {
  .program-row, .program-row.reverse {
    grid-template-columns: 1fr;
  }
  .program-row.reverse .program-content-wrap { order: 2; }
  .program-row.reverse .program-image { order: 1; }
  .program-row .program-image { min-height: 300px; }

  .program-description-grid { grid-template-columns: 1fr; }
  .program-description-grid > div + div { border-left: none; padding-left: 0; padding-top: 16px; border-top: 1px solid rgba(5,43,82,0.1); }

  .capabilities { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }

  .mission-paths { grid-template-columns: 1fr; }
  .mission-arrow { margin: 4px auto; transform: rotate(90deg); }

  .help-cards { grid-template-columns: 1fr; }
  .referral-icons { grid-template-columns: repeat(3, 1fr); }

  .partnership-inner { grid-template-columns: 1fr; text-align: center; }
  .partnership-icon { margin: 0 auto; }
  .partnership-btn { justify-content: center; }

  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .final-cta-actions { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .final-cta-action { width: 100%; }
}

@media (max-width: 640px) {
  .programs-hero-content h1 { font-size: 34px; }
}

/* ==========================================================================
   GET INVOLVED PAGE
   Reuses existing --navy/--blue/--green/--gold/--white variables,
   Playfair Display / Source Sans 3 typography, .container, .btn/.btn-primary/
   .btn-outline, program-btn variants, and the shared header/footer markup.
   No full-page canvas wrapper — sections run full browser width, matching
   Home/About/Programs. Nothing above this point was modified.
   ========================================================================== */

/* ---- Hero ---- */
.get-involved-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.get-involved-hero .hero-background {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.get-involved-hero .hero-background::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, rgba(5,43,82,0.97) 0%, rgba(5,43,82,0.88) 30%, rgba(5,43,82,0.5) 55%, rgba(5,43,82,0.12) 80%);
}

.gi-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 55px 40px;
}

.gi-hero-text { max-width: 620px; }

.gi-hero-text h1 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.05;
}

.gi-hero-text .gold-rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0;
}

.gi-hero-tagline {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
}

.gi-hero-lede {
  margin: 0 0 26px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.6;
}

.gi-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- Choose Your Path ---- */
.choose-path {
  padding: 50px 0;
  background: var(--white);
}

.choose-path .section-head-centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.choose-path .section-head-centered h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
}

.choose-path .section-head-centered p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
}

.involvement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.involve-card {
  border: 1px solid rgba(5,43,82,0.1);
  background: var(--white);
  text-align: center;
  box-shadow: 0 8px 20px rgba(5,43,82,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-top { height: 6px; }
.card-top-navy { background: var(--navy); }
.card-top-gold { background: var(--gold); }
.card-top-green { background: var(--green); }
.card-top-blue { background: var(--blue); }

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: -32px auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 4px solid #ffffff;
  box-shadow: 0 6px 14px rgba(5,43,82,0.15);
}

.card-icon svg { width: 26px; height: 26px; }

.card-icon-navy { background: var(--navy); }
.card-icon-gold { background: var(--gold); }
.card-icon-green { background: var(--green); }
.card-icon-blue { background: var(--blue); }

.involve-card .card-body {
  padding: 0 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.involve-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 19px;
}

.involve-card p {
  flex: 1;
  margin: 0 0 18px;
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.55;
}

.program-btn-blue { background: var(--blue); }

/* ---- Split sections: Volunteer / Mentor ----
   Equal-height image/content built correctly using the proven pattern:
   grid stretch determines row height; content has no artificial height;
   the photo is taken out of flow via position:absolute so it can never
   drive the row's intrinsic height, then fills the stretched cell. */
.split-section {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
  background: var(--white);
  margin: 0;
}

.split-section.reverse {
  grid-template-columns: 58% 42%;
}

.split-photo {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: auto;
}

.split-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-content-wrap {
  display: flex;
  align-items: center;
}

.split-content {
  padding: 40px 0;
  width: 100%;
}

.mentor-content { background: #FBF3E2; }
.mentor-row .split-content-wrap { background: #FBF3E2; }

.section-label {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 12.5px;
  margin-bottom: 8px;
}

.section-label-gold { color: #C78D00; }
.section-label-green { color: var(--green); }

.split-content h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 30px);
}

.split-subhead {
  color: var(--blue);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 14px;
}

.split-content > p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 12px;
}

.check-list-label {
  display: block;
  color: var(--navy);
  font-size: 14.5px;
  margin-bottom: 10px;
}

.check-list {
  columns: 2;
  column-gap: 32px;
  padding: 0;
  list-style: none;
  margin: 0 0 22px;
}

.check-list li {
  break-inside: avoid;
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 13.5px;
  padding-left: 22px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.mini-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 24px;
}

.mini-benefit {
  text-align: center;
  padding: 10px;
  border-right: 1px solid rgba(5,43,82,0.1);
}

.mini-benefit:last-child { border-right: none; }

.mini-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 8px;
  color: var(--gold);
}

.mini-icon svg { width: 100%; height: 100%; }

.mini-benefit strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 13.5px;
}

/* ---- We Don't Do This Work Alone ---- */
.partners {
  position: relative;
  padding: 50px 0;
  text-align: center;
  overflow: hidden;
}

.partners-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.1;
}

.partners-inner {
  position: relative;
  z-index: 1;
}

.partners h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
}

.partners .gold-rule.center {
  margin: 14px auto;
}

.partners-intro {
  max-width: 780px;
  margin: 0 auto 30px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
}

.partner-types {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 30px;
}

.partner-type {
  padding: 10px 12px;
  border-right: 1px solid rgba(5,43,82,0.1);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
}

.partner-type:last-child { border-right: none; }

.partner-type svg {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 8px;
  color: var(--green);
}

/* ---- Donation ---- */
.donation-section {
  background: var(--navy);
  color: #ffffff;
  padding: 48px 0;
}

.donation-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.donation-copy h2 {
  margin: 4px 0 10px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
}

.donation-copy p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  line-height: 1.6;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.amount {
  border: 2px solid var(--gold);
  padding: 16px 10px;
  text-align: center;
  border-radius: 3px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}

.amount strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 4px;
}

.donate-wide {
  width: 100%;
}

/* ---- Get Involved Form ---- */
.involvement-form-section {
  background: #F1EEE6;
  padding: 50px 0;
}

.form-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
}

.form-intro h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 27px);
  line-height: 1.2;
}

.form-intro p {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}

.gi-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gi-form input:not([type="checkbox"]),
.gi-form select,
.gi-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(5,43,82,0.15);
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  border-radius: 3px;
}

.form-full { grid-column: 1 / -1; }

.form-full strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 8px;
}

.interest-section { margin-bottom: 6px; }

.interest-heading {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 18px;
  margin-bottom: 12px;
}

.interest-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.35;
  cursor: pointer;
}

.interest-option input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--blue);
}

.interest-option span {
  flex: 1;
}

.gi-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* ---- Final CTA ---- */
.gi-final-cta {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.gi-final-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.gi-final-bg::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(5,43,82,0.92);
}

.gi-final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 46px 0;
}

.gi-final-copy { max-width: 560px; }

.gi-final-copy h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
}

.gi-final-copy p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 14.5px;
  line-height: 1.6;
}

.gi-final-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  flex-shrink: 0;
}

.gi-final-action {
  min-height: 92px;
  width: 104px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.gi-final-action svg { width: 24px; height: 24px; }

.gi-final-donate {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==========================================================================
   GET INVOLVED PAGE — RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .partner-types { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .involvement-grid { grid-template-columns: repeat(2, 1fr); }

  .split-section, .split-section.reverse { grid-template-columns: 1fr; }
  .split-section.reverse .split-content-wrap { order: 2; }
  .split-section.reverse .split-photo { order: 1; }
  .split-photo { min-height: 300px; }

  .donation-layout, .form-layout, .gi-final-inner { grid-template-columns: 1fr; }
  .gi-final-inner { flex-direction: column; align-items: flex-start; }
  .gi-final-actions { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .gi-final-action { width: 100%; }

  .choose-path, .partners, .donation-section, .involvement-form-section {
    padding: 40px 0;
  }
}

@media (max-width: 640px) {
  .gi-hero-text h1 { font-size: 32px; }
  .involvement-grid, .amount-grid, .interest-grid { grid-template-columns: 1fr 1fr; }
  .gi-form .form-grid { grid-template-columns: 1fr; }
  .interest-grid { grid-template-columns: 1fr; }
  .partner-types { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   CONTACT PAGE
   Reuses existing --navy/--blue/--green/--gold/--white variables,
   Playfair Display / Source Sans 3 typography, .container, .btn/.btn-primary/
   .btn-outline, program-btn variants, and the shared header/footer markup.
   No full-page canvas wrapper — sections run full browser width, matching
   Home/About/Programs/Get Involved. Nothing above this point was modified.
   ========================================================================== */

/* ---- Hero ---- */
.contact-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero .hero-background {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.contact-hero .hero-background::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, rgba(5,43,82,0.95) 0%, rgba(5,43,82,0.85) 32%, rgba(5,43,82,0.45) 60%, rgba(5,43,82,0.1) 85%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 55px 40px;
}

.contact-hero-text { max-width: 600px; }

.contact-hero-text h1 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.08;
}

.contact-hero-text .gold-rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0;
}

.contact-hero-tagline {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 21px);
}

.contact-hero-lede {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- Get In Touch + Send Us a Message ---- */
.contact-main {
  padding: 55px 0;
  background: var(--white);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 12.5px;
  margin-bottom: 10px;
}

.label-icon { width: 16px; height: 16px; }

.contact-info-col h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.2;
}

.contact-info-col > .gold-rule {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 12px 0 16px;
}

.contact-info-col > p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 26px;
}

.contact-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-detail-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 14.5px;
  color: var(--navy);
}

.contact-detail-list svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  flex-shrink: 0;
}

.contact-detail-list a { color: var(--navy); }
.contact-detail-list a:hover { color: var(--blue); }

.contact-form {
  background: #F1EEE6;
  padding: 30px;
  border-radius: var(--radius);
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(5,43,82,0.15);
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  border-radius: 3px;
}

.contact-form .field-label {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 8px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.required-note {
  margin: 10px 0 0;
  color: var(--slate);
  font-size: 12.5px;
}

/* ---- How Can We Help ---- */
.contact-help {
  padding: 50px 0;
  background: #F1EEE6;
}

.contact-help .section-head-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}

.contact-help .section-head-centered h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.rule-flank {
  width: 44px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.contact-help .section-head-centered p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.help-tile {
  background: #ffffff;
  border: 1px solid rgba(5,43,82,0.1);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 8px 20px rgba(5,43,82,0.06);
}

.help-tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 16px;
}

.help-tile-icon svg { width: 24px; height: 24px; }

.help-tile-service .help-tile-icon { background: var(--blue); }
.help-tile-stability .help-tile-icon { background: var(--green); }
.help-tile-leadership .help-tile-icon { background: var(--gold); }

.help-tile h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 17px;
}

.help-tile-service h3 { color: var(--blue); }
.help-tile-stability h3 { color: var(--green); }
.help-tile-leadership h3 { color: #C78D00; }

.help-tile p {
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.help-tile .program-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.help-tile .program-btn svg { width: 14px; height: 14px; }

/* ---- Want to Help Create the Next Pathway (closing CTA) ---- */
.contact-cta {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.contact-cta .cta-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.contact-cta .cta-overlay::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(5,43,82,0.9);
}

.contact-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 46px 0;
}

.contact-cta-left {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  max-width: 620px;
}

.contact-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-cta-icon svg { width: 26px; height: 26px; }

.contact-cta-left h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
}

.contact-cta-left p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.88);
  font-size: 14.5px;
}

.contact-cta-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-cta-checks li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.contact-cta-checks svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.contact-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ==========================================================================
   CONTACT PAGE — RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .contact-main-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .contact-cta-inner { flex-direction: column; align-items: flex-start; }
  .contact-cta-actions { width: 100%; }
  .contact-cta-actions .btn { flex: 1; text-align: center; }

  .contact-main, .contact-help { padding: 40px 0; }
}

@media (max-width: 640px) {
  .contact-hero-text h1 { font-size: 32px; }
  .contact-form .form-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BOARD OF DIRECTORS PAGE
   Reuses existing --navy/--blue/--green/--gold/--white variables,
   Playfair Display / Source Sans 3 typography, .container, .btn/.btn-primary/
   .btn-outline, and the shared header/footer markup. No full-page canvas
   wrapper — sections run full browser width, matching the rest of the site.
   Nothing above this point was modified.
   ========================================================================== */

/* ---- Hero ---- */
.board-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.board-hero .hero-background {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.board-hero .hero-background::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, rgba(5,43,82,0.95) 0%, rgba(5,43,82,0.85) 32%, rgba(5,43,82,0.45) 60%, rgba(5,43,82,0.1) 85%);
}

.board-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 50px 40px;
}

.board-hero-text { max-width: 600px; }

.board-hero-text h1 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
}

.board-hero-text .gold-rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 14px 0;
}

.board-hero-tagline {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 21px);
}

.board-hero-lede {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---- Leadership With Purpose ---- */
.leadership-purpose {
  padding: 40px 0;
  background: var(--white);
}

.leadership-purpose-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.section-label {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 12.5px;
  margin-bottom: 8px;
}

.leadership-purpose-grid h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.2;
}

.leadership-purpose-grid .gold-rule {
  width: 46px;
  height: 3px;
  background: var(--gold);
  margin-top: 14px;
}

.leadership-purpose-grid > p {
  margin: 0;
  padding-left: 30px;
  border-left: 1px solid rgba(5,43,82,0.15);
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ---- Leading the Path Forward: 3 featured leader cards ---- */
.board-leaders {
  padding: 50px 0;
  background: #F1EEE6;
}

.section-head-centered { text-align: center; max-width: 720px; margin: 0 auto 34px; }

.section-head-centered h2 {
  margin: 4px 0 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
}

.section-head-centered p {
  margin: 0;
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.55;
}

/* All three cards share identical structure/dimensions regardless of
   whether the photo slot holds a real portrait or the placeholder. */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.leader-card {
  background: #ffffff;
  border: 1px solid rgba(5,43,82,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(5,43,82,0.08);
  display: flex;
  flex-direction: column;
}

.leader-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.8;
  overflow: hidden;
  background: #E4E7EA;
}

.leader-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.placeholder-badge {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-badge span {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
}

.placeholder-caption {
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.leader-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.leader-body h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
}

.leader-title {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
}

.leader-bio {
  margin: 0;
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ---- Committed to Service: board officers ---- */
.board-officers {
  padding: 50px 0;
  background: var(--white);
}

.officer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.officer-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid rgba(5,43,82,0.1);
  border-radius: var(--radius);
  padding: 24px;
}

.officer-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.officer-icon svg { width: 24px; height: 24px; }

.officer-card h3 {
  margin: 0 0 2px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 18px;
}

.officer-role {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.officer-note {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.55;
}

/* ---- Stewardship & Accountability ---- */
.stewardship-section {
  padding: 50px 0;
  background: #F1EEE6;
}

.stewardship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stewardship-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.stewardship-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stewardship-icon svg { width: 22px; height: 22px; }

.stewardship-item h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 16px;
}

.stewardship-item p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.55;
}

/* ---- Service / Accountability / Stewardship navy band ---- */
.values-band {
  background: var(--navy);
  padding: 32px 0;
}

.values-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.values-band-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.values-band-item:last-child { border-right: none; }

.values-band-item svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
  flex-shrink: 0;
}

.values-band-item strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 2px;
}

.values-band-item span {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}

/* ---- Together, We're Building Pathways Forward (closing CTA) ---- */
.board-cta {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.board-cta .cta-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.board-cta .cta-overlay::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(5,43,82,0.88);
}

.board-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 42px 0;
}

.board-cta-copy { max-width: 560px; }

.board-cta-copy h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
}

.board-cta-copy p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 14.5px;
}

.board-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.board-cta-actions .btn-outline {
  border-color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   BOARD PAGE — RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .stewardship-grid { grid-template-columns: 1fr 1fr; }
  .values-band-grid { grid-template-columns: 1fr; gap: 14px; }
  .values-band-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 14px; }
  .values-band-item:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 900px) {
  .leadership-purpose-grid { grid-template-columns: 1fr; }
  .leadership-purpose-grid > p { padding-left: 0; border-left: none; padding-top: 16px; border-top: 1px solid rgba(5,43,82,0.1); }

  .leader-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .officer-grid { grid-template-columns: 1fr; }
  .stewardship-grid { grid-template-columns: 1fr; }

  .board-cta-inner { flex-direction: column; align-items: flex-start; }
  .board-cta-actions { width: 100%; }
  .board-cta-actions .btn { flex: 1; text-align: center; }

  .leadership-purpose, .board-leaders, .board-officers, .stewardship-section { padding: 40px 0; }
}

@media (max-width: 640px) {
  .board-hero-text h1 { font-size: 30px; }
}
