Hey, good job so far with the theme just came across it and having a look through the code.
For WordPress best practice you should be enqueue'ing you scripts and style sheets through functions.php as opposed to manually including them in the head. This will allow plugins like W3 Total Cache to minify/compile the style sheets. This applies to scripts as well although slightly differently implementation see http://codex.wordpress.org/Function_Reference/wp_register_script
Hey, good job so far with the theme just came across it and having a look through the code.
For WordPress best practice you should be enqueue'ing you scripts and style sheets through functions.php as opposed to manually including them in the head. This will allow plugins like W3 Total Cache to minify/compile the style sheets. This applies to scripts as well although slightly differently implementation see http://codex.wordpress.org/Function_Reference/wp_register_script
Hope that helps a bit and again good job so far :)