Imagine you ace every written driving test — lane markings, mirror angles, right-of-way rules — but freeze the first time you merge onto a highway. That's the state of spatial reasoning in embodied AI. Models trained to crush spatial benchmarks (image-based reasoning about left/right, near/far, above/below) turn out to be surprisingly mediocre when dropped into a 3D environment and told to navigate to a goal. This paper names the disease, builds the medicine, and measures whether the patient improves. The core claim is pointed: benchmark-oriented spatial specialization actually hurts navigation. The authors fine-tune vision-language models on popular spatial reasoning datasets and show that performance on navigation tasks can degrade compared to the base model. The diagnosis is that isolated spatial inferences ("the chair is to the left of the table") don't transfer to the sequential decision-making that navigation demands — deciding when to turn, when to explore, when to commit. Spatial knowledge needs to be yoked to navigation phases (exploration, approach, fine-grained maneuvering) to be useful. To fix this, they build Spatial-Nav-100K, a 100K-sample dataset that pairs spatial supervision directly with navigation goals and decision trajectories. Training proceeds in two stages: first a shared spatial-navigation foundation, then phase-specific specialization. The clever move is Spatial-NPD (Navigation Preference Distillation), where a teacher model conditioned on ground-truth spatial priors generates ranked action preferences, then distills that knowledge into a student policy that needs no explicit spatial reasoning at inference time. The spatial understanding gets baked into the action distribution itself. The numbers land respectably. On HM3D-v0.2, the 8B model hits 77.4% success rate and 35.4 SPL (success weighted by path length — the metric that penalizes finding the goal by wandering everywhere). On the harder MP3D train-unseen split, it reaches 47.9/20.6. These beat several systems using closed-source models (GPT-4o-based agents) or thousands of GPU-hours of training, while requiring only 45 A100 GPU-hours for policy training and running at 148ms per action step — fast enough for real-time deployment. The architecture sits squarely in the VLM-as-policy family. They take an 8B vision-language model and convert it into a navigation policy via supervised fine-tuning and preference distillation. This is not reinforcement learning in the traditional sense — it's closer to behavioral cloning with a preference-learning twist. The teacher-student setup is the key structural choice: instead of forcing the agent to explicitly reason about spatial relations at every step (slow, fragile), the teacher's spatial grounding gets compressed into action preferences that the student internalizes. Integrity is mixed. The benchmarks — Habitat's HM3D and Matterport3D — are community standards, which is good. But some choices invite scrutiny: they report on HM3D-v0.2 and v0.1 separately (different splits yield different numbers), and the SPL scores, while decent, trail the success rates significantly, suggesting the agent finds goals but not efficiently. The ablation studies are thorough — they isolate the contribution of spatial supervision, phase specialization, and preference distillation — but all validation is in simulation. No real-robot experiments, no cross-simulator transfer tests. Code and data are promised but not yet released. The 20.6 SPL on MP3D unseen environments is the number to watch. That's the generalization metric — how well the agent navigates environments it has never seen. Getting that above 30 would signal robust transfer; getting it above 40 starts to make sim-to-real transfer conversations serious. The field needs to bridge the 30-point gap between seen and unseen environment performance before any of this matters outside simulation.