/* ============================================================
   M&S Tech Media — Design Tokens
   Editorial + Industrial + Print-led. Restrained neutral base
   with a single brand accent (royal blue) + sparse red punctuation.
   ============================================================ */
:root {
  /* Neutral foundation */
  --color-ink: #111111;
  --color-ink-soft: #1f1f1f;
  --color-text: #2a2a2a;
  --color-muted: #6b6b6b;
  --color-faint: #8a8a8a;

  --color-paper: #f5f2ec;      /* warm off-white canvas */
  --color-paper-2: #ede9e0;    /* deeper paper tone */
  --color-white: #ffffff;
  --color-border: #e3ded4;
  --color-border-strong: #cfc9bd;

  /* Brand */
  --color-accent: #1E22C9;      /* royal blue — primary */
  --color-accent-dark: #1418a0;
  --color-accent-tint: #eceefa; /* soft blue tint */
  --color-red: #FF3416;         /* brand red — sparse punctuation */

  /* Typography */
  --font-display: "DM Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", "DM Sans", system-ui, sans-serif;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-body: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-h3: 30px;
  --text-h2: 44px;
  --text-h1: 56px;
  --text-display: 76px;

  /* Spacing — 4px base */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  --space-40: 160px;

  /* Geometry — restrained, not everything rounded */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  /* Layout */
  --container: 1320px;
  --container-wide: 1480px;
  --header-h: 76px;

  --border: 1px solid var(--color-border);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.35s;
  --dur-slow: 0.6s;
}
