.topbar__contact a {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.topbar__contact strong {
  color: #8fc2ff;
  font-weight: 750;
}

.mobile-header-contact {
  display: none;
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .nav-wrap {
    position: relative;
    grid-template-areas: "menu brand contact";
    grid-template-columns: minmax(68px, 1fr) auto minmax(68px, 1fr);
    gap: 12px;
  }

  .nav-toggle {
    grid-area: menu;
    justify-self: start;
  }

  .brand {
    grid-area: brand;
    justify-self: center;
  }

  .brand img {
    width: 196px;
    max-width: 34vw;
  }

  .primary-nav {
    top: calc(100% + 8px);
  }

  .mobile-header-contact {
    grid-area: contact;
    display: grid;
    justify-self: end;
    gap: 4px;
  }

  .mobile-header-contact a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    min-height: 30px;
    color: var(--blue-dark);
    line-height: 1.05;
  }

  .mobile-header-contact svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: var(--orange);
  }

  .mobile-header-contact span,
  .mobile-header-contact strong,
  .mobile-header-contact small {
    display: block;
  }

  .mobile-header-contact strong {
    font-size: 10px;
  }

  .mobile-header-contact small {
    margin-top: 2px;
    font-size: 9px;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 76px;
    grid-template-columns: 64px minmax(124px, 1fr) 74px;
    gap: 5px;
  }

  .nav-toggle {
    min-width: 58px;
    padding-inline: 9px;
    font-size: .84rem;
  }

  .brand img {
    width: min(150px, 42vw);
    max-width: none;
  }

  .mobile-header-contact {
    gap: 2px;
  }

  .mobile-header-contact a {
    min-height: 29px;
    gap: 4px;
  }

  .mobile-header-contact svg {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }

  .mobile-header-contact strong {
    font-size: 9px;
  }

  .mobile-header-contact small {
    display: none;
  }
}
