.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--color-line);
  backdrop-filter: blur(14px);
}

.topbar {
  color: #fff;
  background: var(--color-primary);
  font-size: 0.9rem;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: #d8f4fb;
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  color: #263544;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  display: flex;
  align-items: center;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(20, 28, 38, 0.86), rgba(20, 28, 38, 0.35)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero {
  min-height: 420px;
}

.hero__content,
.page-hero .container {
  max-width: 760px;
  margin-left: max(20px, calc((100% - var(--container)) / 2));
}

.hero p,
.page-hero p {
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.9);
  overflow-wrap: anywhere;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.section {
  padding: 84px 0;
}

.section--tint {
  background: var(--color-soft);
}

.split__grid,
.feature-grid,
.award-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.content-flow p {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.image-band {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #162230;
}

.image-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.image-band__copy {
  position: relative;
  max-width: 720px;
}

.site-footer {
  color: #e8eef3;
  background: #17202a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding: 58px 0;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #fff;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: #e8eef3;
}

.footer-bottom {
  padding: 18px 0;
  color: #b4c0ca;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
