/* ─────────────────────────────────────────────────────────────
   BRAND TOKENS — the ONLY file you edit after brand guidelines
   are approved in Claude Design. Everything else reads these.
   ───────────────────────────────────────────────────────────── */
:root {
  /* Colour */
  --brand-primary:      #0B4F6C;   /* headers, primary buttons */
  --brand-primary-ink:  #FFFFFF;   /* text on primary */
  --brand-accent:       #F4A300;   /* CTA / call button */
  --brand-accent-ink:   #1A1A1A;
  --brand-ink:          #16202A;   /* body copy */
  --brand-ink-muted:    #5B6B78;
  --brand-surface:      #FFFFFF;
  --brand-surface-alt:  #F4F7F9;
  --brand-line:         #DFE7ED;
  --brand-success:      #1B7F4B;
  --brand-danger:       #C0392B;

  /* Type */
  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-h1: clamp(2rem, 5vw, 3.25rem);
  --fs-h2: clamp(1.5rem, 3.2vw, 2.25rem);
  --fs-h3: 1.25rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --lh-tight: 1.12;
  --lh-body: 1.6;
  --fw-normal: 400;
  --fw-bold: 700;
  --fw-black: 800;

  /* Space + shape */
  --space-1: .25rem; --space-2: .5rem;  --space-3: .75rem; --space-4: 1rem;
  --space-6: 1.5rem; --space-8: 2rem;   --space-12: 3rem;  --space-16: 4rem;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 8px 30px rgba(11,79,108,.10);
  --maxw: 1120px;
}
