.intro-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(199, 145, 36, .22), transparent 34%),
    linear-gradient(145deg, #160c05, #020201 72%);
}

.intro-glow {
  position: absolute;
  width: min(76vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(239, 199, 94, .18);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(208, 148, 37, .12), inset 0 0 80px rgba(208, 148, 37, .08);
}

.intro-brand {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  animation: intro-arrive 900ms ease-out both;
}

.intro-brand img {
  width: clamp(92px, 12vw, 150px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid #e0b959;
  border-radius: 50%;
  box-shadow: 0 18px 45px #000, 0 0 28px rgba(236, 190, 73, .26);
}

.intro-brand p {
  margin: 22px 0 4px;
  color: #c79b3e;
  font-size: 10px;
  letter-spacing: .38em;
}

.intro-brand h1 {
  margin: 0;
  color: #f5d57d;
  font-size: clamp(42px, 8vw, 78px);
  letter-spacing: .11em;
  text-shadow: 0 5px 20px #000;
}

.intro-brand span {
  color: #a57c30;
  font-size: 13px;
  letter-spacing: .48em;
}

.intro-brand small {
  margin-top: 8px;
  color: #d9b65d;
  font-size: 9px;
  letter-spacing: .42em;
}

@keyframes intro-arrive {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to { opacity: 1; transform: none; }
}

@media (max-height: 650px) and (orientation: landscape) {
  .intro-glow {
    width: min(50vw, 360px);
    box-shadow: 0 0 60px rgba(208, 148, 37, .10), inset 0 0 45px rgba(208, 148, 37, .06);
  }

  .intro-brand {
    transform: scale(.82);
    transform-origin: center;
  }

  .intro-brand img {
    width: clamp(72px, 8vw, 102px);
    box-shadow: 0 10px 28px #000, 0 0 18px rgba(236, 190, 73, .22);
  }

  .intro-brand p {
    margin: 12px 0 3px;
    font-size: 8px;
    letter-spacing: .30em;
  }

  .intro-brand h1 {
    font-size: clamp(30px, 5vw, 48px);
    letter-spacing: .09em;
  }

  .intro-brand span { font-size: 9px; letter-spacing: .34em; }
  .intro-brand small { margin-top: 5px; font-size: 7px; letter-spacing: .30em; }
}
