Hi Nachtwesen
I am very new at WordPress so please do not think i understand code but I saw you were looking for the same thing I was. To reduce the white space I did this for the top:
originally in child theme:
#site-title {
margin-right: 270px;
padding: 3.65625em 0 0;
I changed this to:
#site-title {
margin-right: 270px;
padding: 0.65625em 0 0;
and this for the bottom:
Original in child theme:
#site-description {
color: #7a7a7a;
font-size: 14px;
margin: 0 270px 3.65625em 0;
Changed this to:
#site-description {
color: #7a7a7a;
font-size: 14px;
margin: 0 270px 0.65625em 0;
It worked for me but no guarantees for anyone else. It was by trial and error.