/* =========================
   HEADER LOGO
========================= */
.hero-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #000;
}

.hero {
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 16 / 9;
  background: url("/images/hero.png") center / cover no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.8s ease, transform 1.8s ease;
  position: relative;
}

.hero.show {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 1;
  transition: opacity 2s ease;
}

.hero.show::after {
  opacity: 0;
}
