Hi @jsgollin,
I have just checked your website and it working fine. I have also checked the Tools > Site Health and there is no critical issue, but I found that you are still using the PHP version 7.4.33. I would suggest you update it to 8.0 and check if that helps.
If not, please add the below-given code into your wp-config.php for debug setup and the error logged into the file name debug.log inside the wp-content folder.
// Enable WP_DEBUG mode
define( 'WP_DEBUG', true );
// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );
// Disable display of errors and warnings
define( 'WP_DEBUG_DISPLAY', false );
//SET PHP INI DISPLAY ERROR FALSE
@ini_set( 'display_errors', 0 );
Please find the video that will help you to edit wp-config.php and add the above code: https://www.youtube.com/watch?v=3SDPTafEM8o
You can let us know if you find any error that is related to our theme or theme bundled plugins. I would suggest you please copy your live site to a staging server so we could troubleshoot freely without breaking your live site.
Thanks