:root {
  --navy: #071c2c;
  --navy-deep: #04131f;
  --yellow: #f4c400;
  --salt: #f4f2e8;
  --line: rgba(244, 242, 232, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--salt);
  font-family: Inter, Arial, sans-serif;
}

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

a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  background: rgba(4, 19, 31, 0.97);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 4vw;
  position: sticky;
  top: 0;
  z-index: 20;
}

.wordmark,
h1,
h2,
.button,
.header-link,
footer strong {
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.wordmark {
  align-items: center;
  display: flex;
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  letter-spacing: 0.025em;
}

.wordmark i {
  background: var(--yellow);
  height: 9px;
  margin-left: 14px;
  width: 9px;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.header-link {
  border: 1px solid rgba(244, 242, 232, 0.45);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  padding: 12px 15px 10px;
}

.employee-link {
  border-color: var(--yellow);
  color: var(--yellow);
}

.header-link:hover {
  background: var(--salt);
  color: var(--navy);
}

.employee-link:hover {
  background: var(--yellow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(400px, 44%) 1fr;
  min-height: 640px;
}

.hero-copy {
  align-items: flex-start;
  background: radial-gradient(circle at 15% 10%, #10405e 0, var(--navy) 52%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 108px) 4vw;
}

.eyebrow {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--navy);
}

h1 {
  font-size: clamp(4rem, 7vw, 8rem);
  letter-spacing: 0.01em;
  line-height: 0.86;
  margin: 0;
  max-width: 700px;
}

.hero-summary {
  color: #dbe2e6;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.5;
  margin: 26px 0 0;
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  display: inline-flex;
  font-size: 0.92rem;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 56px;
  padding: 0 25px;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--yellow);
  color: var(--navy);
}

.button-outline {
  border-color: var(--yellow);
  color: var(--yellow);
}

.button-outline:hover {
  background: var(--yellow);
  color: var(--navy);
}

.hero-photo {
  background: #6d7880;
  min-height: 640px;
  overflow: hidden;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  width: 100%;
}

.services {
  background: var(--navy-deep);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 4vw;
}

.services article {
  border-right: 1px solid var(--line);
  padding: 36px clamp(22px, 3vw, 48px);
}

.services article:first-child {
  border-left: 1px solid var(--line);
}

.services span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
}

.services h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.7rem);
  line-height: 1;
  margin: 16px 0 10px;
}

.services p {
  color: #b9c3c8;
  margin: 0;
}

.access {
  align-items: center;
  background: var(--yellow);
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  min-height: 240px;
  padding: 48px 4vw;
}

.access h2 {
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.9;
  margin: 0;
}

.access-actions {
  margin-top: 0;
}

.button-dark {
  background: var(--navy);
  color: var(--salt);
}

.button-dark-outline {
  border-color: var(--navy);
  color: var(--navy);
}

.button-dark-outline:hover {
  background: var(--navy);
  color: var(--salt);
}

footer {
  align-items: center;
  background: var(--navy-deep);
  display: flex;
  justify-content: space-between;
  padding: 44px 4vw;
}

footer strong {
  font-size: 1.7rem;
}

footer p {
  color: #aeb9bf;
  font-size: 0.85rem;
  margin: 7px 0 0;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    position: static;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .header-link {
    text-align: center;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-copy {
    min-height: 500px;
    padding: 70px 24px 58px;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero-actions,
  .access-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-photo {
    min-height: 360px;
  }

  .services {
    display: block;
    padding: 0 24px;
  }

  .services article,
  .services article:first-child {
    border-bottom: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
    padding: 30px 0;
  }

  .access {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
    padding: 58px 24px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    padding: 42px 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
