:root {
  --navy: #19345f;
  --blue: #285caa;
  --gold: #f3b51b;
  --red: #d83b2f;
  --ink: #1d2430;
  --muted: #5f6b7a;
  --paper: #ffffff;
  --mist: #eef4f8;
  --line: #d9e1ea;
  --shadow: 0 20px 45px rgb(25 52 95 / 18%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
  background: var(--paper);
}

a {
  color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--red);
}

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

.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;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 78px;
  padding: 12px clamp(20px, 4vw, 56px);
  background: rgb(10 24 45 / 88%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 18%);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  color: #ffffff;
  text-decoration: none;
}

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

.nav-cta {
  padding: 9px 14px;
  border: 2px solid var(--gold);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 4px;
  background: transparent;
  color: #ffffff;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
}

.menu-icon::before {
  transform: translateY(-7px);
}

.menu-icon::after {
  transform: translateY(5px);
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 130px 20px 80px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 62%), rgb(0 0 0 / 20%)),
    url("assets/hero.jpg") center 24% / cover no-repeat;
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  max-width: 780px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(34px, 5vw, 52px);
  text-align: center;
}

h3 {
  font-size: 27px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover {
  border-color: var(--red);
  color: var(--red);
}

.button.primary {
  margin-top: 28px;
  border-color: var(--gold);
  background: var(--gold);
  color: #14243f;
}

.button.primary:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--navy);
}

.intro {
  padding: 70px 0;
  border-top: 8px solid var(--gold);
  background: var(--paper);
}

.intro .wrap {
  max-width: 920px;
}

.intro p {
  margin: 0 0 22px;
  font-size: clamp(20px, 2.4vw, 27px);
}

.intro p:last-child {
  margin-bottom: 0;
}

.resource-band {
  padding: 76px 0 92px;
  background:
    linear-gradient(rgb(238 244 248 / 86%), rgb(238 244 248 / 92%)),
    url("assets/section-bg.jpg") center / cover no-repeat;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 440px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--blue);
  border-radius: 6px;
  background: var(--paper);
  text-align: center;
  box-shadow: var(--shadow);
}

.resource-card:nth-child(2) {
  border-top-color: var(--gold);
}

.resource-card:nth-child(3) {
  border-top-color: var(--red);
}

.resource-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 18px;
}

.resource-card p {
  flex: 1;
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  padding: 28px 0;
  color: #ffffff;
  background: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
}

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

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    display: none;
    width: min(320px, calc(100vw - 40px));
    padding: 18px;
    border-radius: 6px;
    background: var(--navy);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 620px;
    padding-top: 110px;
  }

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

  .resource-card {
    min-height: 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .wrap,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  body {
    font-size: 17px;
  }

  .hero {
    min-height: 560px;
  }

  .intro,
  .resource-band {
    padding: 50px 0;
  }
}
