.header-brand-text {
  position: fixed;
  left: clamp(104px, 7.4vw, 150px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: brandHeaderGlow 3.4s ease-in-out infinite;
}

.header-title-img {
  display: block;
  width: clamp(150px, 15vw, 270px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 14px rgba(212, 175, 55, 0.22));
}

@keyframes brandHeaderGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
  }
}

@media (max-width: 1180px) {
  .header-brand-text {
    left: 104px;
  }

  .header-title-img {
    width: 165px;
  }
}

@media (max-width: 900px) {
  .header-brand-text {
    left: 86px;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 620px) {
  .header-brand-text {
    display: none;
  }
}
