:root {
  /* ─── Colours ─────────────────────────────────────────── */
  --color-primary: #63062e;
  --color-primary-dark: #98a4f2;
  --color-secondary: #fafafa;
  --color-secondary-dark: #f0f0f0;

  --color-text-black: #1f1720;
  --color-text-white: #ffffff;
  --color-text-muted: #666;

  --color-bg-default: #fff;
  --color-bg-light: #fafafa;
  --color-bg-dark: #111;
  --color-bg-cream: #f9f8f3;
  --color-bg-muted: #f1f0e8;

  --color-border: #e0e0e0;
  --color-border-dark: #b9a9bb;
  --color-border-soft: rgba(31, 23, 32, 0.05);
  --color-border-faint: rgba(31, 23, 32, 0.1);
  --color-border-header-inverse: rgba(255, 255, 255, 0.12);

  --color-overlay-dark: rgba(31, 23, 32, 0.3);
  --color-overlay-heavy: rgba(31, 23, 32, 0.55);

  /* ─── Typography ──────────────────────────────────────── */
  --font-primary: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-secondary: "IBM Plex Sans", "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: var(--font-primary);
  --font-body: var(--font-secondary);

  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-md: 1.125rem;
  --font-lg: 1.25rem;
  --font-xl: 1.5rem;
  --font-2xl: 2rem;
  --font-3xl: 3rem;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --line-height-tight: 1.2;
  --line-height-base: 1.6;
  --line-height-loose: 1.8;

  /* ─── Spacing ─────────────────────────────────────────── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 6rem;
  --space-18: 8rem;

  /* ─── Layout ──────────────────────────────────────────── */
  --header-height: 100px;
  --top-bar-height: 33px;
  --drawer-mobile-logo-offset: calc(4rem + var(--space-4));

  /* ─── Borders & Radius ────────────────────────────────── */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.75rem;
  --radius-full: 9999px;

  /* ─── Shadows ─────────────────────────────────────────── */
  --shadow-sm: 0 1px 3px rgba(43, 15, 36, 0.08);
  --shadow-md: 0 6px 20px rgba(43, 15, 36, 0.12);

  /* ─── Transitions ─────────────────────────────────────── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* ─── Z-Index ─────────────────────────────────────────── */
  --z-base: 0;
  --z-raised: 10;
  --z-sticky: 1000;
  --z-overlay: 1100;
  --z-modal: 1200;
  --z-tooltip: 1300;
  --z-lightbox: 3000;
}
