:root {
  /* Brand Colors */
  --primary-dark: #0F172A;
  --gold-accent: #D4AF37;
  --gold-accent-hover: #b8973b;
  --off-white: #F8FAFC;
  --text-dark: #0F172A;
  --text-gray: #475569;
  --light-bg: #E2E8F0;
  --section-accent: #1E293B;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-quote: 'Cormorant Garamond', serif;

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

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.12);
  --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

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

}
