.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header, 1000);
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.site-header__desktop {
  display: none;
}

.site-header__mobile {
  display: block;
}

.site-header__row1,
.site-header__row2 {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

.site-header__row1 {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.site-header__burger {
  width: 44px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  position: relative;
}

.site-header__burger span::before,
.site-header__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #222;
  border-radius: 2px;
}

.site-header__burger span::before {
  top: -6px;
}

.site-header__burger span::after {
  top: 6px;
}

.site-header__logo {
  text-decoration: none;
}

.site-header__row1 .site-header__logo {
  grid-column: 2;
  justify-self: center;
  text-align: center;
}

.site-header__brand {
  font-weight: 800;
  font-size: 22px;
}

.site-header__row2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 0;
  padding-top: 6px;
  padding-bottom: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #111;
  font-weight: 800;
  white-space: nowrap;
}

.site-header__phoneIcon,
.site-header__desktopCallIcon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex: 0 0 auto;
}



@media (min-width: 992px) {
  .site-header__desktop {
    display: block;
  }

  .site-header__mobile {
    display: none;
  }

  .site-header__topbar {
    background: #fff;
  }

  .site-header__topbarInner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .site-header__topbarInner .site-header__logo {
    text-align: left;
  }
  .site-header__navBar {
    background: #3e434b;
  }

  .site-header__desktopCall {
    justify-self: end;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #111;
  }

  .site-header__desktopCallIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }
  .site-header__desktopCallText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    line-height: 1.05;
    white-space: nowrap;
  }

  .site-header__desktopCallLabel {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 900;
    line-height: 1.1;
  }

  .site-header__desktopCallNum {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    color: #ef6400;
  }
}
