/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors */
  --color-navy: #1a2a4a;
  --color-navy-dark: #0f1b33;
  --color-navy-deeper: #0a1325;
  --color-gold: #c5a55a;
  --color-gold-light: #d4b96b;
  --color-gold-pale: #e8d5a0;
  --color-gold-dark: #a88c3f;
  --color-cream: #f5f1eb;
  --color-cream-dark: #ede7dd;
  --color-white: #ffffff;
  --color-light-gray: #f0ece6;
  --color-gray: #e0dbd3;
  --color-body: #333333;
  --color-muted: #666666;
  --color-border: #d5cfc5;

  /* Typography */
  --font-serif: 'Cinzel', 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-italic: 'Cormorant Garamond', 'Georgia', serif;

  /* Font Sizes */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.875rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.75rem;
  --fs-5xl: 3.25rem;
  --fs-6xl: 4rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 6rem;
  --space-6xl: 8rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 36px rgba(0,0,0,0.15);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}
