.site-header {
  background: var(--gray-bg);
  border-radius: 0 0 32px 32px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: anchor-center;
  gap: 12px;
}

.site-logo__mark {
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-logo__text {
  letter-spacing: 0.04em;
  font-family: Rubik;
  font-weight: 500;
  font-style: mediumd;
  font-size: 14.99px;
  line-height: 14.31px;
  letter-spacing: 11%;
  vertical-align: middle;
  text-transform: uppercase;
  text-shadow:
    0.3px 0.3px 0 #000000AB,
    1px 1px 2.3px #00000045;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: #f2f7fb;
  text-decoration: none;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 32px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover {
  color: #fff;
}

.site-header__phone {
  text-decoration: none;
  color: #fff;
  background: var(--brand-green);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 1160px) {
  .site-header__inner {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
  }

  .site-nav ul {
    gap: 16px;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .site-logo__mark {
    font-size: 38px;
  }

  .site-logo__text {
    font-size: 16px;
  }
}
