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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Pretendard', 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 72px; /* Nav 헤더 높이만큼 여백 확보 */
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

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

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

::selection {
    background: var(--primary);
    color: white;
}
