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

:root {
  --brand-navy: #002856;
  --brand-gold: #daa900;
  --brand-sky: #74a7c2;
  --text-primary: #1a2a4a;
  --text-muted: #4f5d75;
  --surface: #ffffff;
  --surface-alt: #f2f5f9;
  --border-light: rgba(0, 40, 86, 0.12);
  --shadow-soft: 0 12px 28px rgba(9, 30, 66, 0.12);
  --font-headline: "Kievit Offc Pro", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Kievit Offc Pro", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-formal: "Kievit Offc Pro", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-informal: "Kievit Offc Pro", "Segoe UI", system-ui, -apple-system, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: linear-gradient(180deg, rgba(0, 40, 86, 0.06), rgba(218, 169, 0, 0.06) 50%, var(--surface-alt));
  color: var(--text-primary);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-headline);
}

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

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

a:hover,
a:focus {
  color: var(--brand-gold);
}

main {
  padding: 0 0 6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5vw;
  background: var(--brand-navy);
  box-shadow: 0 8px 20px rgba(0, 40, 86, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand img {
  height: 56px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.brand-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--surface);
  letter-spacing: 0.06em;
}

.brand-subtitle {
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--surface);
}

.site-nav a {
  position: relative;
  padding-bottom: 0.35rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  background: var(--brand-gold);
}

.site-nav a:focus::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  margin: 0;
  min-height: 55vh;
  background: url("../components/photos/team_cropped.png") center/cover no-repeat;
  border-bottom: 6px solid var(--brand-gold);
}

.hero-lede {
  margin: 0 0 2.5rem;
  padding: clamp(3rem, 8vw, 4.5rem) max(6vw, 3rem);
  background: var(--surface);
  color: var(--text-primary);
}

.hero-lede h1 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-navy);
}

.hero-lede .eyebrow {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.8;
  color: var(--text-muted);
}

.hero h1 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-description {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  max-width: 60ch;
  line-height: 1.65;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  border: 2px solid transparent;
}

.btn.primary {
  background: transparent;
  color: var(--brand-navy);
  border-color: var(--brand-gold);
}

.btn:focus {
  outline: none;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-3px);
  background: var(--brand-gold);
  color: var(--brand-navy);
  box-shadow: 0 10px 25px rgba(218, 169, 0, 0.32);
}

.btn.secondary {
  background: transparent;
  color: var(--brand-navy);
  border-color: #000000;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  transform: translateY(-3px);
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.btn.tertiary:hover,
.btn.tertiary:focus-visible {
  transform: translateY(-3px);
  background: var(--brand-navy);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 40, 86, 0.25);
}

.hero-highlights {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  list-style: none;
  font-size: 0.95rem;
  max-width: 60ch;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-highlights li::before {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-gold);
}

.content-section {
  margin: 0 auto 2.5rem;
  max-width: none;
  padding: clamp(3rem, 7vw, 4.5rem) max(6vw, 3rem);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(0, 40, 86, 0.03), rgba(36, 35, 33, 0.05));
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(0, 40, 86, 0.08);
}

main > section + section {
  border-top: 1px solid var(--border-light);
}

.content-section h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--brand-navy);
}

.section-intro {
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 70ch;
  font-family: var(--font-body);
  line-height: 1.7;
}

.callout {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border-left: 4px solid var(--brand-navy);
  background: rgba(0, 40, 86, 0.08);
  border-radius: 8px;
  font-family: var(--font-formal);
  line-height: 1.7;
}

.callout h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: var(--brand-navy);
}

.overview-graphic {
  float: right;
  max-width: min(55%, 520px);
  width: 100%;
  margin: 0 0 2rem 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 40, 86, 0.12);
  border: 1px solid var(--border-light);
}

.overview-graphic img {
  display: block;
  width: 100%;
  height: auto;
}

#overview p {
  font-size: 1.08rem;
  line-height: 1.78;
}

.stats-card {
  padding: 2.25rem 2rem;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(0, 40, 86, 0.96), rgba(0, 40, 86, 0.75));
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 40, 86, 0.26);
}

.stats-card h3 {
  margin-top: 0;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.stats-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.4rem;
}

.stats-card li {
  font-size: 0.95rem;
}

.stats-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-gold);
}

.card-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 1.9rem;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: var(--surface-alt);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--brand-navy);
}

.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3rem;
  background: linear-gradient(130deg, rgba(218, 169, 0, 0.14), rgba(0, 40, 86, 0.08));
}

.highlight-content ul {
  padding-left: 1.2rem;
  margin: 1.5rem 0 0;
  color: var(--text-muted);
}

.highlight-quote {
  align-self: center;
  padding: 2.5rem;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(0, 40, 86, 0.12);
}

.highlight-quote blockquote {
  margin: 0 0 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--brand-navy);
  font-family: var(--font-formal);
}

.highlight-quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline {
  background: var(--surface-alt);
}

.timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 3rem;
  padding-top: 4.5rem;
}

.timeline-track::before {
  content: "";
  position: absolute;
  top: 4.5rem;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(218, 169, 0, 0.8), rgba(0, 40, 86, 0.6));
}

.timeline-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 7rem clamp(0.5rem, 2vw, 1.5rem) 0;
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 40, 86, 0.08);
  color: var(--brand-navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0;
  white-space: nowrap;
}

.timeline-point {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid var(--brand-gold);
  background: var(--surface);
  position: absolute;
  top: 4.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(218, 169, 0, 0.18);
}

.timeline-item h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: var(--brand-navy);
}

.timeline-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.engage {
  background: var(--surface);
}

.engage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.engage-grid article {
  padding: 1.8rem;
  border-radius: 12px;
  background: var(--surface-alt);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 22px rgba(9, 30, 66, 0.08);
}

.engage-grid h3 {
  margin-top: 0;
  color: var(--brand-navy);
}

.text-link {
  display: inline-flex;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--brand-navy);
}

.text-link:hover,
.text-link:focus {
  color: var(--brand-gold);
}

.resources {
  background: var(--surface);
  color: var(--text-primary);
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  gap: 1.3rem;
}

.resource-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  background: var(--surface-alt);
  border: 1px solid var(--border-light);
}

.resource-list span {
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--brand-navy);
}

.resource-empty {
  justify-content: center;
  background: var(--surface);
  border: 1px dashed rgba(0, 40, 86, 0.28);
}

.resource-empty span {
  text-align: center;
}

.team {
  background: var(--surface);
}

.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 5vw;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer small {
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .two-column,
  .highlight {
    grid-template-columns: 1fr;
  }

  .overview-graphic {
    float: none;
    max-width: 100%;
    margin: 0 0 2rem;
  }

  .stats-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .highlight-quote {
    justify-self: center;
    width: 100%;
  }

  .timeline-track {
    gap: 1.25rem;
    padding-top: 2rem;
  }
}

@media (max-width: 720px) {
  main {
    padding: 0 0 4rem;
  }

  .site-header {
    padding: 1rem 1.5rem;
  }

  .brand {
    gap: 0.9rem;
  }

  .brand img {
    height: 44px;
  }

  .site-nav {
    font-size: 0.85rem;
    gap: 1rem;
  }

  .hero {
    margin: 3rem auto 2rem;
  }

  .content-section {
    padding: 2rem 1.8rem;
  }

  .resource-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding: 2.5rem 1.5rem;
  }

  .timeline-track {
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 0;
  }

  .timeline-track::before {
    display: none;
  }

  .timeline-item {
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }

  .timeline-year {
    position: static;
    transform: none;
    margin: 0 0 0.75rem;
  }

  .timeline-point {
    position: static;
    transform: none;
    margin: 0 0 1rem;
  }

  .timeline-year,
  .timeline-point {
    margin-left: 0;
  }
}
