/* ═══════════════════════════════════════════════
   OPALINE — PRELOADER
   Wordmark entry animation · Elegant dissolve
   ═══════════════════════════════════════════════ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--navy-twilight);
}

.preloader__wordmark {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(18px, 3vw, 24px);
  letter-spacing: 0.8em;
  text-transform: uppercase;
  color: var(--ivory-stone);
  opacity: 0;
  /* Animated by GSAP in main.js */
}

.preloader__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(12px, 1.5vw, 15px);
  color: rgba(232, 222, 202, 0.45);
  letter-spacing: 0.2em;
  opacity: 0;
  /* Animated by GSAP in main.js */
}

/* Subtle pulse while loading */
.preloader__pulse {
  width: 40px;
  height: 1px;
  background: var(--gold-edge);
  margin-top: 24px;
  opacity: 0;
  animation: preloaderPulse 1.8s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0; transform: scaleX(0.6); }
  50% { opacity: 0.6; transform: scaleX(1); }
}
