:root {
  --brand-50: #fef9ee;
  --brand-100: #fdf0d6;
  --brand-200: #faddaa;
  --brand-300: #f5c378;
  --brand-400: #eea44a;
  --brand-500: #e58a1f;
  --brand-600: #c96f18;
  --brand-700: #a85316;
  --brand-800: #8a4217;
  --brand-900: #713716;
  --bg: #f4efe6;
  --surface: #fff9ef;
  --surface-2: #d8c7ad;
  --surface-3: #f0e8d8;
  --border: #d8c7ad;
  --border-strong: #b8a68e;
  --border-focus: #e58a1f;
  --ink: #12100e;
  --ink-2: #263238;
  --ink-muted: #5a4e42;
  --ink-inverse: #fff9ef;
  --success: #4f5d50;
  --warning: #e58a1f;
  --danger: #b9412c;
  --info: #8db7c7;
  --r-xs: 6px;
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-pill: 999px;
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;
  --font-display: 'Fraunces', serif;
  --font-sans: 'Manrope', system-ui;
  --font-mono: 'JetBrains Mono', monospace;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;
  --fs-5xl: 3.5rem;
  --fs-6xl: 4.5rem;
  --lh-tight: 1.1;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --shadow-xs: 0 1px 2px rgba(18,16,14,0.05);
  --shadow-sm: 0 1px 3px rgba(18,16,14,0.1);
  --shadow: 0 2px 6px rgba(18,16,14,0.08);
  --shadow-md: 0 4px 12px rgba(18,16,14,0.1);
  --shadow-lg: 0 8px 24px rgba(18,16,14,0.12);
  --shadow-xl: 0 12px 40px rgba(18,16,14,0.15);
  --shadow-brand: 0 4px 12px rgba(229,138,31,0.2);
  --ease-out: cubic-bezier(0.22,1,0.36,1);
  --ease-in-out: cubic-bezier(0.4,0,0.2,1);
  --dur-fast: 150ms;
  --dur: 220ms;
  --dur-slow: 380ms;
  --ring: 0 0 0 3px color-mix(in oklab, var(--brand-500) 35%, transparent);
}
[data-theme="dark"] {
  --bg: #12100e;
  --surface: #1c1917;
  --surface-2: #263238;
  --surface-3: #1f2a2e;
  --border: #3a3a3a;
  --border-strong: #5a5a5a;
  --ink: #f4efe6;
  --ink-2: #e0d6c8;
  --ink-muted: #a09888;
  --ink-inverse: #12100e;
}