:root {
    /* Warm luxury palette — derived from brand logos */
    --color-primary: #c9a227;
    --color-primary-dark: #a8841a;
    --color-accent: #5b4ab8;
    --color-accent-light: #7c6fd4;
    --color-green: #3aaf6a;
    --color-gold: #d4af37;
    --color-gold-light: #e8c96a;
    --color-gold-dark: #9a7b1a;
    --color-black: #0d0d0f;
    --color-charcoal: #1a1814;
    --color-white: #ffffff;
    --color-cream: #f7f5f2;

    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #c9a227 50%, #a8841a 100%);
    --gradient-hero: linear-gradient(160deg, #faf8f5 0%, #f3efe8 45%, #ebe6dc 100%);
    --gradient-section: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
    --gradient-dark: linear-gradient(145deg, #1a1814 0%, #0d0d0f 100%);
    --gradient-footer: linear-gradient(180deg, #141210 0%, #0a0a0c 100%);
    --gradient-gold-line: linear-gradient(90deg, transparent, #d4af37, #e8c96a, #d4af37, transparent);
    --gradient-glow: radial-gradient(ellipse 70% 50% at 20% 0%, rgba(212, 175, 55, 0.06), transparent),
                     radial-gradient(ellipse 50% 40% at 80% 100%, rgba(91, 74, 184, 0.05), transparent);

    --bg-primary: #faf8f5;
    --bg-secondary: #f3efe8;
    --bg-tertiary: #ebe6dc;
    --bg-dark: var(--gradient-dark);
    --bg-glass: rgba(250, 248, 245, 0.92);

    --text-primary: #1a1814;
    --text-secondary: #5c574f;
    --text-muted: #6b655c;
    --text-light: #f5f3ef;
    --text-on-dark: rgba(245, 243, 239, 0.95);
    --text-on-dark-muted: rgba(245, 243, 239, 0.72);
    --text-on-gradient: #1a1814;

    --border-light: rgba(26, 24, 20, 0.1);
    --border-gold: rgba(212, 175, 55, 0.4);
    --border-dark: rgba(255, 255, 255, 0.08);

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 12px rgba(26, 24, 20, 0.06);
    --shadow-md: 0 12px 40px rgba(26, 24, 20, 0.1);
    --shadow-lg: 0 24px 64px rgba(26, 24, 20, 0.14);
    --shadow-gold: 0 8px 28px rgba(212, 175, 55, 0.25);
    --shadow-card: 0 4px 24px rgba(26, 24, 20, 0.07);

    --transition: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --header-height: 92px;
    --announcement-height: 38px;
}
