Mental Model
The height of a binary tree is the longest path from the root to any leaf. We find it by checking how deep the tree goes.
Analogy: Imagine a family tree where height is how many generations you count from the oldest ancestor down to the youngest descendant.
1 / \ 2 3 / 4 (Height is the longest path from 1 down to 4)