/*
 * Cinema Atlas — shared global design tokens.
 *
 * These are the tokens whose value is identical on every page (the brand
 * palette). They were previously copy-pasted into the inline <style> :root of
 * all ~13 templates; centralizing them here makes a palette change a one-file
 * edit. Loaded from base.html before each page's inline styles.
 *
 * NOTE: per-page theme tokens (--gray-mid, --border, --bone-*, --cream-*,
 * --hairline*, --black-card, --black-soft, --border-strong) deliberately differ
 * between the dark pages (index/film/director) and the light pages, so they stay
 * in each template's :root and are NOT defined here.
 */
:root {
  --color-primary: #0F0F0F;
  --color-base: #E3DAC9;
  --color-accent: #C0392B;

  /* Aliases used interchangeably across templates — same resolved values. */
  --black: #0F0F0F;
  --off-white: #E3DAC9;
  --red: #C0392B;
}
