﻿:root {
  --navy-xdark: #0c1628;
  --navy-dark: #101e3f;
  --navy: #1a2e5e;
  --navy-mid: #253c78;
  --steel: #2e6b8a;
  --orange: #c8721a;
  --orange-lt: #e08530;
  --gold: #d4a430;
  --white: #ffffff;
  --off-white: #f6f5f2;
  --gray-xlt: #edecea;
  --gray-lt: #d0cecc;
  --gray: #706e6a;
  --dark: #1a1a28;
  --font-head: "Libre Baskerville", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 12px rgba(12, 22, 40, .07);
  --shadow-md: 0 6px 24px rgba(12, 22, 40, .12);
  --shadow: 0 12px 36px rgba(12, 22, 40, .14);
  --shadow-lg: 0 24px 56px rgba(12, 22, 40, .18);
  --transition: .18s ease;
  --nav-h: 64px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

img.lightbox-enabled {
  cursor: zoom-in;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

img.lightbox-enabled:hover,
img.lightbox-enabled:focus {
  filter: brightness(.94);
  box-shadow: 0 10px 28px rgba(12, 22, 40, .16);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(12, 22, 40, .88);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox__inner {
  position: relative;
  width: min(100%, 1120px);
  max-height: calc(100vh - 56px);
  display: grid;
  gap: 12px;
}

.image-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 128px);
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.image-lightbox__caption {
  color: rgba(255, 255, 255, .82);
  text-align: center;
  font-size: .88rem;
  line-height: 1.45;
}

.image-lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.image-lightbox__close:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.02em;
  text-wrap: pretty;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--orange);
}

.nav-wrap {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 5px 12px;
  height: 44px;
}

.nav-logo img {
  height: 34px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
  z-index: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  cursor: pointer;
  border: 0;
  background: none;
  white-space: nowrap;
  transition: color .16s, background .16s;
  font-family: var(--font-body);
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.open > .nav-link,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, .10);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  border-top: 3px solid var(--orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  pointer-events: none;
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--navy);
  transition: background .14s, color .14s;
}

.dropdown a:hover,
.dropdown a.active {
  background: var(--off-white);
  color: var(--orange);
}

.dropdown-divider {
  height: 1px;
  background: var(--gray-xlt);
  margin: 8px 0;
}

.nav-cta {
  margin-left: 8px;
}

.nav-burger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 6px 24px;
}

.nav-link svg {
  opacity: .6;
  transition: transform .2s;
  flex-shrink: 0;
}

.nav-item:hover > .nav-link svg,
.nav-item.open > .nav-link svg {
  transform: rotate(180deg);
  opacity: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 3px);
  left: 0;
  right: 0;
  background: var(--navy-dark);
  padding: 12px 0 32px;
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-h));
  z-index: 190;
  border-bottom: 2px solid var(--orange);
}

.mobile-menu.open {
  display: block;
}

.m-lbl {
  padding: 14px 24px 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.m-link {
  display: block;
  padding: 10px 24px;
  font-size: .83rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
  border-left: 2px solid transparent;
}

.m-link:hover,
.m-link.active {
  color: var(--white);
  border-left-color: var(--orange);
  background: rgba(255, 255, 255, .06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 28px;
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform .15s, box-shadow .15s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(12, 22, 40, .14);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-lt);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-mid);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,.10);
  border-color: var(--white);
}

.btn-sm {
  padding: 7px 16px;
  font-size: .75rem;
}

.section {
  padding: 88px 0;
}

.section--tint {
  background: var(--off-white);
}

.section--dark {
  background: var(--navy-dark);
  color: var(--white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.eyebrow--light {
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--navy);
  margin: 0 0 14px;
}

.section-title--light {
  color: var(--white);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 680px;
}

.section-lead--light {
  color: rgba(255,255,255,.70);
}

.page-hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 56px 0 48px;
  border-bottom: 2px solid var(--orange);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(255, 255, 255, .012) 50px, rgba(255, 255, 255, .012) 51px);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: .04em;
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, .85);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin: 0 0 10px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .65);
  max-width: 620px;
}

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

.info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-xlt);
  padding: 28px;
  transition: box-shadow var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
}

.profile-photo {
  width: 76px;
  height: 76px;
  min-width: 76px;
  max-width: 76px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 3px solid var(--off-white);
  box-shadow: var(--shadow-sm);
  margin: 0 0 14px;
}

.profile-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.35rem;
}

.info-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.15rem;
}

.info-card p,
.info-card li {
  color: var(--gray);
  font-size: .95rem;
}

.info-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.notice-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}

.notice-card h2,
.notice-card h3 {
  color: var(--white);
  margin-top: 0;
}

.notice-card p {
  color: rgba(255, 255, 255, .74);
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .70);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 5px 12px;
  width: fit-content;
  margin-bottom: 14px;
}

.footer-logo-wrap img {
  height: 34px;
  width: auto;
}

.footer-brand p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .50);
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin: 0 0 12px;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: .83rem;
  color: rgba(255, 255, 255, .58);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .30);
  margin: 0;
}

.footer-gov {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.footer-gov span {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, .25);
  margin: 0 8px;
  vertical-align: middle;
}

@media (max-width: 1100px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 60px 0;
  }

  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }

  .btn {
    width: 100%;
    white-space: normal;
  }
}

