/**
 * Base styles — typography, layout, global
 */

.page-body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-light);
    background-color: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
.heading-display {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.heading-display--large {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.05;
}

.heading-display--medium {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
}

.heading-display--small {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.3;
}

.body-text {
    font-size: clamp(0.9375rem, 1.2vw, 1rem);
    line-height: 1.7;
    color: var(--text-muted);
}

.label-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Layout utilities */
.container {
    width: 100%;
    max-width: var(--max-content);
    margin-inline: auto;
    padding-inline: var(--space-xl);
}

.container--narrow {
    max-width: var(--max-text);
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

/* Selection */
::selection {
    background: var(--accent-gold);
    color: var(--bg-dark);
}
