:root {
  --navy: #12395b;
  --navy-deep: #09253c;
  --blue: #2378ad;
  --sky: #d9ecf3;
  --yellow: #f0b51d;
  --yellow-dark: #c68b00;
  --red: #c7473b;
  --ink: #17242c;
  --gray: #68757b;
  --line: #ccd2d2;
  --paper: #f4f0e8;
  --white: #fffefa;
  --gutter: clamp(20px, 4.5vw, 86px);
  --sans: "Segoe UI", Arial, sans-serif;
  --wide: "Arial Black", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
}

a { color: inherit; }
img { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.state-bar {
  min-height: 34px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #d9e6ed;
  background: var(--navy-deep);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.state-bar > span { justify-self: start; }
.state-bar p { margin: 0; color: #8fb2c6; }
.state-bar a { justify-self: end; text-decoration: none; }
.state-bar a b { margin-right: 10px; color: var(--yellow); }

.site-header {
  position: relative;
  z-index: 30;
  min-height: 104px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.brand {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

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

.brand > span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
}

.brand b {
  color: var(--navy);
  font-family: var(--wide);
  font-size: 23px;
  letter-spacing: -.04em;
}

.brand strong {
  padding-left: 13px;
  border-left: 1px solid var(--line);
  color: #4e5c63;
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.main-nav {
  align-self: stretch;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.main-nav a {
  position: relative;
  height: 100%;
  min-width: 76px;
  padding: 0 17px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: #536169;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:last-child { border-right: 0; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--navy); background: #eef4f5; }
.main-nav a.is-active { color: var(--navy-deep); background: var(--yellow); }

.report-link {
  justify-self: end;
  min-height: 44px;
  padding: 0 17px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.report-link b { font-size: 18px; font-weight: 400; }
.report-link:hover { color: #fff; background: var(--navy); }
.nav-toggle { display: none; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, .88fr);
  background: var(--white);
}

.hero-photo {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background-image:
    linear-gradient(0deg, rgba(4, 22, 36, .62), transparent 55%),
    url("assets/images/sahp-hero.jpg");
  background-position: 61% center;
  background-size: cover;
}

.photo-label {
  position: absolute;
  bottom: 24px;
  left: var(--gutter);
  padding: 9px 12px;
  color: #fff;
  background: rgba(9, 37, 60, .86);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.route-sign {
  position: absolute;
  top: 38px;
  right: 34px;
  width: 118px;
  min-height: 150px;
  padding: 20px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid #fff;
  border-radius: 46% 46% 10px 10px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(2, 21, 35, .28);
  text-transform: uppercase;
}

.route-sign small { font-size: 7px; letter-spacing: .12em; }
.route-sign strong { color: var(--yellow); font-family: var(--wide); font-size: 65px; line-height: .96; }
.route-sign b { padding-top: 8px; border-top: 1px solid rgba(255,255,255,.4); font-size: 7px; letter-spacing: .12em; }

.hero-copy {
  position: relative;
  min-width: 0;
  padding: clamp(70px, 7vw, 125px) var(--gutter) 80px clamp(45px, 5vw, 92px);
  overflow: hidden;
  background: var(--white);
}

.section-tag {
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-tag span {
  width: 32px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--navy-deep);
  background: var(--yellow);
  letter-spacing: .04em;
}

.section-tag--light { color: #b9d4e3; }

.hero h1,
.intro h2,
.services h2,
.careers h2 {
  margin: 0;
  font-family: var(--wide);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .9;
  text-transform: uppercase;
}

.hero h1 { color: var(--navy-deep); font-size: clamp(68px, 6.3vw, 116px); }
.hero h1 em { color: var(--red); font-style: normal; }

.hero-copy > p:not(.section-tag) {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
}

.hero-actions {
  position: relative;
  z-index: 2;
  margin-top: 37px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-action {
  min-height: 52px;
  padding: 0 20px 0 23px;
  display: inline-flex;
  align-items: center;
  gap: 35px;
  color: #fff;
  background: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, background 160ms ease;
}

.primary-action b { color: var(--yellow); font-size: 17px; }
.primary-action:hover { background: var(--blue); transform: translateY(-2px); }
.primary-action:active { transform: translateY(1px); }

.text-action {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-action span { margin-left: 12px; }
.hero-word { position: absolute; right: -12px; bottom: -36px; color: rgba(18,57,91,.045); font-family: var(--wide); font-size: clamp(100px, 11vw, 190px); font-weight: 900; letter-spacing: -.06em; }

.quick-links {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 6px solid var(--yellow);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.quick-links a {
  min-height: 128px;
  padding: 24px clamp(18px, 2vw, 34px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.quick-links a:first-child { border-left: 1px solid var(--line); }
.quick-links a:hover { color: #fff; background: var(--navy); }
.quick-links > a > span { color: var(--yellow-dark); font-family: Georgia, serif; font-size: 17px; }
.quick-links div { display: flex; flex-direction: column; }
.quick-links b { font-size: 11px; letter-spacing: .02em; }
.quick-links small { margin-top: 6px; color: #7a868a; font-size: 9px; }
.quick-links a:hover small { color: #b9d3df; }
.quick-links i { color: var(--yellow-dark); font-size: 18px; font-style: normal; }

.intro {
  padding: 130px var(--gutter);
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(320px, .75fr) minmax(220px, .42fr);
  gap: clamp(45px, 7vw, 125px);
  align-items: center;
  background: var(--white);
}

.intro h2 { color: var(--navy-deep); font-size: clamp(58px, 5.6vw, 104px); }
.intro-copy { padding-top: 28px; border-top: 3px solid var(--yellow); }
.intro-copy .intro-lead { margin: 0 0 24px; color: var(--navy); font-family: Georgia, serif; font-size: clamp(21px, 2vw, 30px); font-style: italic; line-height: 1.35; }
.intro-copy > p:not(.intro-lead) { margin: 0; color: var(--gray); font-size: 13px; line-height: 1.8; }
.intro-copy a { margin-top: 30px; display: inline-block; color: var(--navy); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.intro-copy a span { margin-left: 12px; color: var(--red); }

.intro aside {
  padding: 30px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.intro aside img { width: 72px; height: 72px; grid-row: 1 / span 3; object-fit: contain; }
.intro aside span { padding: 5px 0; border-bottom: 1px solid var(--line); color: #536169; font-size: 8px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.intro aside span:last-child { border-bottom: 0; }

.services {
  padding: 110px var(--gutter);
  display: grid;
  grid-template-columns: minmax(310px, .7fr) minmax(560px, 1.3fr);
  gap: clamp(55px, 8vw, 145px);
  color: #fff;
  background: var(--navy);
}

.services-title { align-self: start; position: sticky; top: 40px; }
.services h2 { margin-top: 45px; font-size: clamp(58px, 5.4vw, 98px); }
.services-title > p:last-child { max-width: 430px; margin: 30px 0 0; color: #a8c3d2; font-size: 13px; line-height: 1.75; }

.service-list { border-top: 1px solid rgba(255,255,255,.25); }
.service-list a {
  min-height: 190px;
  padding: 30px 8px;
  display: grid;
  grid-template-columns: 60px minmax(180px, .9fr) minmax(220px, 1fr) 28px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  text-decoration: none;
  transition: padding 180ms ease, background 180ms ease;
}

.service-list a:hover { padding-right: 22px; padding-left: 22px; background: rgba(255,255,255,.06); }
.service-list a > span { color: var(--yellow); font-family: Georgia, serif; font-size: 18px; }
.service-list h3 { margin: 0; font-size: 18px; letter-spacing: -.02em; }
.service-list p { margin: 0; color: #a8c3d2; font-size: 12px; line-height: 1.7; }
.service-list b { color: var(--yellow); font-size: 20px; font-weight: 400; }

.numbers {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.15fr;
  color: var(--navy-deep);
  background: var(--sky);
}

.numbers article {
  min-height: 170px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(18,57,91,.22);
}

.numbers article:first-child { border-left: 1px solid rgba(18,57,91,.22); }
.numbers article span { font-family: var(--wide); font-size: clamp(38px, 4vw, 68px); letter-spacing: -.05em; }
.numbers article p { margin: 7px 0 0; color: #577486; font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.numbers > div { padding-left: clamp(28px, 4vw, 68px); display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 12px; }
.numbers > div b { color: #42657a; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.numbers > div i { width: 9px; height: 9px; border-radius: 50%; background: #4ba970; box-shadow: 0 0 0 6px rgba(75,169,112,.16); }
.numbers > div span { color: #42657a; font-size: 9px; }

.careers {
  min-height: 460px;
  padding: 95px var(--gutter);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 90px;
  color: var(--navy-deep);
  background:
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px) 0 0/60px 100%,
    var(--yellow);
}

.careers h2 { max-width: 1000px; font-size: clamp(55px, 6vw, 108px); }
.careers .section-tag span { color: #fff; background: var(--red); }
.careers .primary-action { margin-top: 35px; }
.careers > p { margin: 0 0 10px; padding-top: 26px; border-top: 2px solid var(--navy-deep); font-family: Georgia, serif; font-size: clamp(18px, 1.7vw, 25px); font-style: italic; line-height: 1.5; }

footer {
  min-height: 210px;
  padding: 45px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 55px;
  color: #fff;
  background: var(--navy-deep);
}

.footer-brand { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.footer-brand img { width: 66px; height: 66px; object-fit: contain; }
.footer-brand span { display: flex; flex-direction: column; }
.footer-brand b { font-family: var(--wide); font-size: 24px; }
.footer-brand small { color: #91afc0; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { color: #c0d4df; font-size: 8px; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.footer-nav a:hover { color: var(--yellow); }
.footer-meta { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; gap: 7px; color: #7797aa; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.footer-meta a { color: var(--yellow); text-decoration: none; text-transform: none; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 260px 1fr; }
  .report-link { display: none; }
  .main-nav { justify-self: end; }
  .brand img { width: 62px; height: 62px; }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .quick-links a:nth-child(2) { border-right: 0; }
  .quick-links a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro { grid-template-columns: 1fr 1fr; }
  .intro aside { grid-column: 1 / span 2; }
  .services { grid-template-columns: 290px 1fr; gap: 55px; }
  .service-list a { grid-template-columns: 45px 1fr 28px; }
  .service-list p { grid-column: 2; }
  .numbers { grid-template-columns: repeat(3, 1fr); }
  .numbers > div { display: none; }
}

@media (max-width: 900px) {
  .state-bar { grid-template-columns: 1fr auto; }
  .state-bar p { display: none; }
  .site-header { min-height: 86px; grid-template-columns: 1fr auto; }
  .brand img { width: 56px; height: 56px; }

  .nav-toggle {
    position: relative;
    z-index: 5;
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    color: #fff;
    background: var(--navy);
    cursor: pointer;
  }

  .nav-toggle span { width: 22px; height: 2px; display: block; background: currentColor; transition: transform 180ms ease, opacity 150ms ease; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .main-nav {
    position: absolute;
    top: 86px;
    right: 0;
    left: 0;
    height: auto;
    padding: 12px var(--gutter) 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 0;
    border-bottom: 6px solid var(--yellow);
    background: var(--white);
    box-shadow: 0 20px 35px rgba(9,37,60,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .nav-open .main-nav { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .main-nav a { min-height: 50px; width: 100%; justify-content: start; place-items: center start; border-right: 0; border-bottom: 1px solid var(--line); }

  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 520px; }
  .hero-copy { padding-top: 75px; padding-bottom: 90px; }
  .quick-links { padding: 0; }
  .intro { padding-top: 95px; padding-bottom: 95px; }
  .services { grid-template-columns: 1fr; }
  .services-title { position: static; }
  .service-list { margin-top: 15px; }
  .careers { grid-template-columns: 1fr; gap: 55px; }
  .careers > p { max-width: 620px; }
  footer { grid-template-columns: 1fr auto; }
  .footer-nav { display: none; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .state-bar { min-height: 30px; font-size: 7px; }
  .state-bar a b { display: none; }
  .site-header { min-height: 78px; }
  .brand { gap: 8px; }
  .brand img { width: 48px; height: 48px; }
  .brand > span { gap: 8px; }
  .brand b { font-size: 18px; }
  .brand strong { padding-left: 8px; font-size: 7px; }
  .main-nav { top: 78px; }

  .hero-photo { min-height: 400px; }
  .route-sign { top: 22px; right: 20px; transform: scale(.72); transform-origin: top right; }
  .photo-label { right: 20px; left: 20px; text-align: center; }
  .hero-copy { padding: 65px var(--gutter) 75px; }
  .section-tag { margin-bottom: 24px; }
  .hero h1 { font-size: clamp(48px, 15vw, 74px); }
  .hero-copy > p:not(.section-tag) { margin-top: 27px; font-size: 13px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .primary-action { justify-content: space-between; }
  .text-action { width: fit-content; }
  .hero-word { font-size: 88px; }

  .quick-links { grid-template-columns: 1fr; }
  .quick-links a, .quick-links a:first-child { min-height: 104px; border-right: 0; border-bottom: 1px solid var(--line); border-left: 0; }

  .intro { padding-top: 75px; padding-bottom: 75px; grid-template-columns: 1fr; gap: 45px; }
  .intro h2, .services h2, .careers h2 { font-size: clamp(46px, 14vw, 68px); }
  .intro aside { grid-column: auto; padding: 22px; }

  .services { padding: 75px var(--gutter); }
  .services h2 { margin-top: 35px; }
  .service-list a { min-height: 175px; padding: 25px 5px; grid-template-columns: 35px 1fr 22px; gap: 14px; }
  .service-list h3 { font-size: 16px; }
  .service-list p { font-size: 11px; }

  .numbers { padding: 0; grid-template-columns: 1fr; }
  .numbers article, .numbers article:first-child { min-height: 120px; padding: 23px var(--gutter); border-right: 0; border-bottom: 1px solid rgba(18,57,91,.22); border-left: 0; }
  .numbers article span { font-size: 42px; }

  .careers { min-height: auto; padding: 75px var(--gutter); }
  .careers > p { font-size: 18px; }
  footer { padding: 38px var(--gutter); grid-template-columns: 1fr; gap: 28px; }
  .footer-meta { justify-self: start; align-items: flex-start; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
