:root {
  --color-bg: #000000;
  --color-bg-soft: #080808;
  --color-bg-alt: #121212;
  --color-surface: #151515;
  --color-surface-alt: #1d1d1d;
  --color-text: #F2F2F2;
  --color-text-soft: #CFCFCF;
  --color-accent: #FF2D6F;
  --color-accent-dark: #D91B5C;
  --color-border: rgba(255, 45, 111, 0.2);
  --color-shadow: rgba(255, 45, 111, 0.24);
}

/* ─── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
::selection { background: rgba(255, 45, 111, 0.35); color: var(--color-text); }
img { -webkit-user-drag: none; display: block; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top, rgba(255, 45, 111, 0.12), transparent 32%),
    linear-gradient(180deg, #050505 0%, #000000 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.intro-pending,
body.intro-active {
  overflow: hidden;
}

.playfair { font-family: 'Montserrat', sans-serif; }

.brand-logo {
  display: block;
  width: 95%;
  height: auto;
}

.page-shell {
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

body.intro-pending .page-shell,
body.intro-active .page-shell {
  opacity: 0;
  transform: scale(1.015);
  filter: blur(8px);
  pointer-events: none;
}

body.intro-done .page-shell {
  opacity: 1;
  transform: none;
  filter: none;
}

.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 45, 111, 0.2), transparent 35%),
    linear-gradient(180deg, #020202 0%, #000000 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.intro-splash::before,
.intro-splash::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro-splash::before {
  background:
    linear-gradient(115deg, transparent 42%, rgba(255, 45, 111, 0.18) 50%, transparent 58%);
  animation: introSweep 2.1s ease-in-out infinite;
}

.intro-splash::after {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 55%);
}

.intro-splash.is-exiting {
  opacity: 0;
  visibility: hidden;
}

.intro-splash-inner {
  position: relative;
  width: min(440px, 82vw);
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.intro-splash-logo {
  width: min(320px, 72vw);
  height: auto;
  filter:
    drop-shadow(0 0 18px rgba(255, 45, 111, 0.24))
    drop-shadow(0 16px 45px rgba(0, 0, 0, 0.45));
  animation: introLogoPop 2.35s ease both;
}

.intro-splash-glow {
  position: absolute;
  top: 48%;
  width: min(300px, 62vw);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 111, 0.95), transparent);
  filter: blur(7px);
  animation: introGlowPulse 1.3s ease-in-out infinite;
}

.intro-splash-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 28px;
}

.intro-splash-bars span {
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  box-shadow: 0 0 18px rgba(255, 45, 111, 0.24);
  animation: introBars 0.9s ease-in-out infinite;
}

.intro-splash-bars span:nth-child(1) { height: 10px; animation-delay: 0s; }
.intro-splash-bars span:nth-child(2) { height: 22px; animation-delay: 0.12s; }
.intro-splash-bars span:nth-child(3) { height: 28px; animation-delay: 0.24s; }
.intro-splash-bars span:nth-child(4) { height: 18px; animation-delay: 0.36s; }
.intro-splash-bars span:nth-child(5) { height: 12px; animation-delay: 0.48s; }

.intro-splash-copy {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

