/* reset.css
 * Phase 1: Minimal reset & normalization.
 * Keep intentionally small; broader structural rules move to base-structure.css
 */

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

/* Improve text rendering (optional, safe) */
body {
    -webkit-font-smoothing: antialiased;
}

/* Reset anchor underlines; color handled in component/base layers */
a {
    text-decoration: none;
}

/* Image defaults */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Form element font inheritance */
input,
button,
textarea,
select {
    font: inherit;
}

/* Table layout improvements */
table {
    border-collapse: collapse;
}