/**
 * tokens.css — design tokens for Hainan Fuxing
 * Aesthetic: bamboo boxes & cutlery — stalk greens, warm wood, natural fibre.
 * Two main colors (bamboo green + warm cream) + one accent (wood).
 */

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

:root {
  /* Brand palette — bamboo + warm neutrals */
  --color-primary: #4a7c59;
  --color-primary-dark: #3d6b4a;
  --color-primary-light: #6b9b76;
  --color-primary-pale: #e8f0ea;
  --color-accent: #8b7355;
  --color-accent-dark: #6f5a42;

  /* Neutral surface scale */
  --color-bg: #f7f4ef;
  --color-surface: #fdfcfa;
  --color-surface-alt: #f0ebe3;
  --color-border: rgba(74, 124, 89, 0.15);
  --color-border-subtle: rgba(74, 124, 89, 0.08);

  /* Text scale */
  --color-text: #2c2a26;
  --color-text-muted: #5c5a54;
  --color-text-inverse: #ffffff;

  /* Spacing scale */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;

  --leading-tight: 1.25;
  --leading-normal: 1.6;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(44, 42, 38, 0.06);
  --shadow-md: 0 6px 20px rgba(74, 124, 89, 0.12);
  --shadow-lg: 0 8px 24px rgba(44, 42, 38, 0.1);

  /* Transitions */
  --ease-default: 0.2s ease;
  --ease-bounce: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index */
  --z-base: 0;
  --z-raised: 10;
  --z-sticky: 100;
  --z-overlay: 1000;
}
