/* ═════════════════════════════════════════════════════════════════
   Main — PRPOL base styles

   Minimal reset and body defaults for the production site.
   The hero stage uses full viewport width so the body must not
   have horizontal padding.
   ═════════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: sans-serif;
    color: #222;
}
