/* Design tokens, mirrored 1:1 from /brand/brand-tokens.json.
   Do not hardcode hex values in other stylesheets — reference these variables. */
:root {
  /* palette */
  --ink: #141416;
  --carbon: #0e0e10;
  --steel: #c9cdd2;
  --chrome-lo: #8a9099;
  --chrome-hi: #edeff2;
  --flame-yellow: #ffc01e;
  --flame-orange: #ff6a00;
  --flame-red: #e01e1e;
  --rim-red: #d32f2f;
  --kombi-navy: #182a5c;
  --kombi-blue: #2456c7;
  --paper: #ffffff;
  --off-white: #f5f6f8;
  --line: #e3e5e9;
  --success: #1e9e5a;
  --warn: #e08a00;
  --sold: #9aa0a6;

  /* semantic */
  --bg: var(--paper);
  --bg-alt: var(--off-white);
  --hero-bg: var(--carbon);
  --text: var(--ink);
  --text-muted: #5b616b;
  --accent: var(--flame-orange);
  --accent-strong: var(--flame-red);
  --cta: var(--success);
  --border: var(--line);

  /* typography */
  --font-display: 'Racing Sans One', 'Saira Condensed', system-ui, sans-serif;
  --font-heading: 'Saira Condensed', 'Barlow Semi Condensed', system-ui, sans-serif;
  --font-body: 'Barlow', 'Inter', system-ui, sans-serif;

  --h1: clamp(2.2rem, 6vw, 4rem);
  --h2: clamp(1.6rem, 3vw, 2.4rem);
  --body: 1rem;
  --small: 0.85rem;

  /* radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* shadow */
  --shadow-card: 0 1px 2px rgba(20, 20, 22, 0.06), 0 8px 24px rgba(20, 20, 22, 0.08);
  --shadow-hover: 0 6px 12px rgba(20, 20, 22, 0.1), 0 20px 40px rgba(20, 20, 22, 0.14);

  /* motifs */
  --flame-gradient: linear-gradient(90deg, #ffc01e, #ff6a00 55%, #e01e1e);
  --chrome-gradient: linear-gradient(180deg, #edeff2, #8a9099);

  /* space scale (4px base) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  --content-max: 1280px;
  --header-h: 72px;
}
