Feature: Sidebar — settings menu and account menu As a signed-in user I want to reach the settings pages and collapse the sidebar So that I can navigate the app comfortably regardless of screen space Background: Given I am signed in as "Alice" "Martin" And the planning request returns nothing Scenario: No longer lists Foyer in the main nav When I visit "/" Then the sidebar's main nav should not mention "Foyer" Scenario: Reveals the four settings pages behind the Paramètres toggle When I visit "/" Then I should not see "Compte" When I click the button "Paramètres" Then the link "Compte" should point to "/parametres/compte" And the link "Préférences alimentaires" should point to "/parametres/preferences" And the link "Foyer" should point to "/parametres/foyer" And the link "Préférences utilisateur" should point to "/parametres/preferences-utilisateur" Scenario: Opens the account menu from the greeting and links to Mon compte When I visit "/" Then I should not see "Mon compte" When I open the account menu And I click the link "Mon compte" Then the URL should include "/parametres/compte" Scenario: Redirects the old /foyer path to /parametres/foyer Given the household request returns no household When I visit "/foyer" Then the URL should include "/parametres/foyer" Scenario: Collapses to an icon-only rail and back, persisting the choice across reloads When I visit "/" Then the sidebar should not be collapsed And the nav link "Planning" should be visible When I toggle the sidebar collapse Then the sidebar should be collapsed And the nav link "Planning"'s label should be hidden And the nav link titled "Planning" should be visible When I reload the page Then the sidebar should be collapsed When I toggle the sidebar collapse Then the sidebar should not be collapsed And the nav link "Planning" should be visible