.site-header {
  width: 100%;
  height: 72px;
  background-color: #fff;
  border-bottom: 1px solid #cfcfcf;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo img {
  width: 95px;
}

.main-nav {
  display: flex;
  gap: 90px;
}

.main-nav a {
  color: #000;
  font-size: 17px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--brand-green);
}

.header-socials {
  display: flex;
  gap: 8px;
}

.header-socials img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(16%) saturate(1103%) hue-rotate(108deg) brightness(90%) contrast(88%);
}

@media (max-width: 700px) {
  .site-header {
    height: auto;
    padding: 15px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 35px;
  }
}