/* ============================================
   Noir Code — Splash / Loading Screen
   ============================================ */

@keyframes splashFadeIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes splashPulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}
@keyframes splashExit {
  to { opacity: 0; visibility: hidden; }
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0B0B0B;
  transition: opacity 0.8s ease;
}

.splash.done {
  animation: splashExit 0.8s ease forwards;
  pointer-events: none;
}

.splash-emblem {
  width: 80px;
  height: auto;
  animation: splashFadeIn 1.2s ease-out forwards;
  filter: drop-shadow(0 0 30px rgba(194,164,109,0.3));
}

.splash-wordmark {
  font-family: Baskerville, 'Baskerville Old Face', Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #C2A46D;
  margin-top: 1.2rem;
  animation: splashFadeIn 1.2s ease-out 0.3s forwards;
  opacity: 0;
}

.splash-bar {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C2A46D, transparent);
  margin-top: 1.5rem;
  animation: splashPulse 2s ease-in-out infinite;
}
