/* ============================================================
   Green Trade Hardwood — design tokens
   Premium editorial timber palette. Values are carried over
   verbatim from the original design system.
   ============================================================ */

:root {
  /* GTH palette in oklch */
  --forest: oklch(0.34 0.06 153);          /* #1B3A2D deep forest green */
  --forest-deep: oklch(0.21 0.04 154);     /* #111F18 near black green */
  --amber-timber: oklch(0.68 0.13 70);     /* #C8860A amber/timber honey */
  --cream: oklch(0.96 0.012 80);           /* #F5F0E8 off-white cream */
  --ink: oklch(0.2 0 0);                   /* #1A1A1A body */
  --mute: oklch(0.46 0.01 90);             /* #5A5A4A muted */

  --background: var(--cream);
  --foreground: var(--ink);
  --card: oklch(1 0 0);
  --card-foreground: var(--ink);
  --popover: oklch(1 0 0);
  --popover-foreground: var(--ink);
  --primary: var(--forest);
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.92 0.015 80);
  --secondary-foreground: var(--forest);
  --muted: oklch(0.92 0.012 80);
  --muted-foreground: var(--mute);
  --accent: var(--amber-timber);
  --accent-foreground: oklch(1 0 0);
  --destructive: oklch(0.55 0.2 27);
  --destructive-foreground: oklch(1 0 0);
  --border: oklch(0.88 0.012 80);
  --input: oklch(0.88 0.012 80);
  --ring: var(--amber-timber);
  --radius: 4px;

  --shadow-warm: 0 1px 2px oklch(0.34 0.06 153 / 0.06), 0 10px 30px -12px oklch(0.34 0.06 153 / 0.18);

  /* Typography */
  --font-serif: "Playfair Display", ui-serif, Georgia, serif;
  --font-sans: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;

  /* Radii */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;

  /* Semantic aliases (kept for parity with the original token names) */
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);

  --color-forest: var(--forest);
  --color-forest-deep: var(--forest-deep);
  --color-amber-timber: var(--amber-timber);
  --color-cream: var(--cream);
  --color-ink: var(--ink);
  --color-mute: var(--mute);

  /* Shared easing used by nav, cards, and micro-interactions */
  --ease-gth: cubic-bezier(0.2, 0.7, 0.2, 1);
}
