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

:root {
  --navy:       #0c1f3d;
  --navy-mid:   #163060;
  --blue:       #1a4d8a;
  --blue-lt:    #2563b0;
  --gold:       #b8862a;
  --gold-lt:    #d4a742;
  --text:       #1a1a2e;
  --text-mid:   #4a5568;
  --text-lt:    #718096;
  --bg-light:   #f5f7fa;
  --bg-white:   #ffffff;
  --border:     #dde3ed;
  --radius:     8px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.07);
  --shadow-md:  0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --transition: 0.22s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container   { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 88px 0; }
.bg-light    { background: var(--bg-light); }
.bg-dark     { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-weight: 600; font-size: .875rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 11px 26px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-lt); border-color: var(--blue-lt); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg  { padding: 14px 34px; font-size: .9rem; }
.btn-sm  { padding: 8px 18px; font-size: .78rem; }
.btn-block { width: 100%; }

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────── */
.section-eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.section-eyebrow.gold { color: var(--gold-lt); }
.section-eyebrow.white { color: rgba(255,255,255,.65); }

.section-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 16px;
}
.section-title.white { color: #fff; }

.section-sub { font-size: 1.025rem; color: var(--text-mid); max-width: 600px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 56px; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg-white); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; height: 68px; gap: 16px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px; background: var(--navy); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Merriweather', serif; font-size: .85rem; font-weight: 700;
  color: #fff; letter-spacing: -.02em;
}
.logo-name { line-height: 1.1; }
.logo-name span:first-child {
  display: block; font-size: .88rem; font-weight: 700; color: var(--navy);
  letter-spacing: .02em;
}
.logo-name span:last-child {
  display: block; font-size: .65rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-lt);
}

.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a {
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-mid); transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--blue); transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--navy); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0 64px; text-align: center; color: #fff;
}
.page-hero .section-eyebrow { color: var(--gold-lt); }
.page-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.25;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 600px; margin: 0 auto; }

/* ── HOME HERO ───────────────────────────────────────────── */
.home-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a3870 100%);
  color: #fff; padding: 96px 0 80px; position: relative; overflow: hidden;
}
.home-hero::before {
  content: ''; position: absolute; top: -100px; right: -60px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(26,77,138,.25) 0%, transparent 70%);
  pointer-events: none;
}
.home-hero::after {
  content: ''; position: absolute; bottom: -80px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,134,42,.1) 0%, transparent 70%);
  pointer-events: none;
}
.home-hero-inner { max-width: 740px; }

.hero-overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 22px;
}
.hero-overline::before {
  content: ''; width: 28px; height: 2px; background: var(--gold-lt);
}

.home-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 700; line-height: 1.22; color: #fff; margin-bottom: 22px;
}
.home-hero h1 em { font-style: normal; color: var(--gold-lt); }

.home-hero .hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,.72); margin-bottom: 38px; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-bar { height: 4px; background: linear-gradient(90deg, var(--gold), var(--blue-lt), var(--gold)); margin-top: 64px; }

/* ── STAT BANNER ─────────────────────────────────────────── */
.stat-banner { background: var(--navy-mid); padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.stat-row { display: flex; justify-content: center; gap: 0; }
.stat-item {
  text-align: center; padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block; font-family: 'Merriweather', serif;
  font-size: 1.9rem; font-weight: 700; color: var(--gold-lt); line-height: 1;
}
.stat-desc {
  display: block; font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 5px;
}

/* ── MISSION STRIP ───────────────────────────────────────── */
.mission-strip { background: var(--bg-light); padding: 60px 0; }
.mission-inner {
  display: flex; align-items: center; gap: 64px;
}
.mission-badge {
  flex-shrink: 0; width: 120px; height: 120px; border-radius: 50%;
  background: var(--navy); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.mission-badge span:first-child {
  font-family: 'Merriweather', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--gold-lt); line-height: 1;
}
.mission-badge span:last-child {
  font-size: .58rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 4px; line-height: 1.3;
}
.mission-text h2 {
  font-family: 'Merriweather', serif; font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700; color: var(--navy); margin-bottom: 12px;
}
.mission-text p { font-size: .975rem; color: var(--text-mid); line-height: 1.75; }

/* ── CARDS GRID ──────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--border); border-radius: 12px 12px 0 0;
  transition: background var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card:hover::before { background: var(--blue); }

.card-icon {
  width: 50px; height: 50px; background: rgba(26,77,138,.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-family: 'Merriweather', serif; font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; line-height: 1.35;
}
.card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .82rem; font-weight: 600; color: var(--blue);
  margin-top: 16px; letter-spacing: .04em; text-transform: uppercase;
  transition: gap var(--transition);
}
.card .card-link:hover { gap: 9px; }

/* ── TWO-COL SPLIT ───────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 14px; padding: 48px 40px; color: #fff;
}
.split-visual blockquote {
  font-family: 'Merriweather', serif; font-size: 1.25rem; font-style: italic;
  line-height: 1.55; color: rgba(255,255,255,.9); margin-bottom: 22px;
}
.split-visual cite {
  font-size: .82rem; font-weight: 600; color: var(--gold-lt);
  letter-spacing: .06em; text-transform: uppercase; font-style: normal;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; text-align: left; gap: 16px;
}
.faq-btn span {
  font-size: .975rem; font-weight: 600; color: var(--navy); line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--blue); line-height: 1;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; border-color: var(--blue); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0;
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 20px; }
.faq-answer p { font-size: .9rem; color: var(--text-mid); line-height: 1.75; }

/* ── INVOLVEMENT CARDS ───────────────────────────────────── */
.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.involve-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 28px; text-align: center;
  transition: var(--transition);
}
.involve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.involve-num {
  font-family: 'Merriweather', serif; font-size: 2.4rem; font-weight: 700;
  color: var(--border); display: block; margin-bottom: 16px; line-height: 1;
}
.involve-card h3 {
  font-family: 'Merriweather', serif; font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.involve-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 22px; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.contact-side h2 { font-family: 'Merriweather', serif; font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.contact-side p  { font-size: .975rem; color: rgba(255,255,255,.68); line-height: 1.75; margin-bottom: 28px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.c-row { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.72); font-size: .9rem; }
.c-row svg { width: 18px; height: 18px; flex-shrink: 0; opacity: .65; }
.c-row a { transition: color var(--transition); }
.c-row a:hover { color: var(--gold-lt); }

.contact-form {
  background: var(--bg-white); border-radius: 12px; padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); margin-bottom: 7px; }
input, textarea, select {
  width: 100%; font-family: inherit; font-size: .9rem; color: var(--text);
  background: var(--bg-light); border: 1.5px solid var(--border);
  border-radius: 6px; padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,77,138,.11);
  background: #fff;
}
.form-note { text-align: center; font-size: .75rem; color: var(--text-lt); margin-top: 10px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: #070f1e; padding: 56px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo .logo-mark { background: var(--navy-mid); }
.footer-logo .logo-name span:first-child { color: #fff; }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.65; margin-bottom: 16px; }
.footer-contact-mini { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-mini a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-contact-mini a:hover { color: var(--gold-lt); }

.footer-col h4 {
  font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-legal { font-size: .75rem; color: rgba(255,255,255,.28); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: .75rem; color: rgba(255,255,255,.28); transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,.6); }

/* ── NONPROFIT BADGE ─────────────────────────────────────── */
.nonprofit-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 6px 14px;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 18px;
}
.nonprofit-badge::before { content: '501(c)'; font-weight: 700; color: var(--gold-lt); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .cards-grid    { grid-template-columns: 1fr 1fr; }
  .involve-grid  { grid-template-columns: 1fr 1fr; }
  .split         { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap  { grid-template-columns: 1fr; gap: 40px; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .stat-row      { flex-wrap: wrap; }
  .stat-item     { padding: 16px 32px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .mission-inner { flex-direction: column; gap: 32px; text-align: center; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg-white); border-bottom: 1px solid var(--border);
    padding: 20px 24px; gap: 18px; box-shadow: var(--shadow-md);
  }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .cards-grid   { grid-template-columns: 1fr; }
  .involve-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-top   { grid-template-columns: 1fr 1fr; }
  .section-pad  { padding: 60px 0; }
  .home-hero    { padding: 64px 0 48px; }
}

@media (max-width: 480px) {
  .footer-top   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ══ NEW HOME PAGE COMPONENTS ══════════════════════════════════ */

/* Logo image overrides */
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-text-fallback {
  display: none; font-family: 'Merriweather',serif; font-size: .9rem; font-weight: 700;
  color: #fff; letter-spacing: .08em;
}

/* Header — dark version */
.site-header {
  background: rgba(12,31,61,.97) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: none !important;
}
.main-nav a { color: rgba(255,255,255,.72) !important; }
.main-nav a:hover, .main-nav a.active { color: #fff !important; background: rgba(255,255,255,.07); border-radius: 5px; }
.main-nav a::after { display: none; }
.nav-toggle span { background: #fff !important; }

/* Hero — with real background photo */
.hero {
  position: relative; color: #fff;
  padding: 100px 0 80px; overflow: hidden;
  min-height: 520px; display: flex; align-items: center;
}
.hero-bg-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img  { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,20,45,.93) 0%, rgba(15,38,78,.87) 55%, rgba(20,45,85,.78) 100%);
}
.hero-inner {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px;
}
.hero-content { max-width: 680px; }
.hero-eyebrow {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Merriweather',serif;
  font-size: clamp(1.6rem, 3.5vw, 2.55rem); font-weight: 700; line-height: 1.2;
  margin-bottom: 22px; color: #fff;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 36px; max-width: 560px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-bar {
  position: relative; z-index: 1;
  height: 4px; background: linear-gradient(90deg, var(--gold-lt), var(--blue-lt), var(--gold-lt));
  margin-top: 60px;
}
.hero-badge-col { flex-shrink: 0; }
.hero-badge {
  width: 164px; height: 164px; border-radius: 50%;
  border: 2px solid rgba(212,167,66,.35);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
}
.hero-badge img { width: 118px; height: 118px; object-fit: contain; filter: brightness(1.1); }

/* Intro strip */
.intro-strip {
  background: var(--gold); color: #fff; padding: 15px 0;
  font-size: .82rem; font-weight: 600; text-align: center; letter-spacing: .03em;
}
.intro-strip span { opacity: .6; margin: 0 8px; }

/* Mission section */
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.mission-img-wrap {
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.mission-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.mission-content .section-eyebrow { color: var(--gold); display: block; }
.mission-content h2 {
  font-family: 'Merriweather',serif; font-size: clamp(1.4rem,2.8vw,1.9rem);
  color: var(--navy); margin-bottom: 18px;
}
.mission-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.mission-content p:last-of-type { margin-bottom: 28px; }

/* Section 505 explainer */
.explainer { background: var(--navy); color: #fff; }
.explainer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.explainer-content h2 {
  font-family: 'Merriweather',serif; font-size: clamp(1.3rem,2.4vw,1.7rem);
  color: #fff; margin-bottom: 18px;
}
.explainer-content p { color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 14px; }
.explainer-stat {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 22px 32px; margin-top: 24px;
}
.explainer-stat-num {
  font-family: 'Merriweather',serif; font-size: 2.6rem; font-weight: 700;
  color: var(--gold-lt); line-height: 1;
}
.explainer-stat-label {
  font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase;
  letter-spacing: .1em; margin-top: 7px; text-align: center; max-width: 180px;
}
.explainer-points { display: flex; flex-direction: column; gap: 18px; }
.explainer-point {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px; padding: 20px;
}
.explainer-point-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700;
}
.explainer-point h4 {
  font-family: 'Inter',sans-serif; font-size: .88rem; font-weight: 600;
  color: #fff; margin-bottom: 5px;
}
.explainer-point p { font-size: .84rem; color: rgba(255,255,255,.62); line-height: 1.65; margin: 0; }

/* Get involved cards override */
.involve-card { text-align: left; }
.involve-card .involve-num {
  font-size: 3.2rem; color: rgba(26,77,138,.15); display: block; margin-bottom: 14px;
}

/* Office Showcase */
.office-showcase { position: relative; }
.office-img-wrap { position: relative; width: 100%; height: 480px; overflow: hidden; }
.office-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 55%;
  transition: transform 8s ease;
}
.office-showcase:hover .office-img { transform: scale(1.03); }
.office-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,20,45,.82) 0%, rgba(8,20,45,.3) 55%, rgba(8,20,45,.1) 100%);
}
.office-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 0 44px;
}
.office-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 8px; display: block;
}
.office-title {
  font-family: 'Merriweather', serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: #fff; margin-bottom: 10px;
}
.office-sub {
  font-size: .95rem; color: rgba(255,255,255,.75); max-width: 520px; line-height: 1.65;
}

/* James Gee profile */
.james-grid {
  display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: start;
}
.james-photo-wrap {
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative;
}
.james-photo-wrap img { width: 100%; display: block; }
.james-photo-badge {
  position: absolute; bottom: 18px; left: 16px; right: 16px;
  background: rgba(12,31,61,.9); backdrop-filter: blur(8px);
  border: 1px solid rgba(212,167,66,.3); border-radius: 10px;
  padding: 14px 16px;
}
.james-photo-badge strong { display: block; font-size: .9rem; color: #fff; }
.james-photo-badge span   { font-size: .75rem; color: var(--gold-lt); }
.james-info h2  { font-family: 'Merriweather',serif; font-size: clamp(1.4rem,2.4vw,1.8rem); color: var(--navy); margin-bottom: 6px; }
.james-creds    { font-size: .85rem; color: var(--blue); font-weight: 600; margin-bottom: 5px; }
.james-title    { font-size: .85rem; color: var(--text-lt); margin-bottom: 24px; }
.james-info p   { color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.james-tags     { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.james-tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  background: var(--bg-light); border: 1px solid var(--border);
  color: var(--navy); padding: 5px 12px; border-radius: 20px;
}

/* FAQ — new selectors mapping to existing logic */
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; text-align: left;
  font-family: 'Inter',sans-serif; font-size: .95rem; font-weight: 600; color: var(--navy);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-item .faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--blue); line-height: 1;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; border-color: var(--blue); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  font-size: .9rem; color: var(--text-mid); line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 20px; }

/* Contact — new layout */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
}
.contact-left h2  { font-family: 'Merriweather',serif; margin-bottom: 16px; }
.contact-details  { display: flex; flex-direction: column; gap: 16px; }
.contact-item     { display: flex; align-items: center; gap: 12px; font-size: .9rem; }
.contact-item svg { width: 18px; height: 18px; color: var(--gold-lt); flex-shrink: 0; }
.contact-item a   { color: rgba(255,255,255,.72); transition: color var(--transition); }
.contact-item a:hover { color: #fff; }
.contact-right .contact-form { padding: 36px; border-radius: 14px; }

/* Footer grid override */
.footer-grid {
  display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
.footer-brand .footer-logo { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.45); line-height: 1.7; }
.footer-col h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 14px;
}
.footer-col a { display: block; font-size: .84rem; color: rgba(255,255,255,.45); padding: 3px 0; transition: color var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* Responsive additions */
@media (max-width: 860px) {
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-badge-col     { display: none; }
  .mission-grid       { grid-template-columns: 1fr; }
  .explainer-grid     { grid-template-columns: 1fr; }
  .james-grid         { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .footer-brand       { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid        { grid-template-columns: 1fr; }
}
