/* ==========================================================================
   Modern Wedding Istanbul -- Motion System v2 : CORE
   Phase 2 (architecture preparation only, 2026-07-24). No existing
   animation has been moved here. Shared tokens + inert utility classes
   only -- nothing below matches any current page element, so loading
   this file changes nothing visually. Consumed by mwi-motion-hero.css
   and mwi-motion-components.css once real migration begins.
   Does not touch, override, or duplicate mwi-motion.css / mwi-cinematic.css.
   No !important, no global/body selectors, no Elementor overrides.
   ========================================================================== */
:root{
  --mwi2-duration-fast:       .35s;
  --mwi2-duration-base:       .6s;
  --mwi2-duration-slow:       1s;
  --mwi2-duration-hero:       12s;
  --mwi2-duration-atmosphere: 16s;
  --mwi2-ease-silk:      cubic-bezier(.22,.61,.22,1);
  --mwi2-ease-soft:      cubic-bezier(.4,0,.2,1);
  --mwi2-ease-cinematic: cubic-bezier(.16,.84,.44,1);
}

/* Reusable, opt-in utility classes -- unused by any current element,
   reserved for future migration. */
.mwi-motion-fade-ready{ opacity:0; }
.mwi-motion-fade-in{
  opacity:1;
  transition:opacity var(--mwi2-duration-base) var(--mwi2-ease-soft);
}

@media (prefers-reduced-motion: reduce){
  .mwi-motion-fade-ready{ opacity:1; }
}