@dlmorey,
All of the setting are stored in the database, so it’s safe to reinstall the files without losing any content or configuration. I took a look as well, and this seems like a problem where the site URL in WordPress settings is still set to an old URL.
To provide a bit more context, the reason things is broken is because the stylesheets are trying to load from a non-existent location:
http://custom1k.com/suarez/wp-content/themes/x/framework/css/dist/site/stacks/integrity-light.css
…instead of it’s true location:
http://yoandysuarez.com/wp-content/themes/x/framework/css/dist/site/stacks/integrity-light.css
I’m not 100% sure if this will work, but you could try adding this to wp-config.php
(anywhere before the “stop editing” message). This tells WordPress directly what URL to serve the site on instead of using a value from the database.
define('WP_HOME','http://yoandysuarez.com/');
define('WP_SITEURL','http://yoandysuarez.com/');
Regretfully, supporting server configuration issues is not in the scope of support we can offer. Hopefully this helps, but if you still need help fixing your WordPress site you may need to reach out to your host or consult with a developer.