Сетки / Испытание: строим сетку [27/32] Еще короче?

Здравствуйте, испытание пройдено успешно, но мучает вопрос: А как сделает это задание профессионал?) Могли бы показать вашу версию?)

Вот мой вариант 100%:

    <div class="wrapper">
       <div class="header"> Header </div>
       <div class="menu">Menu</div>
       <div class="layout-positioner-1 layout">
         <div class="promo1 promo"> Promo 1 </div>
         <div class="promo2 promo"> Promo 2 </div>
      </div>
       <div class="layout-positioner-2 layout clearfix">
          <div class="left block">Left</div>
          <div class="main block">Main</div>
          <div class="right block">Right</div>
      </div>
      <div class="footer clearfix">Footer</div>
   </div>

html,
body {
margin: 0;
padding: 0;
}

body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}
.wrapper{
height: 150px;
padding: 10px 0;
background: #34495e;
}
.header {
width: 340px;
height: 25px;
background: #c0392b;
margin: 0 auto;
padding: 5px;
}
.menu {
height: 25px;
background: #3498DB;
margin: 10px 0;
padding: 5px 55px;
}
.layout {
width: 350px;
margin: 0 auto;
}
.layout-positioner-1 {
height: 52px;
}
.layout-positioner-2 {
margin-top: 28px;
}
.promo {
width: 160px;
height: 50px;
padding: 5px;
background: #c0392b;
}
.promo1 {
float:left;
}
.promo2 {
float: right;
}
.block {
height: 100px;
padding: 5px;
background: #3498DB;
}
.left {
float:left;
width: 60px;
}
.main {
float:left;
width: 180px;
margin-left: 10px;
}
.right {
float:right;
width: 60px;
}
.footer {
height: 30px;
padding: 5px 55px;
background: #34495e;
margin-top: 10px;
}
.clearfix::after {
display: table;
content: “”;
clear: both;
}

Код по ссылке можно считать профессиональным: Испытание Сетки [27/32]. Просьба оценить код.
Смотрите и сравнивайте.