/* =========================================
   CSS RESET & BASE - Clean Foundation
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--rice-white);
    color: var(--text-gray);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--rice-white);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-amber);
    border-radius: 4px;
}

/* Selection */
::selection {
    background: var(--brand-amber);
    color: white;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.font-serif {
    font-family: 'Merriweather', Georgia, serif;
}

.text-center {
    text-align: center;
}

/* Utility classes */
.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

.italic {
    font-style: italic;
}