/* ====================================================================
   HAUS OF SÔS — Seamless page transitions
   Native cross-document View Transitions. The outgoing page and the
   incoming page cross-dissolve as real rendered snapshots: no panel,
   no slab, no flash. Cream melts into cream, venues dissolve through.
   Browsers without support simply navigate normally (graceful).
   ==================================================================== */
@view-transition {
  navigation: auto;
}

/* Tune the default root cross-fade: unhurried, soft easing */
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.55s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none !important;
  }
}
