body.mobile-nav-open {
  overflow: hidden;
}

.site-header__brand {
  z-index: 30;
}

.site-desktop-nav {
  z-index: 20;
}

.site-desktop-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-desktop-nav a[aria-current="page"] {
  color: #138a93;
  font-weight: 600;
}

.site-desktop-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 21px;
  right: 21px;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-mobile-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  z-index: 70;
  pointer-events: none;
}

.site-mobile-nav > * {
  pointer-events: auto;
}

.site-mobile-nav__toggle {
  position: relative;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(19, 138, 147, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(10, 57, 62, 0.12);
  color: #138a93;
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
  -webkit-tap-highlight-color: transparent;
}

.site-mobile-nav__toggle:hover,
.site-mobile-nav__toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(19, 138, 147, 0.28);
  box-shadow: 0 18px 36px rgba(10, 57, 62, 0.18);
}

.site-mobile-nav__toggle:focus-visible,
.site-mobile-nav__link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.site-mobile-nav[data-open="true"] .site-mobile-nav__toggle {
  background: #138a93;
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.site-mobile-nav__toggle-text {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-mobile-nav__toggle-icon {
  position: relative;
  width: 18px;
  height: 14px;
}

.site-mobile-nav__toggle-bar {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.24s ease,
    opacity 0.2s ease,
    background-color 0.24s ease;
}

.site-mobile-nav__toggle-bar:nth-child(1) {
  top: 0;
}

.site-mobile-nav__toggle-bar:nth-child(2) {
  top: 6px;
}

.site-mobile-nav__toggle-bar:nth-child(3) {
  top: 12px;
}

.site-mobile-nav[data-open="true"] .site-mobile-nav__toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-mobile-nav[data-open="true"] .site-mobile-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-mobile-nav[data-open="true"] .site-mobile-nav__toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(6, 23, 25, 0.42);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease;
}

.site-mobile-nav__backdrop[hidden],
.site-mobile-nav__panel[hidden] {
  display: none !important;
}

.site-mobile-nav__panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(360px, calc(100vw - 24px));
  height: 100dvh;
  padding: 104px 20px 28px;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(19, 138, 147, 0.98) 0%, rgba(10, 78, 84, 0.98) 100%);
  box-shadow: -24px 0 48px rgba(4, 25, 27, 0.28);
  color: #ffffff;
  transform: translateX(110%);
  transition: transform 0.24s ease;
}

.site-mobile-nav[data-open="true"] .site-mobile-nav__backdrop {
  opacity: 1;
  visibility: visible;
}

.site-mobile-nav[data-open="true"] .site-mobile-nav__panel {
  transform: translateX(0);
}

.site-mobile-nav__eyebrow {
  margin: 0;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.site-mobile-nav__title {
  margin: 2px 0 0;
  font-family: Roboto, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}

.site-mobile-nav__intro {
  margin: 0;
  max-width: 260px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.site-mobile-nav__section-label {
  margin: 0;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.site-mobile-nav__links {
  display: grid;
  gap: 12px;
}

.site-mobile-nav__link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.site-mobile-nav__link:hover,
.site-mobile-nav__link:focus-visible {
  transform: translateX(-2px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.site-mobile-nav__link[aria-current="page"] {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  color: #0b5b61;
  font-weight: 700;
}

.site-mobile-nav__divider {
  height: 1px;
  margin: 6px 0;
  background: rgba(255, 255, 255, 0.16);
}

.site-mobile-nav__meta {
  margin-top: auto;
}

@media (min-width: 768px) {
  body.mobile-nav-open {
    overflow: auto;
  }

  .site-mobile-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 96px;
  }

  .site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 16px;
  }

  .site-header__brand {
    position: static;
    display: inline-flex;
    align-items: center;
    transform: none;
  }

  .site-header__brand img {
    width: auto;
    height: 58px;
  }

  .site-mobile-nav {
    position: static;
    inset: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
    padding: 0;
  }

  .site-mobile-nav__toggle {
    min-height: 48px;
    gap: 10px;
    padding: 0 14px;
  }

  .site-mobile-nav__toggle-text {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .site-mobile-nav__panel {
    width: min(340px, calc(100vw - 16px));
    padding: 88px 18px 24px;
  }
}
