/* ==========================================================
   RESET & BASE
   ========================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sl-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--sl-charcoal);
    background-color: var(--sl-cream);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: var(--sl-sage); }

ul, ol { list-style: none; }

button {
    font-family: var(--sl-font-body);
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: var(--sl-font-body);
    font-size: 14px;
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sl-font-display);
    font-weight: 500;
    line-height: 1.15;
    color: var(--sl-charcoal);
    letter-spacing: -0.01em;
}
