Prioritizing wp enqueue scripts error

You got parentheses levels slightly wrong and that broke your callbacks.

It should be:

add_action( 'wp_enqueue_scripts', array( __CLASS__, 'frontend_enqueues' ), 1 );

tech