:root {
  --navy: #0C2D6B;
  --navy-deep: #081E49;
  --blue: #0072BC;
  --green: #2E9E47;
  --green-deep: #1F7A35;
  --orange: #F7A600;
  --bg: #F7F8F6;
  --bg-white: #FFFFFF;
  --ink: #14213A;
  --ink-soft: #4A5670;
  --line: #E3E7E2;
  --max: 1180px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; color: var(--navy); line-height: 1.15; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
.nav-cta:focus, .nav-cta:focus-visible { outline: none !important; box-shadow: none !important; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }



/* Nav — Spectrum style: pure white, generous height, clean links */
header.nav { background: #FFFFFF; position: -webkit-sticky; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line); box-shadow: 0 1px 8px rgba(0,0,0,0.06); transition: transform .32s ease, box-shadow .25s ease; will-change: transform; }
header.nav.nav-hidden { transform: translateY(-102%); }
header.nav.scrolled { box-shadow: 0 4px 18px rgba(8,30,73,0.10); background: #FFFFFF; }
header.nav .nav-inner { transition: padding .25s ease; }
header.nav.scrolled .nav-inner { padding: 6px 0; }
header.nav .nav-logo img, header.nav .brand img { transition: height .25s ease; }
header.nav.scrolled .nav-logo img, header.nav.scrolled .brand img { height: 82px; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 0; }
.brand img { height: 110px; width: auto; }
.brand-name { display: none; }
nav.links { display: flex; gap: 0; align-items: center; }
nav.links a { font-size: 15px; font-weight: 500; color: var(--ink); padding: 8px 16px; border-radius: 0; transition: color 0.18s; position: relative; }
nav.links a::after { content: ""; position: absolute; bottom: -2px; left: 16px; right: 16px; height: 2px; background: var(--navy); transform: scaleX(0); transform-origin: center; transition: transform 0.2s ease; border-radius: 2px; }
nav.links a:hover { color: var(--navy); }
nav.links a:hover::after { transform: scaleX(1); }
nav.links a.active { color: var(--navy); font-weight: 600; }
nav.links a.active::after { transform: scaleX(1); }
.nav-cta { background: var(--navy) !important; color: white !important; padding: 11px 24px !important; border-radius: 30px !important; font-weight: 600 !important; font-size: 15px !important; margin-left: 12px; }
.nav-cta:hover { background: var(--blue) !important; }
.nav-cta::after { display: none !important; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.menu-toggle span { width: 26px; height: 2px; background: var(--navy); display: block; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 30px; font-weight: 600; font-size: 15px; transition: all 0.2s; border: 1.5px solid transparent; cursor: pointer; }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--navy); background: white; }
.btn-ghost:hover { border-color: var(--navy); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: white; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { background: #d99200; }

/* Eyebrow */
.eyebrow { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-deep); background: none; padding: 0; border-radius: 0; margin-bottom: 14px; }

/* Page hero (inner pages) */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%); padding: 64px 0 56px; color: white; min-height: 340px; display: flex; align-items: center; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(var(--hero-tint,12,45,107),.96) 0%, rgba(var(--hero-tint,12,45,107),.92) 26%, rgba(var(--hero-tint,12,45,107),.74) 46%, rgba(var(--hero-tint,12,45,107),.40) 64%, rgba(var(--hero-tint,12,45,107),.16) 82%, rgba(var(--hero-tint,12,45,107),.05) 100%),
    linear-gradient(180deg, rgba(6,18,42,.20) 0%, rgba(6,18,42,0) 45%, rgba(6,18,42,.22) 100%); }
.page-hero > .wrap { position: relative; z-index: 2; width: 100%; }
.page-hero h1 { color: white; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0; }
.page-hero h1::after { content: ""; display: block; width: 60px; height: 4px; background: var(--green); border-radius: 2px; margin-top: 14px; }
.page-hero h1 + p { margin-top: 20px; }
.page-hero .eyebrow { color: rgba(255,255,255,.88); background: none !important; padding: 0 !important; border-radius: 0 !important; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 56ch; }

/* Section shells */
section { padding: 80px 0; }
.alt-bg { background: var(--bg-white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 44px; padding-top: 8px; }
.section-head h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 0; }
.section-head h2::after { content: ""; display: block; width: 60px; height: 4px; background: var(--green); border-radius: 2px; margin-top: 12px; }
.section-head h2 + p { margin-top: 18px; }
.section-head p { color: var(--ink-soft); font-size: 1rem; }

/* shared accent underline — use on any standalone heading */
.accent-heading { margin-bottom: 0; }
.accent-heading::after { content: ""; display: block; width: 60px; height: 4px; background: var(--green); border-radius: 2px; margin-top: 12px; }
.accent-heading + * { margin-top: 24px; }
.join-banner h2::after, .no-accent::after { display: none !important; }

/* status labels — plain uppercase text, no pill */
.status-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; background: none; padding: 0; border-radius: 0; }
.status-label.is-active { color: var(--green-deep); }
.status-label.is-upcoming { color: #9B6900; }

/* Cards */
.card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -16px rgba(12,45,107,0.16); }
.card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 0.93rem; }

/* Person cards */
.person-card { background: white; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.person-photo { aspect-ratio: 1; overflow: hidden; background: linear-gradient(150deg,#EFF3F8,#E4EEE6); }
.person-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.person-info { padding: 20px; }
.person-info h3 { font-size: 1rem; margin-bottom: 3px; }
.person-info .role { font-size: 12.5px; color: var(--blue); font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.person-info .loc { font-size: 12px; color: var(--ink-soft); margin-bottom: 10px; }

.person-info p.bio { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

/* Footer */
footer { background: #EDF2ED; color: var(--ink-soft); padding: 64px 0 26px; border-top: 1px solid #DCE4DC; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }

.footer-brand img { height: 110px; width: auto; margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 13.5px; max-width: 30ch; line-height: 1.6; color: var(--ink-soft); }
.footer-col h5 { font-family: 'Space Grotesk', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 9px; }
.footer-col a:hover { color: var(--blue); }
.footer-credits { padding-top: 16px; font-size: 12px; color: #8A9A8A; line-height: 1.55; }
.footer-credits a { color: #7A8A7A; text-decoration: underline; text-underline-offset: 2px; }
.footer-credits a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid #DCE4DC; padding-top: 16px; margin-top: 14px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: #7A8A7A; }

/* Responsive */
@media (max-width: 1020px) {
  nav.links { display: none; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .page-hero { padding: 48px 0 44px; min-height: 280px; }
  .page-hero-bg::after { background:
    linear-gradient(180deg, rgba(var(--hero-tint,12,45,107),.80) 0%, rgba(var(--hero-tint,12,45,107),.88) 60%, rgba(var(--hero-tint,12,45,107),.94) 100%); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---- SVG icon system (replaces emoji) ---- */
.ico { width: 26px; height: 26px; display: block; }
.ico-inline { width: 17px; height: 17px; display: inline-block; vertical-align: -3px; flex-shrink: 0; }

/* ---- Dropdown nav ---- */
.has-drop { position: relative; }
.has-drop > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-caret { width: 13px; height: 13px; transition: transform .22s; flex-shrink: 0; }
.has-drop:hover .nav-caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; min-width: 220px; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 16px 40px -12px rgba(12,45,107,.22); padding: 8px;
  opacity: 0; visibility: hidden; transition: all .22s ease; z-index: 120;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.dropdown a { display: block; padding: 10px 14px; font-size: 14px; font-weight: 500; color: var(--ink); border-radius: 8px; white-space: nowrap; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: rgba(12,45,107,.06); color: var(--navy); }

/* ---- About page ---- */
.about-hero { position: relative; min-height: 380px; display: flex; align-items: center; overflow: hidden; }
.about-hero-bg { position: absolute; inset: 0; }
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,30,73,.88) 0%, rgba(12,45,107,.72) 55%, rgba(31,122,53,.55) 100%); }
.about-hero .wrap { position: relative; z-index: 2; }
.about-hero h1 { color: #fff; font-size: clamp(2.2rem,4.5vw,3.4rem); margin-bottom: 0; }
.about-hero h1::after { content: ""; display: block; width: 60px; height: 4px; background: var(--green); border-radius: 2px; margin-top: 14px; }
.about-hero h1 + p { margin-top: 20px; }
.about-hero p { color: rgba(255,255,255,.86); font-size: 1.08rem; max-width: 54ch; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 520px; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-body { display: flex; flex-direction: column; justify-content: center; padding: 68px 60px; }
.split-body h2 { font-size: clamp(1.5rem,2.6vw,2.1rem); margin-bottom: 8px; }
.split-body .rule { width: 60px; height: 4px; background: var(--green); margin-top: 12px; margin-bottom: 22px; border-radius: 2px; }
.split-body p { color: var(--ink-soft); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.split-body p:last-child { margin-bottom: 0; }
.split-body h3 { font-size: 1.08rem; margin: 24px 0 8px; }
.split-body h3:first-of-type { margin-top: 0; }

@media (max-width: 1020px) {
  .dropdown { display: none; }
  .split, .split.flip { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .split-media { min-height: 320px; }
  .split-body { padding: 44px 28px; }
}

/* ============ MOBILE DRAWER + ACCORDION ============ */
body.menu-open { overflow: hidden; }

.menu-toggle { position: relative; z-index: 210; }
.menu-toggle span { transition: transform .28s ease, opacity .2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.m-overlay {
  position: fixed; inset: 0; background: rgba(8,30,73,.5);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
  z-index: 190; backdrop-filter: blur(2px);
}
.m-overlay.show { opacity: 1; visibility: visible; }

.m-drawer {
  position: fixed; top: 0; right: 0; height: 100dvh;
  width: min(88vw, 400px); background: #fff; z-index: 200;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -12px 0 40px -12px rgba(8,30,73,.3);
}
.m-drawer.open { transform: translateX(0); }

.m-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.m-drawer-logo { height: 58px; width: auto; }
.m-close { background: none; border: none; cursor: pointer; padding: 8px; color: var(--navy); display: flex; }
.m-close svg { width: 24px; height: 24px; }

.m-nav {
  flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain; padding: 6px 0 12px;
}

.m-item, .m-parent {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 17px 20px; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500;
  color: var(--ink); background: none; border: none; border-bottom: 1px solid #F0F3F0;
  text-align: left; cursor: pointer; transition: background .18s, color .18s;
}
.m-item:hover, .m-parent:hover { background: #F6F9F6; }
.m-item.active, .m-parent.active { color: var(--navy); font-weight: 700; background: rgba(46,158,71,.07); }
.m-item.active { border-left: 3px solid var(--green); padding-left: 17px; }
.m-parent.active { border-left: 3px solid var(--green); padding-left: 17px; }

.acc-chev { width: 17px; height: 17px; flex-shrink: 0; color: var(--ink-soft); transition: transform .28s ease; }
.m-group.open .acc-chev { transform: rotate(90deg); color: var(--green-deep); }

.m-panel { max-height: 0; overflow: hidden; transition: max-height .28s cubic-bezier(.4,0,.2,1); background: #FAFCFA; }
.m-panel-inner { padding: 4px 0 8px; }

.m-sub {
  display: block; padding: 13px 20px 13px 36px; font-size: 14.5px; font-weight: 500;
  color: var(--ink-soft); border-bottom: 1px solid #F2F5F2; position: relative;
}
.m-sub:last-child { border-bottom: none; }
.m-sub::before {
  content: ""; position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: #C3D2C3;
}
.m-sub:hover { color: var(--navy); background: #F2F7F2; }
.m-sub.active { color: var(--navy); font-weight: 700; }
.m-sub.active::before { background: var(--green); }
.m-sub-lead { font-weight: 600; color: var(--navy); }
.m-sub-lead::before { background: var(--blue); }

.m-drawer-foot {
  flex-shrink: 0; padding: 16px 20px; border-top: 1px solid var(--line);
  background: #F7F9F7; display: flex; flex-direction: column; gap: 4px;
}
.m-drawer-foot a { font-size: 14px; font-weight: 600; color: var(--navy); }
.m-drawer-foot span { font-size: 12px; color: var(--ink-soft); }

/* Hide drawer entirely on desktop */
@media (min-width: 1021px) {
  .m-drawer, .m-overlay { display: none; }
}
