Index: wp-content/themes/twentythirteen/style.css
===================================================================
--- wp-content/themes/twentythirteen/style.css	(revision 24071)
+++ wp-content/themes/twentythirteen/style.css	(working copy)
@@ -70,7 +70,6 @@
 figure,
 footer,
 header,
-hgroup,
 nav,
 section,
 summary {
@@ -807,16 +806,14 @@
 	position: relative;
 }
 
-.site-header hgroup {
+.site-header .home-link {
+	color: #141412;
+	display: block;
 	margin: 0 auto;
 	max-width: 1080px;
 	padding: 0 20px;
 	min-height: 230px;
 	width: 100%;
-}
-
-.site-header a {
-	color: #141412;
 	text-decoration: none;
 }
 
@@ -991,7 +988,7 @@
 	z-index: 3;
 }
 
-.navbar-fixed #masthead .site-title {
+.navbar-fixed .home-link .site-title {
 	color: #141412;
 }
 
@@ -3238,7 +3235,7 @@
 		background-image: none !important;
 	}
 
-	.site-header hgroup {
+	.site-header .home-link {
 		min-height: 0;
 		max-width: none;
 	}
Index: wp-content/themes/twentythirteen/js/theme-customizer.js
===================================================================
--- wp-content/themes/twentythirteen/js/theme-customizer.js	(revision 24069)
+++ wp-content/themes/twentythirteen/js/theme-customizer.js	(working copy)
@@ -22,13 +22,13 @@
 		value.bind( function( to ) {
 			if ( 'blank' == to ) {
 				if ( 'remove-header' == _wpCustomizeSettings.values.header_image )
-					$( '#masthead hgroup' ).css( 'min-height', '0' );
+					$( '.home-link' ).css( 'min-height', '0' );
 				$( '.site-title, .site-description' ).css( {
 					'clip': 'rect(1px, 1px, 1px, 1px)',
 					'position': 'absolute'
 				} );
 			} else {
-				$( '#masthead hgroup' ).css( 'min-height', '230px' );
+				$( '.home-link' ).css( 'min-height', '230px' );
 				$( '.site-title, .site-description' ).css( {
 					'clip': 'auto',
 					'color': to,
Index: wp-content/themes/twentythirteen/header.php
===================================================================
--- wp-content/themes/twentythirteen/header.php	(revision 24069)
+++ wp-content/themes/twentythirteen/header.php	(working copy)
@@ -39,11 +39,9 @@
 <body <?php body_class(); ?>>
 	<div id="page" class="hfeed site">
 		<header id="masthead" class="site-header" role="banner">
-			<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
-				<hgroup>
-					<h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
-					<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
-				</hgroup>
+			<a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
+				<h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
+				<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
 			</a>
 
 			<div id="navbar" class="navbar">
Index: wp-content/themes/twentythirteen/css/ie.css
===================================================================
--- wp-content/themes/twentythirteen/css/ie.css	(revision 24069)
+++ wp-content/themes/twentythirteen/css/ie.css	(working copy)
@@ -34,7 +34,7 @@
 	left: 100%;
 }
 
-.site-header hgroup {
+.site-header .home-link {
 	max-width: 1040px;
 }
 
Index: wp-content/themes/twentythirteen/inc/custom-header.php
===================================================================
--- wp-content/themes/twentythirteen/inc/custom-header.php	(revision 24069)
+++ wp-content/themes/twentythirteen/inc/custom-header.php	(working copy)
@@ -103,7 +103,7 @@
 	<?php
 			if ( empty( $header_image ) ) :
 	?>
-		.site-header hgroup {
+		.site-header .home-link {
 			min-height: 0;
 		}
 	<?php
@@ -141,7 +141,7 @@
 		} ?>
 		padding: 0 20px;
 	}
-	#headimg .hgroup {
+	#headimg .home-link {
 		-webkit-box-sizing: border-box;
 		-moz-box-sizing:    border-box;
 		box-sizing:         border-box;
@@ -195,7 +195,7 @@
 	?>
 	<div id="headimg" style="background: url(<?php header_image(); ?>) no-repeat scroll top; background-size: 1600px auto;">
 		<?php $style = ' style="color:#' . get_header_textcolor() . ';"'; ?>
-		<div class="hgroup">
+		<div class="home-link">
 			<h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="#"><?php bloginfo( 'name' ); ?></a></h1>
 			<h2 id="desc" class="displaying-header-text"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></h2>
 		</div>
