/* Modern lightweight CSS Reset (safe defaults) */

/* Box sizing */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

/* Remove default margin/padding */
* { margin: 0; padding: 0; }

/* Body defaults */
body { min-height: 100vh; }

/* Typography resets kept minimal to not override project fonts */
img, picture, video, canvas, svg { display: block; max-width: 100%; }

/* Forms inherit font settings */
input, button, textarea, select { font: inherit; }

/* Links */
a { color: inherit; text-decoration: none; }

/* Lists */
ul, ol { list-style: none; }

/* Tables */
table { border-collapse: collapse; border-spacing: 0; }

/* Prevent font size inflation */
:root { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }


