Challenge 1: Why UV Unwrapping Waits Until After Modifiers Are Applied — Solution Walkthrough The answer: Per Chapter 3's own tip box, UV unwrapping generally happens on the base mesh, with a modifier's own added geometry considered separately, since unwrapping the full, modifier-generated result directly can produce a far more complex and harder-to-manage UV layout than necessary. Waiting until after Step 2's own Mirror and Subdivision Surface modifiers are applied means the final shape being unwrapped is actually settled, rather than unwrapping a form that's still about to change. Why unwrapping right after the initial sculpt would be premature: If UV unwrapping happened immediately after Step 1, the mesh would still be missing its own mirrored symmetry and its subdivided, smoothed final form from Step 2 — any seams and layout decisions made at that point would need to be redone once those modifiers actually changed the mesh's own final shape. Why this ordering matches real production practice: Per this chapter's own material, seam placement is a genuine skill worth doing thoughtfully rather than repeatedly — waiting until the mesh's own shape is actually finalized (after modifiers) means that thoughtful seam placement only has to happen once, on the mesh's own true final form. WHY THIS WORKS AS AN ANSWER ------------------------------ This exercise checks that UV unwrapping's own placement after modifiers is correctly understood as avoiding wasted, premature layout work on a mesh that hasn't reached its final shape yet.