:root {
    /* Colors */
    --black-deep: #0b0b0b;
    --black-matte: #111111;
    --black-soft: #1a1a1a;
    --black-panel: #141414;
    --gold-primary: #d4af37;
    --gold-light: #e5c04b;
    --gold-dark: #b8962e;
    --gold-muted: rgba(212, 175, 55, 0.15);
    --gold-glow: rgba(212, 175, 55, 0.08);
    --champagne: #f5e6c8;
    --ivory: #f5f0e1;
    --ivory-muted: rgba(245, 240, 225, 0.7);
    --ivory-dim: rgba(245, 240, 225, 0.4);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: 0.3s var(--ease-smooth);
    --transition-medium: 0.6s var(--ease-out);
    --transition-slow: 1s var(--ease-out);
    --transition-glacial: 1.5s var(--ease-in-out);

    /* Layout */
    --nav-height: 80px;
    --container-max: 1400px;
    --container-padding: 5vw;
}