Hi,
Promessing theme :)
However... I found that when a static page is selected to be frontpage, the result is that both the page title and the blog description is generated as H1.
This is ofcource not W3C/Accessibility compliant.
After some rough testing I can conclude that if line 373 in /library/extensions/header-extensions.php is changed from
if (is_home() || is_front_page()) {
to
`if (is_home()) {'
since is_front_page returns TRUE if there is a page displayed as front page and is_home does not...