/* Shared brand and semantic tokens */
:root {
  /* Brand colors */
  --color-bg: #fbf8f3;
  --color-surface: #fffdf9;
  --color-surface-soft: #f2ece5;
  --color-surface-accent: #f8dfe1;
  --color-border: #d9d1c8;
  --color-border-strong: #bdb4aa;
  --color-text: #14243f;
  --color-muted: #737985;
  --color-accent: #ee4f5d;
  --color-accent-strong: #d9404e;
  --color-green: #2f6d63;
  --color-amber: #9b6b2f;
  --color-blue: #2f4c86;
  --color-teal: #0d8888;
  --color-hover: #f2ece5;

  /* Semantic aliases */
  --bg: var(--color-bg);
  --surface: var(--color-surface);
  --surface-soft: var(--color-surface-soft);
  --surface-accent: var(--color-surface-accent);
  --border: var(--color-border);
  --border-strong: var(--color-border-strong);
  --text: var(--color-text);
  --muted: var(--color-muted);
  --text-muted: var(--color-muted);
  --accent: var(--color-accent);
  --accent-h: var(--color-accent-strong);
  --coral: var(--color-accent);
  --primary: var(--color-accent);
  --green: var(--color-green);
  --success: var(--color-green);
  --amber: var(--color-amber);
  --red: var(--color-accent-strong);
  --danger: var(--color-accent-strong);
  --blue: var(--color-blue);
  --teal: var(--color-teal);
  --hover: var(--color-hover);

  /* Typography */
  --font-sans: Inter, "Segoe UI", system-ui, sans-serif;
  --font-brand-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Spacing scale */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-10: 40px;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --radius: var(--radius-xs);

  /* Shadows */
  --shadow-sm: 0 10px 30px rgba(20, 36, 63, 0.06);
  --shadow-md: 0 18px 50px rgba(20, 36, 63, 0.1);
  --shadow-lg: 0 28px 70px rgba(20, 36, 63, 0.14);
  --shadow: var(--shadow-lg);

  /* Motion */
  --duration-fast: 160ms;
  --duration-base: 220ms;
  --duration-slow: 320ms;
  --ease-standard: ease;

  /* Breakpoints */
  --bp-xs: 480px;
  --bp-sm: 768px;
  --bp-md: 1024px;
  --bp-lg: 1280px;
}
