/* variables.css — Hanko Ink design tokens */

:root {
  /* Palette */
  --ink: #1a1512;            /* warm near-black */
  --ink-2: #241d18;          /* raised dark surface */
  --paper: #f2ede3;          /* warm paper */
  --paper-2: #e9e2d4;        /* deeper paper */
  --vermilion: #ad2c14;      /* hanko seal red (AA for small text on paper) */
  --vermilion-deep: #8f2410;
  --vermilion-bright: #ff8a5c; /* vermilion tint for text on ink */
  --stone: #8a7d6d;          /* muted warm gray */
  --text-on-ink: #f2ede3;
  --text-on-paper: #2b241d;
  --muted-on-paper: #63584a;

  /* Type */
  --font-display: "Gambarino", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1.125rem;
  --space-4: 1.75rem;
  --space-5: 2.5rem;
  --space-6: 3.75rem;
  --space-7: 6rem;
  --space-8: 9rem;

  /* Container */
  --container: 74rem;
  --container-narrow: 58rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Type scale (fluid) */
  --fs-hero: clamp(2.75rem, 7vw, 5.5rem);
  --fs-h2: clamp(2rem, 4.5vw, 3.5rem);
  --fs-h3: clamp(1.35rem, 2.4vw, 1.75rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-label: 0.8rem;

  /* Radii */
  --radius: 0.75rem;
  --radius-lg: 1.25rem;

  /* Elevation */
  --shadow: 0 1px 2px rgba(26, 21, 18, 0.06), 0 12px 32px -12px rgba(26, 21, 18, 0.28);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;
}
