/* ─────────────────────────────────────────
   PAGE TRANSITION OVERLAY
───────────────────────────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background-color: var(--color-accent);
  z-index: 9999;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: bottom;
}

/* ─────────────────────────────────────────
   CURSOR LINE (decorative)
───────────────────────────────────────── */
.cursor-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: #CE2A64;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.5;
}

/* ─────────────────────────────────────────
   HERO STAGGER (applied by JS)
───────────────────────────────────────── */
.hero__eyebrow,
.hero__title,
.hero__tagline,
.hero__work-label {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────
   MAGNETIC BUTTON WRAPPER
───────────────────────────────────────── */
.magnetic {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}
