/* ===== Design tokens — All Fur Love (Brisbane pet grooming) =====
   System-over-snowflake (playbook spine #5). One source of truth for brand. */
:root {
  /* Brand — warm coral action on deep teal; pale peach wash */
  --brand:        #EF5A3C;   /* primary action / accent (coral) */
  --brand-ink:    #134E57;   /* deep teal for headings + dark bands */
  --brand-tint:   #FFF1EC;   /* pale peach wash for section bg */

  /* Neutrals (warm-grey scale — readable, premium) */
  --ink:    #1a1a1a;   /* body text */
  --ink-2:  #555;      /* secondary text */
  --line:   #ece7e2;   /* hairlines */
  --paper:  #ffffff;
  --paper-2:#fbf8f5;   /* alt section bg */

  /* Type — real scale (1.25 minor-third), readable measure */
  --font-head: "Poppins", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --step--1: clamp(.83rem, .8rem + .2vw, .9rem);
  --step-0:  clamp(1rem, .96rem + .25vw, 1.125rem);
  --step-1:  clamp(1.25rem, 1.1rem + .6vw, 1.5rem);
  --step-2:  clamp(1.6rem, 1.3rem + 1.2vw, 2.1rem);
  --step-3:  clamp(2.1rem, 1.6rem + 2.2vw, 3.2rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.4rem);
  --measure: 64ch;

  /* Space — 8pt rhythm */
  --s1:.5rem; --s2:1rem; --s3:1.5rem; --s4:2rem; --s5:3rem; --s6:4.5rem; --s7:7rem;

  /* Radius / shadow / motion */
  --radius:16px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  --shadow-cta: 0 6px 18px color-mix(in srgb, var(--brand) 35%, transparent);
  --ease: cubic-bezier(.2,.7,.2,1);
}
@media (prefers-reduced-motion: reduce){ *{animation:none!important;transition:none!important;scroll-behavior:auto!important} }
