Suppose we have a deck of cards, ordered $[$$1$$,52$] (using e.g. the bridge ordering). Shuffle the cards (uniformly at random). Turn over the top card, it has value $v_0$.
We will turn over cards one by one and place them either on the stack or in the discard.
The stack starts off empty. Let $v_t$ be the value of the top card in the stack (or $\infty$ when the stack is empty).
Now we begin turning over additional cards. For each card $i$ with value $v_i$, if $v_0 < v_i < v_t$ then we place card $i$ on the top of the stack, so that now $v_t = v_i$. Otherwise, we place card $i$ in the discard.
After turning over $k$ cards, what is the expected number of cards in the stack?
In a circle with $53$ cards, choose one dummy card uniformly at random and number the remaining cards beginning at that position, say, clockwise. Then draw from the numbered cards as you described. The condition for putting the card $v_i$ on the stack is fulfilled if and only if the card is the clockwise neighbour of the first card $v_0$ among all the cards drawn up to that point (including the dummy card), and by symmetry the probability for that is $1/(i+1)$. Thus the expected number of cards on the stack after turning over $k$ cards (in addition to the first card) is
$$\sum_{i=1}^k\frac1{i+1}=\sum_{j=2}^{k+1}\frac1j=H_{k+1}-1\;,$$
where $H_k$ is the $k$-th harmonic number. Note that the probability of each card to be counted as a record low is exactly the same as it is in the standard case without special treatment of the first card; the result in that case would be $H_{k+1}$, and $1$ is subtracted from that because the first card doesn't count as a record low.