It happens because inside your model there are a lot of BIG bounding boxes inside it (which are actually MUCH bigger than than their relevant meshes which you would like to collide with).
As one may see, the bounding box of the round seat takes more than half of the room; the same with all other seats, so camera will bounce back and forth in a painful attempt to find a resting point… The best solution is to rework the 3D model so meshes’ origin and their bounding size would be more suitable for use in your application.
Also, if you set gravity.y to -0.1, camera behaves much better - https://playground.babylonjs.com/#0VHCTL#2
The desk is just higher. Also it depends on camera.ellipsoid size, especially on its Y value.
Here - with some extra settings which you may tweak - the situation is better: https://playground.babylonjs.com/#0VHCTL#3
That’s all I needed to know. I think the best solution out of the proposed all this will be the reworking of the 3D model, so I will mark this solution with an answer.