/* ==========================================================================
   N-SOL CONSTRUCTION — MASTER STYLESHEET (style.css)
   ==========================================================================
   TECHNICAL EXPLANATION FOR LEARNERS:
   This master stylesheet imports our modular CSS files in the exact
   order required by CSS specifications.
   
   To keep the site fast and 100% functional offline, we do NOT block page
   rendering with external font downloads here. The site works cleanly on
   native system fonts, with optional web fonts loaded smoothly in HTML.
   
   1. variables.css  -> Brand colors, typography tokens, spacing, and shadows
   2. base.css       -> CSS reset, browser normalization, and typography defaults
   3. components.css -> Reusable UI blocks (buttons, navbar, service cards, footer)
   4. layout.css     -> Page sections, grid systems, hero layouts, and CTA strip
   5. responsive.css -> Media queries adjusting the display for all screens
   ========================================================================== */

/* 1. Design Tokens & Variables */
@import url('variables.css');

/* 2. Reset & Base Typography */
@import url('base.css');

/* 3. Reusable UI Components */
@import url('components.css');

/* 4. Section Layouts & Grids */
@import url('layout.css');

/* 5. Responsive Breakpoints & Mobile Navigation */
@import url('responsive.css');
