/* Design Tokens */
:root {
  /* Colors — aligned with ermes.com.sg main site */
  --color-primary: #222222;
  --color-primary-light: #444444;
  --color-primary-dark: #111111;
  --color-accent: #b8945f;
  --color-accent-light: #d4bf96;
  --color-accent-dark: #96743d;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f5;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-text-light: #999999;
  --color-white: #ffffff;
  --color-border: #e5e5e5;

  /* Typography — matching ermes.com.sg (Lato headings, Open Sans body) */
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Lato', 'Helvetica Neue', sans-serif;

  /* Font Sizes — fluid */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.5rem, 3.5vw, 2rem);
  --text-3xl: clamp(1.75rem, 4vw, 2.5rem);
  --text-4xl: clamp(2rem, 5vw, 3.25rem);
  --text-5xl: clamp(2.5rem, 6vw, 4rem);

  /* Spacing (8px base) */
  --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;
  --container-narrow: 800px;
  --container-padding: 1.5rem;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 50%;

  /* 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);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index */
  --z-nav: 100;
  --z-overlay: 200;
}
