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

/* ─── CSS VARIABLES ─────────────────────────────────────────────────────── */
:root {
    --bg: #0e0d0b;
    --bg-2: #131210;
    --surface: #1c1a16;
    --surface-2: #232018;
    --accent: #c8924a;
    --accent-2: #e8b97a;
    --accent-dim: rgba(200, 146, 74, 0.12);
    --text: #f0ece3;
    --text-muted: #7a7060;
    --text-dim: #4a4538;
    --border: #2a271f;
    --border-2: #332f25;

    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-sans: "DM Sans", system-ui, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-inout: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ─── BASE HTML & BODY ──────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

body.touch-device {
    cursor: auto;
}

/* ─── SELECTION ─────────────────────────────────────────────────────────── */
::selection {
    background: var(--accent);
    color: var(--bg);
}

/* ─── TYPOGRAPHY HELPERS ────────────────────────────────────────────────── */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

/* ─── ACCESSIBILITY ────────────────────────────────────────────── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
