.hop-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 248, 246, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 221, 216, 0.9);
}

.hop-site-header__inner {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 2rem;
  min-height: 110px;
  padding: 0 48px;
}

.hop-site-branding {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hop-site-branding__logo-link {
  display: inline-flex;
  align-items: center;
}

.hop-site-branding__logo {
  display: block;
  max-height: 150px;
  width: auto;
}

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

.hop-site-header__nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.hop-site-header__nav .menu a {
  display: inline-block;
  color: var(--hop-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0;
}

.hop-site-header__nav .menu a:hover,
.hop-site-header__nav .current-menu-item > a,
.hop-site-header__nav .current_page_item > a {
  color: var(--hop-accent);
}

.hop-site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.hop-site-header__right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--hop-heading);
  transition: 0.25s ease;
}

.hop-site-header__right a:hover {
  color: var(--hop-accent);
  transform: translateY(-2px);
}

.hop-site-header__right svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1100px) {
  .hop-site-header__inner {
    grid-template-columns: 160px 1fr 160px;
    padding: 0 24px;
    gap: 1.2rem;
  }

  .hop-site-header__nav .menu {
    gap: 1.2rem;
  }
}

@media (max-width: 920px) {
  .hop-site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
    padding: 1rem 20px;
    min-height: auto;
  }

  .hop-site-branding {
    justify-content: center;
  }

  .hop-site-branding__logo {
    max-height: 70px;
  }

  .hop-site-header__nav .menu {
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
  }

  .hop-site-header__right {
    justify-content: center;
  }
}