/* ============================================================
   BASE — Reset, typography, global element styles
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    user-select: none;
}

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

ul { list-style: none; }

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

/* ── Typography Hierarchy ─── */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.12em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.15;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    font-weight: 300;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: var(--space-sm);
    font-weight: 300;
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

h4 {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-weight: 400;
    line-height: 1.75;
}

.subtitle {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    font-family: var(--font-body);
}

.italic-accent {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    text-transform: none;
    letter-spacing: normal;
}

.line {
    height: 1px;
    width: 60px;
    background-color: var(--gold);
    margin: var(--space-md) 0;
}

/* ── Selection ─── */
::selection {
    background: var(--gold);
    color: var(--white);
}
