Mental Model
When we remove the top value from a heap, we replace it with the last item and then push it down to restore the heap order.
Analogy: Imagine a pyramid of blocks where the top block is removed. To keep the pyramid stable, you move the bottom block to the top and then slide it down to the right place.
[10]
/ \
[15] [20]
/ \ / \
[30][40][50][60]
Top is 10 (min or max), children below maintain heap order.