/* === CSS Custom Properties === */
:root {
  /* --- Primary (warm golds/ambers) --- */
  --color-gold: #d9933d;
  --color-gold-light: #f5b561;
  --color-amber: #d98b48;

  /* --- Dark Base (deep teal) --- */
  --color-teal-deep: #0d2426;
  --color-teal-mid: #1a3a3d;
  --color-teal-light: #264548;

  /* --- Earth Tones --- */
  --color-brown-dark: #733620;
  --color-brown-warm: #8c5d42;
  --color-tan: #bf8f65;

  /* --- Accent --- */
  --color-red: #d93636;
  --color-rose: #bf544b;
  --color-sky: #64bbf0;

  /* --- Neutrals --- */
  --color-off-white: #f5f0eb;
  --color-cream: #faf7f3;
  --color-text-light: #e8e0d6;
  --color-text-muted: #a89b8c;

  /* --- Typography --- */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- Font Sizes (1.25 scale from 16px) --- */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-md: 1.125rem; /* 18px */
  --text-lg: 1.25rem; /* 20px */
  --text-xl: 1.5rem; /* 24px */
  --text-2xl: 1.875rem; /* 30px */
  --text-3xl: 2.25rem; /* 36px */
  --text-4xl: 3rem; /* 48px */
  --text-5xl: 4.5rem; /* 72px */

  /* --- 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: 6rem;
  --space-5xl: 8rem;

  /* --- Layout --- */
  --container-max: 1200px;
  --header-height: 72px;

  /* --- Borders & Radius --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}
