*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-ui);
    background-color: var(--bg-0);
    color: var(--text-0);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    color: var(--gold-1);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-0);
    line-height: 1.3;
}
.hidden {
    display: none !important;
}
.main-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
}