:root {
  color-scheme: light;

  /* Colors — brand palette (pinned) */
  --color-primary: #18181b;
  --color-primary-soft: #2f2f35;
  --color-accent: #dc2626;
  --color-accent-dark: #b91c1c;
  --color-bg: #faf5ff;
  --color-bg-soft: #f4ecfa;
  --color-surface: #ffffff;
  --color-border: #e9e1f4;

  /* Tinted neutrals — never pure black/gray */
  --color-text: #1c1b18;
  --color-text-muted: #55524c;

  /* Accent tints */
  --color-accent-text: #b91c1c;
  --color-accent-soft: #fee2e2;
  --color-accent-light: #fecaca;
  --color-on-dark-muted: rgba(255, 255, 255, 0.78);

  /* Decorative pattern */
  --pattern-dot: rgba(220, 38, 38, 0.10);
  --pattern-dot-dark: rgba(255, 255, 255, 0.07);

  /* Shadows */
  --shadow-hard: 7px 7px 0 var(--color-primary);
  --shadow-hard-accent: 7px 7px 0 var(--color-accent);
  --shadow-soft: 0 14px 34px rgba(28, 27, 24, 0.10);

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

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

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 4rem;

  /* Layout */
  --max-width: 1080px;
  --nav-height: 72px;
}
