/* 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 - PetHund cluster: lime-green / navy / coral */
  --color-bg: #ffffff;
  --color-surface: #f4f4f6;
  --color-ink: #1c2339;
  --color-muted: #5b5b5b;
  --color-accent: #98cb46;
  --color-accent-2: #f15e42;

  /* navy + tints, derived from ink, used for dark bands + text-on-accent */
  --color-navy: #1c2339;
  --color-navy-soft: #262d4a;
  --color-on-accent: #16321f;
  --color-on-dark: #f4f4f6;

  /* anchors.fonts: Changa (display) / Karla (body) - rounded geometric sans
     + grotesque sans. Loaded via Google Fonts link in index.html; robust
     system fallbacks below in case that fails to load. */
  --font-display: "Changa", "Poppins", ui-rounded, "Segoe UI", system-ui, sans-serif;
  --font-body: "Karla", -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;
  --radius-sm: 12px;
  --shadow: 0 10px 30px -12px rgba(28, 35, 57, 0.28);
  --shadow-soft: 0 6px 18px -10px rgba(28, 35, 57, 0.2);
  --border: none;

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

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

  /* motion */
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.5s;
  --dur-slow: 0.9s;
}
