Mental Model
The height of a binary tree is the longest path from the root to any leaf node. It tells us how tall the tree is.
Analogy: Imagine a family tree where the height is the number of generations from the oldest ancestor (root) down to the youngest descendant (leaf).
1
/ \
2 3
/
4
(Height is 3 because the longest path is 1 -> 2 -> 4)