:root{
  --bg:#020617;
  --bg2:#020617;
  --panel:rgba(15,23,42,.90);
  --panel2:rgba(15,23,42,.82);
  --border:rgba(148,163,184,.38);
  --text:#e5e7eb;
  --muted:#cbd5f5;
  --blue:#12345b;
  --blue2:#1b4f72;
  --shadow:0 18px 50px rgba(15,23,42,.7);
  --radius:18px;
  --max:1160px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(circle at top,#0f172a 0,#020617 55%,#020617 100%),
    url('assets/leadership-home.jpg');
  background-size:cover;
  background-attachment:fixed;
  background-position:center;
  background-blend-mode:multiply;
  min-height:100vh;
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}
.section{padding:72px 0}
.kicker{
  display:inline-flex;align-items:center;gap:10px;
  border:1px solid rgba(148,163,184,.35);
  background:rgba(255,255,255,.85);
  padding:8px 12px;border-radius:999px;
  color:var(--blue2);
  font-weight:850;font-size:13px;
}
.kicker .dot{width:8px;height:8px;border-radius:99px;background:rgba(30,136,229,.85);box-shadow:0 0 18px rgba(30,136,229,.65)}
h1{font-size:clamp(2.1rem,3.8vw,3.4rem);letter-spacing:-.03em;line-height:1.05;margin:14px 0 12px}
h2{font-size:clamp(1.55rem,2.6vw,2.3rem);letter-spacing:-.02em;margin:0 0 10px}
h3{font-size:1.12rem;margin:0 0 8px}
p{color:var(--muted);line-height:1.75;margin:12px 0}
.small{font-size:13px;color:rgba(148,163,184,1);line-height:1.7}
.card{border:1px solid var(--border);background:var(--panel);border-radius:var(--radius);padding:18px;box-shadow:var(--shadow)}
.card.soft{background:var(--panel2)}
.hr{height:1px;background:var(--border);margin:22px 0}
.grid{display:grid;gap:16px}
.cols2{grid-template-columns:repeat(2,minmax(0,1fr))}
.cols3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:980px){.cols2,.cols3{grid-template-columns:1fr}}
.btnrow{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  border:1px solid rgba(148,163,184,.5);
  border-radius:14px;
  padding:12px 14px;
  font-weight:700;
  background:#ffffff;
  color:#0e1525;
}
.btn:hover{border-color:#1f4fb2;background:#1f4fb2;color:#ffffff}
.btn.primary{background:#1f4fb2;color:#fff;border-color:#1f4fb2;}
.btn.primary:hover{filter:brightness(1.05);color:#ffffff}
.badge{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 12px;border-radius:999px;
  border:1px solid rgba(129,140,248,.8);
  background:rgba(15,23,42,.9);
  color:rgba(191,219,254,1);
  font-weight:600;font-size:.8rem;letter-spacing:.02em;text-transform:uppercase;
}
.ul{margin:0;padding-left:18px;color:var(--muted);line-height:1.9}
.hero{padding:92px 0 64px;border-bottom:1px solid var(--border)}
.heroGrid{display:grid;grid-template-columns:1.15fr .85fr;gap:18px;align-items:start}
@media (max-width:980px){.hero{padding-top:78px}.heroGrid{grid-template-columns:1fr}}
.navbar{position:sticky;top:0;z-index:50;background:#0a1a33;border-bottom:1px solid rgba(30,64,175,.7)}
.navInner{display:flex;align-items:center;justify-content:space-between;padding:14px 20px}
.brand{display:flex;align-items:center;gap:12px}
.brandTitle{font-weight:900;letter-spacing:-.03em;line-height:1;color:#ffffff;white-space:nowrap}
.brandSub{font-weight:600;color:#e5e7eb;font-size:13px;margin-top:2px;white-space:nowrap}
.navLinks{display:flex;align-items:center;gap:10px}
.navPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 14px;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.7);
  background:#ffffff;
  color:#0e1525;
  font-weight:700;
  font-size:14px;
}

.navPill:hover{
  border-color:#1f4fb2;
  background:#1f4fb2;
  color:#ffffff;
}

.menuBtn{
  display:none;border:1px solid var(--border);background:rgba(255,255,255,.04);
  border-radius:14px;padding:10px;cursor:pointer;
}
@media (max-width:980px){.navLinks{display:none}.menuBtn{display:inline-flex}}
.hamburger{
  position:relative;
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.9);
  background:rgba(15,23,42,.98);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.hamburger span{
  position:absolute;
  left:5px;
  right:5px;
  top:50%;
  height:2px;
  border-radius:999px;
  background:#f9fafb;
  transition:180ms ease;
}
.hamburger span:nth-child(1){transform:translateY(-6px)}
.hamburger span:nth-child(2){transform:translateY(0)}
.hamburger span:nth-child(3){transform:translateY(6px)}
.menuOpen .hamburger span:nth-child(1){transform:translateY(0) rotate(45deg)}
.menuOpen .hamburger span:nth-child(2){opacity:0}
.menuOpen .hamburger span:nth-child(3){transform:translateY(0) rotate(-45deg)}
.mobileMenu{
  display:none;
  border-top:1px solid rgba(148,163,184,.35);
  background:#f9fafb;
  backdrop-filter:blur(16px);
}
.mobileMenu.open{display:block}
.mobileGrid{display:grid;gap:10px;padding:14px 20px 18px}
.mobileItem{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.8);
  background:#ffffff;
  font-weight:700;
  color:#0f172a;
}
.mobileItem:hover{
  border-color:#1f4fb2;
  background:#1f4fb2;
  color:#ffffff;
}
.form{display:grid;gap:12px}
.field label{display:block;font-weight:700;font-size:13px;margin-bottom:6px;color:var(--muted)}
input,textarea,select{
  width:100%;padding:12px 12px;border-radius:14px;border:1px solid #94a3b8;
  background:#ffffff;color:#0e1525;outline:none;
}
textarea{min-height:150px;resize:vertical}
.notice{border:1px solid rgba(255,255,255,.18);background:rgba(15,23,42,.9);border-radius:16px;padding:14px;color:var(--muted)}
.footer{
  border-top:1px solid rgba(148,163,184,.45);
  padding:32px 0;
  background:radial-gradient(circle at top left,#1d2b50,#020617 48%);
  color:#e5e7eb;
}
.footerGrid{
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  align-items:flex-start;
  font-size:.86rem;
}


/* --- Form dropdown readability fixes --- */
select{
  background:#ffffff;
  color:#0e1525;
}
select option{
  background:#ffffff;
  color:#0e1525;
}

/* Improve focus visibility */
input:focus, textarea:focus, select:focus{
  border-color: rgba(15,76,129,.85);
  box-shadow: 0 0 0 3px rgba(15,76,129,.25);
}


/* --- Header / brand icon styling (Option A with icon-only logo) --- */
.navbar{position:sticky;top:0;z-index:50;background:#0a1a33;border-bottom:1px solid rgba(30,64,175,.7)}

.brandIcon{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.35);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(148,163,184,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brandIcon img{
  width:32px;
  height:32px;
  border-radius:999px;
  object-fit:cover;
  display:block;
}

.heroImageWrap{color:var(--muted);line-height:1.75;margin:12px 10}

.heroImage{
  width:100%;
  height:50vh;
  object-fit:cover;
  display:block;
  border-radius:0;
  box-shadow:none;
}



.navLinks{display:flex;gap:10px;align-items:center}
.navPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 14px;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.7);
  background:#ffffff;
  color:#0e1525;
  font-weight:700;
  font-size:14px;
}

.navPill[aria-current="page"]{
  background:#1f4fb2;
  color:#ffffff;
  border-color:#1f4fb2;
}
.navPill:hover{
  border-color:#1f4fb2;
  background:#1f4fb2;
  color:#ffffff;
}



.footer a{
  color:#e5e7eb;
  text-decoration:none;
}
.footer a:hover{
  text-decoration:underline;
}


.chipRow{
  margin-top:60px;
  margin-bottom:24px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  text-align:center;
}

/* ensure badges can wrap nicely on small screens */
.chipRow .badge{
  justify-content:center;
}

@media (max-width:640px){
  .container{
    max-width:100%;
    padding:0 16px;
  }
  .hero{
    padding:72px 0 40px;
  }
  .section{
    padding:32px 0 40px;
  }
  .footer{
    padding:24px 0 32px;
  }
  .footerGrid{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }
}


@media (max-width:768px){
  .navLinks{
    display:none;
  }
  .hamburger{
  position:relative;
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.9);
  background:rgba(15,23,42,.98);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
}

.mobileItem a{
  color:inherit;
  text-decoration:none;
  flex:1;
}

/* Leadership headshots */
.leaderGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.leaderCard{
  display:flex;
  gap:12px;
  align-items:center;
  padding:12px;
  border:1px solid rgba(148,163,184,.35);
  border-radius:16px;
  background:rgba(255,255,255,.03);
}
.leaderPhoto{
  width:72px;
  height:72px;
  border-radius:999px;
  object-fit:cover;
  flex:0 0 auto;
  border:1px solid rgba(148,163,184,.35);
}
.leaderName{
  font-weight:800;
}
.leaderTitle{
  color:rgba(229,231,235,.92);
  font-size:.9rem;
  margin-top:2px;
}
@media (min-width:900px){
  .leaderGrid{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width:640px){
  .leaderPhoto{ width:64px; height:64px; }
  .leaderCard{ padding:10px; }
}
