@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Colours */
  --navy: #1a2332;
  --navy-light: #2a3546;
  --navy-lighter: #3a4556;
  --gold: #d4a574;
  --gold-light: #e5c19a;
  --gold-dark: #b88b5a;
  --cream: #fafaf8;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --gray-lighter: #f3f4f6;
  --red: #d4183d;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border radius — minimal, nearly flat */
  --radius-sm: 2px;
  --radius: 3px;
  --radius-lg: 4px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 2px 8px rgba(0,0,0,0.10);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);

  /* Transitions */
  --transition: all 0.2s ease;
  --transition-slow: all 0.3s ease;
}
