/* Tiny normalize / reset */

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

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

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote,
dl, dd, ol, ul {
    margin: 0;
}

ol, ul {
    padding: 0;
    list-style: none;
}

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

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

button {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}

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

iframe {
    border: 0;
    display: block;
    max-width: 100%;
}

/* Focus visible everywhere — never remove without replacement */
:focus-visible {
    outline: 3px solid var(--color-gold, #C9A961);
    outline-offset: 3px;
    border-radius: 2px;
}
