Hi,
For big Arduino projects, break your code into separate .ino files by function, like one for sensors and another for the user interface. Create libraries for reusable code, use clear names, and add plenty of comments. This makes your project easier to handle, edit, and update later.
Jack ;)