body.intro-active { overflow: hidden; }

.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(199,168,107,.15), transparent 31%),
    linear-gradient(145deg, #102837 0%, #07131c 75%);
  opacity: 1;
  visibility: visible;
  transition: opacity .65s ease, visibility .65s ease;
}

.intro-splash::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(224,200,146,.2);
  pointer-events: none;
}

.intro-splash.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-logo-wrap {
  position: relative;
  width: clamp(170px, 24vw, 250px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  animation: introLogoBeat 1.4s cubic-bezier(.22,.75,.3,1) infinite;
}

.intro-logo {
  position: relative;
  z-index: 2;
  width: 72%;
  height: 72%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 22px 65px rgba(0,0,0,.3);
}

.intro-pulse {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(224,200,146,.62);
  border-radius: 50%;
  opacity: 0;
  animation: introPulseRing 1.8s ease-out infinite;
}

.intro-pulse-two { animation-delay: .55s; }

.intro-caption {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  animation: introCaption 1s ease both .25s;
}

@keyframes introLogoBeat {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.045); }
  60% { transform: scale(1.015); }
}

@keyframes introPulseRing {
  0% { opacity: .75; transform: scale(.72); }
  75%, 100% { opacity: 0; transform: scale(1.28); }
}

@keyframes introCaption {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .intro-splash::before { inset: 12px; }
  .intro-logo-wrap { width: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-logo-wrap,
  .intro-pulse,
  .intro-caption { animation: none; }
  .intro-splash { transition-duration: .2s; }
}
