/* ===========================================
   RESET.CSS — Base Reset + Accessibility
   =========================================== */

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

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

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #0a0a0a;
    color: #ffffff;
}

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

button {
    font: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

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

input,
select,
textarea {
    font: inherit;
    border: none;
    outline: none;
}

:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}
