/* tokens.css - design tokens
   Site: sabinekleincharcoal.com
   Mood: dramatic, intimate, quiet, minimal, intriguing
   Palette: monochrome with warm earth undertones, no "real" colors

   Locked through v0.3 iteration. Edit values here to retheme the site.
*/

:root {
  /* ========== Color ========== */
  --color-bg: #F7F5F2;
  --color-bg-elev: #FFFFFF;

  --color-fg: #161412;
  --color-fg-muted: #5C5851;
  --color-fg-subtle: #8B857E;

  --color-border: #D9D3CB;
  --color-border-strong: #B5AEA5;

  --color-accent: #3F3D3A;
  --color-accent-fg: #FFFFFF;

  --color-status-available: var(--color-fg);
  --color-status-reserved: #8B6B2E;
  --color-status-sold: var(--color-fg-subtle);

  --color-danger: #8B3A2E;

  /* ========== Typography ========== */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: var(--font-sans);

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.875rem;
  --text-display: 3.5rem;

  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.6;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.08em;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;

  /* ========== Spacing (4pt grid) ========== */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --space-9: 8rem;

  /* ========== Radii ========== */
  --radius-none: 0;
  --radius-sm: 1px;
  --radius-md: 2px;

  /* ========== Shadows ========== */
  --shadow-sm: 0 1px 2px rgb(22 20 18 / 0.05);
  --shadow-md: 0 4px 16px rgb(22 20 18 / 0.06);

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

  /* ========== Layout ========== */
  --content-max: 1280px;
  --content-padding-x: var(--space-5);
}
