Custom Site Tagline / Site-Description - Replaces Standard WP site tag with HTML tag.
remove_action( 'genesis_site_description', 'genesis_seo_site_description' );
add_action( 'genesis_site_description', 'custom_site_description' );
function custom_site_description() {
echo 'word1.<span class="class-name">word2</span>.word2';
}