/**
 * ==========================================================================
 * CSS RESET - NORMALIZE BROWSER DEFAULTS
 * ==========================================================================
 *
 * Removes default browser styling to ensure consistent appearance across
 * all browsers. This is the foundation layer - loaded before all other CSS.
 *
 * KEY RESETS:
 * - Box-sizing: border-box on all elements (includes padding in width)
 * - Removes default margins and padding
 * - Removes list styles from ul/ol
 * - Makes images block-level and responsive
 * - Inherits fonts on form elements
 *
 * PHP INTEGRATION:
 * - No PHP conversion needed; this is static CSS
 *
 * LOAD ORDER:
 * 1. reset.css (this file)
 * 2. variables.css
 * 3. typography.css
 * 4. layout.css
 * 5. components/*.css
 * 6. pages/*.css
 *
 * ==========================================================================
 */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}

main {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

[hidden] {
    display: none !important;
}
