/* ==========================================================================
   SCOTT COUNTRY — Design Tokens
   Direction B "Specialist System" — approved 2026-08-04 (visual system)
   Basis: verified live palette family + visual-system.md
   Note: exact hex mapping confirmed at the Phase 5 screenshot capture; these
   are the verified live-family values. Do not add colors outside the family.
   ========================================================================== */

:root {
  /* --- Color: verified live theme family (scottcountry.co.uk) ---
     Header/announcement use Dawn color-scheme-4 = PURE BLACK #000000.
     Accent green #154734 (scheme-8), navy #023364 (scheme-5), red #df1616 (scheme-7). */
  --bg-dark:        #000000;   /* header, announcement, hero, footer (scheme-4) */
  --bg-surface:     #FFFFFF;   /* product surfaces, cards, light sections */
  --bg-muted:       #F4F4F4;   /* section alt, card alt */
  --bg-card:        #FFFFFF;   /* card surface */
  --text-primary:   #121212;   /* body on light */
  --text-on-dark:   #FFFFFF;   /* body on dark */
  --text-secondary: #353535;   /* secondary text on light */
  --text-muted:     #6E6E80;   /* muted text */
  --text-nav:       rgba(255,255,255,.75);  /* nav link (live GM menu) */
  --text-nav-hover: #f6f1f1;   /* nav link hover (live GM menu) */
  --accent:         #154734;   /* dark green — CTAs, price, active nav (live #154734) */
  --accent-hover:   #1e4643;   /* accent hover */
  --accent-on-dark: #4e9a8f;   /* accent readable on dark surfaces */
  --navy:           #023364;   /* primary navy (live brand) — finance, selected */
  --link:           #154734;   /* link (live brand green family) */
  --sale:           #df1616;   /* sale badge / sale text (live scheme-7) */
  --finance:        #023364;   /* finance badge/link (eligible only) */
  --new:            #1e7a3c;   /* in-stock / new */
  --warning:        #b9770e;   /* backorder */
  --border:         rgba(18,18,18,.12);   /* hairlines, cards */
  --border-light:   rgba(18,18,18,.20);
  --border-on-dark: rgba(255,255,255,.15);

  /* --- Typography (live: body Roboto, headings "Montreal Serial") --- */
  --font-heading: "Montreal Serial", "Montserrat", "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --fs-xs: 0.75rem;    /* 12 */
  --fs-sm: 0.875rem;   /* 14 */
  --fs-base: 1rem;     /* 16 */
  --fs-lg: 1.125rem;   /* 18 */
  --fs-xl: 1.25rem;    /* 20 */
  --fs-2xl: 1.5rem;    /* 24 */
  --fs-3xl: 2rem;      /* 32 */
  --fs-4xl: 2.5rem;    /* 40 */
  --fs-5xl: 3rem;      /* 48 — hero display only */
  --fw-heading: 600;
  --fw-heading-display: 400;
  --fw-body: 400;
  --fw-body-bold: 700;
  --lh-tight: 1.15;
  --lh-body: 1.6;
  --measure: 65ch;

  /* --- Spacing / layout --- */
  --container: 1600px;      /* live Dawn page-width = 160rem */
  --gutter: 24px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --section-pad: 64px;
  --header-h: 96px;          /* header row height (300x78 sci-logo + .5rem pad) */

  /* --- Radii / borders / shadows --- */
  --radius-pill: 41px;   /* live button radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-card: 2rem;   /* live product-card corner radius (2.0rem) */
  --radius-media: 0;        /* edge-to-edge imagery (verified live) */
  --border-w: 1px;
  --shadow-card: 0 2px 10px rgba(18,18,18,.08);
  --shadow-drop: 0 10px 30px rgba(0,0,0,.18);

  /* --- Motion (live Dawn timing) --- */
  --dur-fast: .15s;
  --dur: .25s;
  --dur-slow: .4s;
  --ease: ease;
  --ease-out: cubic-bezier(.16,1,.3,1);
  /* Dawn scroll-trigger: slide-in = translateY(2rem) + stagger 75ms per order */
  --animation-slide-in: slideIn .7s cubic-bezier(.16,1,.3,1) forwards;
  --animation-fade-in: fadeIn .7s cubic-bezier(.16,1,.3,1) forwards;
  --animation-order-step: 75ms;
  /* Announcement slideshow duration (live) */
  --duration-announcement-bar: 250ms;

  /* --- Z-index --- */
  --z-header: 100;
  --z-drawer: 200;
  --z-overlay: 199;
}

/* Breakpoints: 640 / 1024 / 1280 */
