/* Design tokens, set from the matched template's taxonomy.json (tmpl_bb12,
   "Barber" - vintage American barbershop: deep maroon-brown + tan duotone,
   script headline over a photographic hero, hairline borders, sharp
   corners, boxed 1170px layout). */

:root {
  /* anchors.palette */
  --color-bg: #ffffff;
  --color-surface: #fcf9f7;
  --color-ink: #151514;
  --color-muted: #9d9d9d;
  --color-accent: #552d25;
  --color-accent-2: #c98a6a;

  /* anchors.fonts - self-hosted/system-stack fallbacks only, no external
     font requests. Named fonts kept first in case locally installed. */
  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Open Sans", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-script: "Homemade Apple", "Segoe Script", "Bradley Hand", "Comic Sans MS", cursive;

  /* anchors.type_scale_ratio */
  --type-scale: 1.333;
  --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: 0px;
  --shadow: 0 1px 3px rgba(21, 21, 20, 0.10);
  --border: 1px solid rgba(21, 21, 20, 0.14);

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

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

  /* aesthetic.motion: 2/5 - restrained, deliberate, not energetic */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 180ms;
  --dur-med: 420ms;
  --dur-slow: 900ms;
}
