.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 35px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.p-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.85);
  width: 100%;
  z-index: 10;
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}

.p-header--hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.p-header--visible {
  transform: translateY(0);
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

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

.p-header__logo a {
  display: inline-block;
  line-height: 0;
}

.p-header__logo img {
  width: clamp(55px, 4vw, 80px);
  height: auto;
  display: inline;
}

.p-header__logo a {
  display: inline-block;
}

@media screen and (max-width: 480px) {
  .header-inner {
    padding: 4px 25px;
  }
}