/* Design tokens. Set these from a matched template's taxonomy.json
   (anchors.palette, anchors.fonts, anchors.type_scale_ratio,
   anchors.corner_radius_px, anchors.shadow_depth) as the first, cheap pass
   of styling a lead - real work happens in base.css and index.html after. */

:root {
  /* anchors.palette (matched cluster: classic old-school barbershop, dark hero / light body) */
  --color-bg: #ffffff;
  --color-surface: #f8f8f8;
  --color-ink: #333333;
  --color-muted: #999999;
  --color-accent: #bb8c4b;
  --color-accent-2: #222222;

  /* anchors.fonts - named but not linked to any CDN; system/serif fallbacks
     carry the look when the named family isn't installed locally. */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Open Sans", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* anchors.type_scale_ratio */
  --type-scale: 1.35;
  --font-size-base: 1rem;
  --font-size-h1: calc(var(--font-size-base) * var(--type-scale) * var(--type-scale) * var(--type-scale));
  --font-size-h2: calc(var(--font-size-base) * var(--type-scale) * var(--type-scale));
  --font-size-h3: calc(var(--font-size-base) * var(--type-scale));

  /* anchors.corner_radius_px / shadow_depth / border_style */
  --radius: 20px;
  --shadow: 0 8px 24px rgba(34, 34, 34, 0.10);
  --border: 1px solid rgba(153, 153, 153, 0.35);

  /* anchors.layout_width */
  --content-width: 1200px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
