/* ==========================================================================
   DESIGN TOKENS — Single source of truth for HyperMed Wellness theme
   ========================================================================== */

:root {
  /* ---- COLOR SYSTEM ---- */

  /* Primary palette — luxury gold */
  --color-primary: #c9a96e;
  --color-primary-light: #e2d1a8;
  --color-primary-dark: #a08339;

  /* Neutrals — clean white and black */
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f3;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-border: #e0e0e0;

  /* Dark palette — for dark sections */
  --color-dark: #111111;
  --color-dark-surface: #1a1a1a;
  --color-dark-border: rgba(201, 169, 110, 0.2);

  /* Accent */
  --color-accent: #d4af37;
  --color-accent-warm: #c9a96e;

  /* Functional */
  --color-success: #4a9e6b;
  --color-error: #c44a4a;

  /* ---- TYPOGRAPHY ---- */

  /* Option A — Editorial Luxury */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Work Sans', sans-serif;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.75rem;
  --text-4xl: 3.5rem;

  /* Line heights */
  --leading-tight: 1.15;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  /* ---- SPACING SYSTEM ---- */

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ---- SHADOWS ---- */

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px rgba(201, 169, 110, 0.15);

  /* ---- MOTION ---- */

  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;

  /* ---- LAYOUT ---- */

  --max-width: 1280px;
  --max-width-text: 72rem;
}
