/* =============================================
   BRANCH'S — INTRO SPLASH CSS
   Dark full-screen intro shown on first visit
   ============================================= */

.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  opacity: 1;
  transition: opacity 0.6s ease;
  overflow: hidden;
}

.intro-splash::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(242,101,34,0.18) 0%, transparent 70%);
  pointer-events: none;
}

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

.intro-splash-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.9)) drop-shadow(0 0 36px rgba(255,255,255,0.5));
  animation: introFadeIn 1s ease 0.3s both;
}

.intro-splash-tagline {
  font-family: 'Montserrat', 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 4.5vw, 3rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.3;
  max-width: 680px;
  margin: 0;
  animation: introFadeIn 1.2s ease 0.9s both;
}

.intro-splash-tagline em {
  font-style: italic;
  color: #F26522;
  font-weight: 700;
}

.intro-splash-divider {
  width: 60px;
  height: 3px;
  background: #F26522;
  margin: 28px auto 0;
  animation: introFadeIn 0.8s ease 1.8s both;
}

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

/* Prevent body scroll while splash is showing */
body.intro-active {
  overflow: hidden;
}
