/* Hallmark tokens — Billiab marketing site.
   Mirrors src/global.css / design.md 1:1 (stone/brass/paper ramp) so the
   marketing site and the app read as the same brand. Update both together. */

@media (prefers-color-scheme: light) { :root { color-scheme: light; } }
@media (prefers-color-scheme: dark)  { :root { color-scheme: dark; } }

:root {
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;

  --color-paper: #faf9f6;
  --color-surface: #ffffff;
  --color-rule: #e7e5dd;
  --color-ink: #1d1f1b;
  --color-muted: #57564c;
  --color-tertiary: #a19c8d;
  --color-accent: #257a4c;
  --color-accent-tint: #3e9a63;
  --color-focus: #257a4c;

  --space-3xs: 0.125rem;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 9rem;

  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.25rem;
  --text-lg: 1.5625rem;
  --text-xl: 1.9531rem;
  --text-2xl: 2.4414rem;
  --text-display: clamp(2.25rem, 4vw + 1rem, 3.4rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --dur-micro: 120ms;
  --dur-short: 220ms;
  --dur-long: 420ms;

  --page-max: 68rem;
  --page-gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-lg: 1rem;
  --radius-md: 0.6rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-paper: #131410;
    --color-surface: #1d1f1b;
    --color-rule: rgba(255, 255, 255, 0.1);
    --color-ink: #ffffff;
    --color-muted: #cbc7ba;
    --color-tertiary: #a19c8d;
    --color-accent: #74c091;
    --color-accent-tint: #74c091;
    --color-focus: #74c091;
  }
}
