:root {
  --blue: #1E3A5F;
  --gold: #D4AF37;
  --text: #2B2B2B;
  --muted: #6B7280;
  --background: #F9F9F9;
  --white: #FFFFFF;
  --line: #E5E7EB;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.7;
}

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

a {
  color: var(--blue);
}

.container {
  width: min(90%, 1100px);
  margin: 0 auto;
}

.container.narrow {
  width: min(90%, 760px);
}

/* Header */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

body {
  padding-top: 91px;
}

.site-header {
  width: 100%;
  padding: 1rem 0;
  background: rgba(249, 249, 249, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header-inner {
  width: min(92%, 1200px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.site-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  height: 58px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--blue);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2002;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold);
}

.nav-item {
  position: relative;
}

.has-dropdown > a::after {
  content: " ▾";
  font-size: 0.75em;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid rgba(30, 58, 95, 0.12);
  border-radius: 0.75rem;
  box-shadow: 0 18px 40px rgba(30, 58, 95, 0.12);
  display: none;
  z-index: 100;
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(30, 58, 95, 0.06);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Typography */

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  color: var(--blue);
  line-height: 1.15;
}

h1 {
  margin: 0 0 1.35rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.04em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

p {
  font-size: 1.05rem;
}

.lead {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.65;
}

/* Hero */

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: min(320px, 80vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: 0 24px 70px rgba(30, 58, 95, 0.18);
}

/* Page Hero */

.page-hero {
  padding: 6rem 1.5rem 4rem;
  background: var(--background);
}

.page-hero .lead {
  color: var(--text);
}

/* Buttons */

.button {
  display: inline-block;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.primary:hover {
  background: #172f4d;
}

.button.secondary {
  color: var(--blue);
  background: transparent;
  border: 1px solid var(--blue);
}

.button.secondary:hover {
  color: var(--white);
  background: var(--blue);
}

/* Sections */

.section {
  padding: 4.5rem 0;
}

.surface {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-action {
  margin-top: 2rem;
}

.align-left {
  justify-content: flex-start;
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.section-nav a {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.section-nav a:hover {
  color: var(--gold);
}

/* Cards and Grids */

.pillar-grid,
.feature-grid,
.cv-grid {
  display: grid;
  gap: 1.25rem;
}

.pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cv-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.feature-card,
.cv-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(30, 58, 95, 0.06);
}

.surface .feature-card,
.surface .cv-card {
  background: var(--background);
}

.card p,
.feature-card p {
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.card a,
.feature-card a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.card a:hover,
.feature-card a:hover {
  color: var(--gold);
}

.cv-card ul {
  padding-left: 1.2rem;
}

.cv-card li {
  margin-bottom: 1rem;
}

/* Initiatives */

.initiative-list {
  display: grid;
  gap: 1rem;
}

.initiative {
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.initiative p {
  margin: 0;
}

/* CTA */

.cta {
  padding: 5rem 0;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 55%),
    var(--background);
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
}

/* Footer */

.site-footer {
  padding: 3rem 0 2.5rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer-inner {
  width: min(90%, 1000px);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 90px;
  height: auto;
  margin: 0 auto 1rem;
}

.footer-name {
  margin: 0;
  color: var(--blue);
  font-size: 1.125rem;
  font-weight: 800;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin: 1rem 0;
}

.footer-nav a {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-tagline,
.footer-copyright {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

/* Tablet */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .pillar-grid,
  .feature-grid,
  .feature-grid.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */

@media (max-width: 768px) {
  body {
    padding-top: 87px;
  }

  .brand-mark {
    height: 54px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.85rem);
    right: 0;
    z-index: 2001;
    width: min(320px, calc(100vw - 2rem));
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.16);
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .site-nav.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0;
    background: transparent;
    text-align: center;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .lead {
    font-size: 1.12rem;
  }

  .section,
  .page-hero {
    padding: 3.5rem 0;
  }

  .pillar-grid,
  .feature-grid,
  .feature-grid.two-column,
  .cv-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .feature-card,
  .cv-card,
  .initiative {
    padding: 1.35rem;
  }

  .cta {
    padding: 4rem 0;
  }
}

.cv-download-section {
  margin-top: 2.5rem;
  padding: 1.75rem 0;
  text-align: center;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.cv-download-section p {
  max-width: 760px;
  margin: 0 auto 1rem auto;
}

.archive-page .hero-section {
  padding-top: 6rem;
}