.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 12px 36px rgba(6, 43, 85, .08);
  backdrop-filter: blur(14px);
}

.site-header a,
.site-footer a {
  text-decoration: none;
}

.site-nav-inner {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 36px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-brand img {
  width: auto;
  height: 56px;
  border-radius: 0;
  object-fit: contain;
}

.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav-links > a,
.site-nav-menu summary {
  padding: 10px 2px;
}

.site-nav-menu {
  position: relative;
}

.site-nav-menu summary {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  cursor: pointer;
}

.site-nav-menu summary::-webkit-details-marker {
  display: none;
}

.site-nav-menu summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease;
}

.site-nav-menu[open] summary::after {
  margin-top: 4px;
  transform: rotate(225deg);
}

.site-nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 10;
  width: 270px;
  padding: 8px;
  border: 1px solid rgba(6, 43, 85, .14);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 24px 52px rgba(3, 21, 43, .24);
  transform: translateX(-50%);
}

.site-nav-dropdown::before {
  content: "";
  display: block;
  height: 3px;
  margin: -8px -8px 7px;
  border-radius: 6px 6px 0 0;
  background: var(--red);
}

.site-nav-dropdown a {
  display: block;
  padding: 12px;
  border-radius: 4px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .04em;
  white-space: normal;
}

.site-nav-dropdown strong,
.site-nav-dropdown small {
  display: block;
}

.site-nav-dropdown strong {
  font-size: 13px;
  letter-spacing: .03em;
}

.site-nav-dropdown small {
  margin-top: 4px;
  color: #5e7187;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav-dropdown a:hover,
.site-nav-dropdown a:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.site-nav-dropdown a:hover small,
.site-nav-dropdown a:focus-visible small {
  color: rgba(255, 255, 255, .78);
}

.site-direct-contact {
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy);
}

.site-direct-contact a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.site-direct-contact a + a {
  border-left: 1px solid rgba(255, 255, 255, .34);
}

.site-direct-contact a:hover,
.site-direct-contact a:focus-visible {
  background: var(--red);
}

.site-nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(6, 43, 85, .24);
  border-radius: 5px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav-toggle-icon,
.site-nav-toggle-icon::before,
.site-nav-toggle-icon::after {
  width: 17px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
}

.site-nav-toggle-icon {
  position: relative;
}

.site-nav-toggle-icon::before,
.site-nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-nav-toggle-icon::before { top: -5px; }
.site-nav-toggle-icon::after { top: 5px; }

.site-ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .34);
  border-bottom: 1px solid rgba(6, 43, 85, .28);
  background: linear-gradient(90deg, #03152b 0%, #075995 24%, #bd1f2d 52%, #ef3f4d 70%, #062b55 100%);
  box-shadow: 0 12px 30px rgba(6, 43, 85, .22), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.site-ticker::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 52%, rgba(3, 21, 43, .18));
}

.site-ticker-track {
  width: max-content;
  display: flex;
  will-change: transform;
  animation: site-ticker-slide 52s linear infinite;
}

.site-ticker-group {
  display: flex;
  flex: 0 0 auto;
}

.site-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 58px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(3, 21, 43, .42);
}

.site-ticker span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .12);
}

.site-ticker-mobile {
  display: none !important;
}

@keyframes site-ticker-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-footer {
  color: rgba(255, 255, 255, .72);
  background: #03152b;
  text-align: center;
}

.site-footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 32px 0;
}

.site-footer strong {
  color: var(--white);
  font-size: 16px;
}

.site-footer p {
  margin: 5px 0 0;
  font-size: 13px;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .site-ticker-track { width: 100%; animation: none; }
  .site-ticker-group[aria-hidden="true"] { display: none; }
  .site-ticker span:not(.site-ticker-mobile) { display: none; }
  .site-ticker .site-ticker-mobile { width: 100%; display: inline-flex !important; justify-content: center; white-space: normal; text-align: center; }
}

@media (max-width: 980px) {
  .site-nav-inner {
    min-height: 70px;
    flex-wrap: wrap;
  }

  .site-brand img { height: 50px; }
  .site-nav-toggle { display: inline-flex; }

  .site-nav-links {
    display: none;
    order: 3;
    width: 100%;
    padding: 4px 0 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    white-space: normal;
  }

  .site-nav-links.is-open { display: flex; }

  .site-nav-links > a,
  .site-nav-menu summary {
    width: 100%;
    padding: 12px;
    border-bottom: 1px solid rgba(6, 43, 85, .1);
  }

  .site-nav-menu summary { justify-content: space-between; }

  .site-nav-dropdown {
    position: static;
    width: 100%;
    padding: 4px 8px 8px;
    border: 0;
    border-radius: 0;
    background: #f2f6fa;
    box-shadow: none;
    transform: none;
  }

  .site-nav-dropdown a { padding: 11px 12px 11px 24px; }

  .site-direct-contact {
    width: 100%;
    margin-top: 7px;
  }

  .site-direct-contact a {
    width: 50%;
    min-height: 46px;
  }

  .site-ticker-track { width: 100%; animation: none; }
  .site-ticker-group { width: 100%; }
  .site-ticker-group[aria-hidden="true"] { display: none; }
  .site-ticker span:not(.site-ticker-mobile) { display: none; }
  .site-ticker .site-ticker-mobile {
    width: 100%;
    display: inline-flex !important;
    justify-content: center;
    padding: 12px 18px;
    font-size: 12px;
    text-align: center;
    white-space: normal;
  }
}

