Ancestors Selection
I would say "Ancestors Selection" is the most needed feature in CSS4. It is very difficult to select elements from a descendent and travel up the tree in HTML. Many developers have asked for this feature in past. Let's see what they come up with in CSS4.
Something like following will be very helpful:
.header < .logo{
...
}
or
.logo:parent{
...
}