/* Oxford Pies design tokens — brand: chunky charcoal logo, orange accent,
   cream paper. Fredoka headings echo the logo's rounded letterforms. */

:root {
  /* palette */
  --color-ink: #231f20;
  --color-ink-soft: #5a5250;
  --color-paper: #f6eddc;
  --color-card: #fffdf7;
  --color-line: #e3d5bc;
  --color-accent: #f68b1f;
  --color-accent-deep: #d96f00;
  --color-accent-soft: #fde9cf;
  --color-danger: #cf3a1e;
  --color-danger-soft: #fbe2da;
  --color-ok: #3c7d3f;
  --color-ok-soft: #e2efe0;

  /* board (light) surfaces */
  --board-bg: #f6eddc;
  --board-card: #fffdf7;
  --board-line: #231f20;
  --board-text: #231f20;

  /* type */
  --font-display: "Fredoka", "Avenir Next Rounded", "Arial Rounded MT Bold", sans-serif;
  --font-body: "Nunito", "Segoe UI", Arial, sans-serif;
  --text-base: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --text-lg: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  --text-title: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);

  /* rhythm */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;

  /* shape & depth — chunky like the logo */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --border-chunky: 2.5px solid var(--color-ink);
  --shadow-block: 0 4px 0 var(--color-ink);
  --shadow-block-sm: 0 3px 0 var(--color-ink);

  /* motion */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-pop: cubic-bezier(0.34, 1.4, 0.64, 1);
}
