/* ============================================
   SIA DESIGN CENTER — Base Reset v0.1.0
   A clean, consistent starting point.
   ============================================ */

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

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--sia-font-sans);
    font-size: var(--sia-text-base);
    line-height: var(--sia-leading-normal);
    color: var(--sia-neutral-800);
    background: var(--sia-neutral-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--sia-weight-bold);
    line-height: var(--sia-leading-tight);
    letter-spacing: var(--sia-tracking-tight);
}

p {
    line-height: var(--sia-leading-relaxed);
}

/* Focus visible — accessibility first */
:focus-visible {
    outline: 2px solid var(--sia-primary);
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
