/* My design system — design-system tokens. Generated mechanically from the
   onboarding brand form (no AI involved): every value below traces to a
   form input or a documented default. This file is the source of truth
   for the system's look — retune it here and see readme.md. */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201f1d;
  --color-accent: #b87a3d;
  --color-accent-2: #b67f49;
  --color-divider: color-mix(in srgb, #201f1d 16%, transparent);

  /* Tonal ramps — generated in OKLCH on one shared lightness scale, so the
     same step of any role matches the others in visual value. */
  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-neutral-800: #444141;
  --color-neutral-900: #2d2b2b;

  --color-accent-100: #fff3e8;
  --color-accent-200: #ffe2c9;
  --color-accent-300: #ffc896;
  --color-accent-400: #e7a86f;
  --color-accent-500: #c8894c;
  --color-accent-600: #a66b31;
  --color-accent-700: #82511e;
  --color-accent-800: #5d3913;
  --color-accent-900: #3c2610;

  --color-accent-2-100: #fff3e8;
  --color-accent-2-200: #ffe2c8;
  --color-accent-2-300: #fcc99b;
  --color-accent-2-400: #e2ab76;
  --color-accent-2-500: #c38b55;
  --color-accent-2-600: #a16e3a;
  --color-accent-2-700: #7e5326;
  --color-accent-2-800: #5b3a19;
  --color-accent-2-900: #3b2612;

  --font-heading: "Archivo", system-ui, sans-serif;
  --font-heading-weight: 800;
  --font-body: "Inter", system-ui, sans-serif;

  --space-1: 4.0px;
  --space-2: 8.0px;
  --space-3: 12.0px;
  --space-4: 16.0px;
  --space-6: 24.0px;
  --space-8: 32.0px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* Elevation — derived from the ground: soft ink-tinted shadows on a
     light theme, a hairline edge + ambient darkness on a dark one. */
  --shadow-sm: 0 1px 2px color-mix(in srgb, #2d2b2b 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2d2b2b 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2d2b2b 22%, transparent);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); }
