.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid #2a2a2a;
  backdrop-filter: blur(6px);
}

.site-header__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 20px;
}

.site-header__brand {
  display: flex;
  align-items: center;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-header__logo-wrap {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.site-header__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-header__brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-transform: uppercase;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.site-header__brand-line {
  display: block;
  font-size: 0.95rem;
}

.site-header__nav {
  display: flex;
  justify-content: center;
}

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

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

.site-menu a {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.site-menu a:hover,
.site-menu a:focus {
  opacity: 0.7;
}

.site-header__cta {
  display: flex;
  justify-content: flex-end;
}

.sgp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.sgp-button:hover,
.sgp-button:focus {
  background: #ffffff;
  color: #000000;
}

.sgp-button__arrow {
  font-size: 1rem;
  line-height: 1;
}
.site-footer {
  padding: 32px 0;
  border-top: 1px solid #2a2a2a;
}
.site-header__brand,
.site-header__nav,
.site-header__cta {
  min-width: 0;
}