:root {
  --navy-900: #0a1f4d;
  --navy-800: #122a63;
  --navy-700: #1e3a8a;
  --navy-500: #3b5bb5;
  --navy-300: #8aa0d4;
  --navy-50:  #eef2fb;
  --ink:      #111827;
  --ink-soft: #374151;
  --muted:    #6b7280;
  --line:     #e5e7eb;
  --bg:       #ffffff;
  --bg-soft:  #f7f9fd;
  --accent:   #3b5bb5;
  --radius:   14px;
  --shadow-sm: 0 1px 2px rgba(10, 31, 77, 0.06), 0 1px 3px rgba(10, 31, 77, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 31, 77, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 31, 77, 0.18);
  --max:      1140px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--navy-900); }

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy-900);
}
.nav-brand img {
  height: 38px;
  width: auto;
}
.nav-brand-text {
  font-size: 1.05rem;
}
.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover { color: var(--navy-900); }
.nav-links a.active {
  color: var(--navy-900);
  border-bottom-color: var(--navy-700);
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--navy-300); }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(59, 91, 181, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(10, 31, 77, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: var(--navy-50);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--navy-900);
  letter-spacing: -0.015em;
  font-weight: 800;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 28px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art .glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(59,91,181,0.25), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}
.hero-art img {
  position: relative;
  z-index: 1;
  max-width: 360px;
  filter: drop-shadow(0 30px 50px rgba(10, 31, 77, 0.25));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-500));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-secondary {
  background: #fff;
  color: var(--navy-900);
  border-color: var(--line);
}
.btn-secondary:hover {
  border-color: var(--navy-700);
  color: var(--navy-900);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: transparent;
  padding: 12px 6px;
}
.btn-ghost::after {
  content: "→";
  margin-left: 6px;
  transition: transform .15s ease;
}
.btn-ghost:hover::after { transform: translateX(3px); }

/* ---------- Section ---------- */
.section {
  padding: 84px 0;
}
.section.alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-700);
  margin-bottom: 12px;
  display: inline-block;
}
.section-head h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin: 0 0 14px;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  font-weight: 800;
  line-height: 1.15;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin: 0;
}

.prose {
  max-width: 780px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.prose p { margin: 0 0 18px; }
.prose ul { margin: 0 0 18px; padding-left: 22px; }
.prose ul li { margin: 0 0 8px; }
.prose .pull {
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--navy-900);
  font-weight: 600;
  padding: 22px 26px;
  border-left: 4px solid var(--navy-500);
  background: var(--navy-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}

/* ---------- Cards / lists ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 22px 60px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .15s ease, transform .08s ease, border-color .15s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy-300);
}
.card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  box-shadow: 0 6px 14px rgba(30, 58, 138, 0.30);
}
.card::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 31px;
  width: 12px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.card p {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Path cards (index) ---------- */
.paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.path-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .12s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.path-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--navy-300);
}
.path-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: var(--navy-50);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.path-card h3 {
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.path-card p {
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.path-card .meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.path-card .audience {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- Leadership grid ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
}
.leader-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .12s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.leader-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--navy-300);
}

/* Square headshot with automatic initials fallback.
   Drop a photo at the referenced path and it replaces the placeholder — no code change. */
.headshot {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-500));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.headshot .initials {
  color: rgba(255, 255, 255, 0.92);
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.headshot .ph-label {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.headshot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.leader-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.leader-body h3 {
  font-size: 1.3rem;
  margin: 0 0 4px;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.leader-body .role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-700);
  margin: 0 0 14px;
}
.leader-body p {
  color: var(--ink-soft);
  margin: 0 0 20px;
  font-size: 1rem;
}
.leader-body .btn-ghost {
  margin-top: auto;
  align-self: flex-start;
  padding-left: 0;
}

/* ---------- Single bio page ---------- */
.bio-head {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 44px;
}
.bio-head .headshot {
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.bio-head .initials { font-size: 4.2rem; }
.bio-head h1 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 6px 0 10px;
  color: var(--navy-900);
  letter-spacing: -0.015em;
  font-weight: 800;
}
.bio-titles {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
}
.bio-titles li {
  color: var(--navy-700);
  font-weight: 600;
  font-size: 1rem;
  padding: 2px 0;
}
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-700);
}
.back-link::before { content: "← "; }

/* ---------- Contact form ---------- */
.contact-wrap { max-width: 640px; margin: 0 auto; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.form-field label .opt { color: var(--muted); font-weight: 400; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy-500);
  box-shadow: 0 0 0 3px rgba(59, 91, 181, 0.15);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-actions { margin-top: 8px; }
.form-actions .btn { cursor: pointer; }
.form-status {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 10px;
  font-weight: 500;
}
.form-status:empty { display: none; }
.form-status.ok {
  background: var(--navy-50);
  color: var(--navy-900);
  border: 1px solid var(--navy-300);
}
.form-status.err {
  background: #fef2f2;
  color: #9b1c1c;
  border: 1px solid #f3c6c6;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 68px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 30%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(800px 400px at 80% 70%, rgba(59, 91, 181, 0.35), transparent 60%);
  pointer-events: none;
}
.cta-strip .container { position: relative; }
.cta-strip h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 26px;
  max-width: 640px;
  font-size: 1.08rem;
}
.cta-strip .btn-primary {
  background: #fff;
  color: var(--navy-900);
}
.cta-strip .btn-primary:hover {
  color: var(--navy-900);
  background: #f4f6fb;
}
.cta-strip .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.cta-strip .btn-secondary:hover {
  border-color: #fff;
  color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1f4d;
  color: rgba(255,255,255,0.75);
  padding: 40px 0 30px;
  font-size: 0.92rem;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.site-footer .brand img { height: 30px; }
.site-footer nav a {
  color: rgba(255,255,255,0.75);
  margin-left: 20px;
}
.site-footer nav a:hover { color: #fff; }
.site-footer .legal {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
  margin-top: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* ---------- Mobile & tablet nav (hamburger, <=1024px) ---------- */
@media (max-width: 1024px) {
  .nav { position: relative; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 6px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 24px;
    border-bottom: none;
    font-size: 1rem;
  }
  .nav-links a.active {
    border-bottom: none;
    background: var(--navy-50);
    color: var(--navy-900);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 220px; }
  .section { padding: 60px 0; }
  .cards { grid-template-columns: 1fr; }
  .paths { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .bio-head { grid-template-columns: 1fr; gap: 24px; }
  .bio-head .headshot { max-width: 260px; }
  .site-footer .container { justify-content: center; text-align: center; }
  .site-footer nav a { margin: 0 10px; }
}
