:root {
  /* Brand palette (fixed) */
  --black: #0a0908ff;
  --jet-black: #22333bff;
  --white-smoke: #f2f4f3ff;
  --dusty-taupe: #a9927dff;
  --stone-brown: #5e503fff;

  /* Neutral support shades derived for contrast */
  --off-white: #faf9f7ff;
  --gray-200: #e4e2deff;
  --gray-400: #b8b3acff;
  --gray-600: #6f6a63ff;
  --gray-800: #201f1cff;

  /* Semantic roles */
  --bg-primary: var(--black);
  --bg-surface: var(--jet-black);
  --bg-surface-raised: #2b3d46ff;
  --text-primary: var(--white-smoke);
  --text-muted: var(--gray-400);
  --accent: var(--dusty-taupe);
  --accent-strong: var(--stone-brown);
  --border-subtle: #364952ff;

  /* Typography */
  --font-heading: 'Michroma', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.5rem;
  --fs-3xl: 3.5rem;
  --fs-4xl: 4.5rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.1;
  --lh-snug: 1.35;
  --lh-normal: 1.6;

  /* Spacing scale */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-full: 999px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(10, 9, 8, 0.25);
  --shadow-md: 0 8px 24px rgba(10, 9, 8, 0.35);
  --shadow-lg: 0 20px 48px rgba(10, 9, 8, 0.45);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur-base: 280ms;
  --dur-slow: 520ms;

  /* Layout */
  --container-max: 1180px;
  --header-h: 76px;
}
