:root {
  /* Modern Primary Colors - Maroon & Accents */
  --primary-maroon: #800000;
  --primary-dark-red: #5A0000;
  --primary-light: #FEE2E2;
  
  --accent-gold: #D97706;             /* Premium Warm Gold */
  --accent-gold-hover: #B45309;
  --accent-glow: rgba(217, 119, 6, 0.4);
  
  /* Background & Canvas Colors */
  --white: #FFFFFF;
  --white-glass: rgba(255, 255, 255, 0.85);
  --white-glass-strong: rgba(255, 255, 255, 0.95);
  
  --light-gray: #F8FAFC;              /* Slate 50 */
  --medium-gray: #E2E8F0;             /* Slate 200 */
  --dark-gray: #475569;               /* Slate 600 */
  --charcoal: #0F172A;                /* Slate 900 */
  --charcoal-glass: rgba(15, 23, 42, 0.85);
  
  --text-dark: #0F172A;               /* Slate 900 */
  --text-light: #F8FAFC;              /* Slate 50 */
  --text-medium: #334155;             /* Slate 700 */
  --text-muted: #64748B;              /* Slate 500 */
  
  /* Semantic Colors */
  --success-green: #15803D;           /* Slate Green */
  --warning-yellow: #D97706;
  --error-red: #B91C1C;
  
  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --font-size-h1: 2.75rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.35rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  
  --line-height-body: 1.6;
  --line-height-heading: 1.25;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 5rem;
  
  /* Container Width */
  --container-max-width: 1280px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 15px var(--accent-glow);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  :root {
    --font-size-h1: 2.25rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.25rem;
    --spacing-2xl: 3rem;
  }
}
