/* ═══════════════════════════════════════
   CSS Custom Properties — shared across all pages
   ═══════════════════════════════════════ */

:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --surface-2: #1c1c1c;
    --surface-3: #242424;
    --text: #e8e4e0;
    --text-muted: #9a9590;
    --text-dim: #5e5a56;
    --accent: #c9a96e;
    --accent-soft: #b8934e;
    --accent-dim: #3d2e1a;
    --rose: #d4a0a0;
    --sage: #8a9e8a;
    --border: #262626;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-xl: 0 25px 70px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.5);
    --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-fast: 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}
