Content & Sections
Every template is a straight top-to-bottom sequence of <section> elements, commented with their purpose:
<!-- ============ HERO ============ -->
<section id="top"> ... </section>
<!-- ============ SERVICES ============ -->
<section id="services"> ... </section>
To remove a section, delete its whole <section>...</section> block and the matching link in the nav at the top of the file. To duplicate a card, copy one repeating item (a service card, team member, pricing tier) inside its parent grid and edit the copy — the grid's gap-* classes handle spacing automatically.
Single-Page vs Multi-Page
The single-page build keeps every section — About, Services, Work, Contact — on one URL with anchor navigation, which suits a lean, scroll-driven site. The multi-page build under each industry's /multipage folder splits the same design into five separate HTML files (Home, About, Services, Work, Contact) sharing one header and footer, for sites that want distinct URLs per section (better for longer-form content and SEO on individual pages). Both share /assets, so styling and behavior stay identical between the two — pick whichever structure fits the project and delete the other.