/* ==========================================================================
   Emotion Inside - soft navigation styles
   A gentle fade on every full page load, and the stage that holds two
   content layers while one glides into the next. Motion is switched off for
   anyone who asks their device to reduce it.
   ========================================================================== */
@keyframes ei-page-in { from { opacity: 0; } to { opacity: 1; } }

body { animation: ei-page-in 0.34s ease both; }

.glide-stage { position: relative; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}
