/* ========================================
   CSS Reset & Base Styles
   ======================================== */

/* Box Sizing Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base HTML & Body */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--color-off-white);
    color: var(--color-text-primary);
    line-height: var(--line-height-normal);
    min-height: 100vh;
}

/* Typography Reset */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
}

p {
    margin: 0;
}

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

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

/* Button Reset */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Input Reset */
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* Image Reset */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* SVG Reset */
svg {
    display: block;
}
