.site-header {
  position: relative;
  z-index: 1000;
  background: #fbfbfb;
  border-bottom: none;
  margin-bottom: 0 !important;
}

.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img {
  display: block;
  height: 70px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.site-nav__list li {
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  color: #242422;
  text-decoration: none;
  font-size: var(--font-size-body);
  line-height: var(--line-height-heading);
  font-weight: 500;
  white-space: nowrap;
}

.site-nav__list a:hover {
  color: #0099cc;
  text-decoration: none;
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #0099cc;
  color: #fbfbfb;
  text-decoration: none;
  font-size: var(--font-size-body);
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

.site-header__phone img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.site-header__phone:hover {
  opacity: 0.92;
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.site-header__toggle-line {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #242422;
  margin: 6px auto;
  transition: 0.4s;
  border-radius: 2px;
}

.site-header__toggle.is-active .site-header__toggle-line:nth-child(1) {
  transform: translateY(9px) rotate(-45deg);
}

.site-header__toggle.is-active .site-header__toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header__toggle.is-active .site-header__toggle-line:nth-child(3) {
  transform: translateY(-9px) rotate(45deg);
}

@media (max-width: 1250px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-header__toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    margin-left: 0;
    padding-top: 8px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

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

  .site-nav__list {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .site-nav__list li {
    width: 100%;
    text-align: center;
  }

  .site-nav__list a {
    display: block;
    width: 100%;
    font-size: 1rem;
    text-align: center;
  }

  .site-header__phone {
    margin-top: 4px;
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    padding: 14px 16px;
  }

  .site-header__logo img {
    height: 52px;
  }
}