.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 950;
  height: var(--header-height);
  background: rgba(240, 220, 220, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  perspective: 1200px;
}

.sticky-header__home {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.sticky-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform-origin: center center;
  transform: translateY(-3px);
}

.sticky-header__slogan {
  height: clamp(25px, 3.5vw, 43px);
  width: auto;
}

.sticky-header__slogan--solo {
  height: clamp(26px, 3.6vw, 46px);
}
