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

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    background: var(--bg);
    color: var(--ink);
    font-family: 'DM Sans', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

/* ── DESIGN TOKENS ────────────────────────────────── */
:root {
    --bg: #121212;
    --bg-soft: #1a1a1a;
    --bg-strip: #242424;
    --bg-muted: #2a2a2a;
    --surface-elevated: #232323;
    --surface-elevated-hover: #2c2c2c;
    --ink: #fff;
    --ink-soft: rgba(255, 255, 255, 0.72);
    --ink-mute: rgba(255, 255, 255, 0.45);
    --ink-faint: rgba(255, 255, 255, 0.30);
    --rule: rgba(255, 255, 255, 0.06);

    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans: 'DM Sans', system-ui, sans-serif;

    --section-py: clamp(80px, 12vh, 160px);
    --gutter: clamp(24px, 5vw, 52px);
    --maxw: 1280px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── SHARED PRIMITIVES ────────────────────────────── */
.section {
    padding: var(--section-py) var(--gutter);
}

.section__inner {
    max-width: var(--maxw);
    margin: 0 auto;
}

.eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.section-title em {
    font-style: italic;
    font-weight: 300;
}

/* Reveal animation utility — controller toggles `.is-in` */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-in {
    opacity: 1;
    transform: translateY(0);
}

/* ── MODULE STYLESHEETS (loaded by JS) ────────────── */
/* Each module registers its own <link> at runtime to keep concerns split. */
