:root {
    /* Colors */
    --navy: #0d1b2a;
    --navy-mid: #162337;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-pale: #f5edd8;
    --ivory: #faf7f2;
    --ivory-dark: #f0ebe0;
    --text: #1a1a2e;
    --text-mid: #3d3d5c;
    --text-light: #7a7a9a;
    --white: #ffffff;
    --rule: rgba(201, 168, 76, 0.25);

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(13, 27, 42, 0.08);
    --shadow-md: 0 8px 32px rgba(13, 27, 42, 0.12);
    --shadow-lg: 0 24px 64px rgba(13, 27, 42, 0.18);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-section: 96px;

    /* Layout */
    --max-width: 1120px;
    --radius: 4px;
    --radius-lg: 8px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    /* Fonts */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --font-mono: 'DM Mono', monospace;
}