/*
 * Generated theme tokens. Source: BACKEND/branding/
 * Regenerate with: python3 BACKEND/scripts/generate_theme_tokens.py --site-root <site-root>
 * Do NOT hand-edit. Edit brand-colors.md / typography.md and regenerate.
 */

:root {
  /* Named tokens (from brand-colors.md) */
  --parchment: #F2EAD7;
  --ink-black: #1A1410;
  --seal-vermillion: #C42420;
  --ivory: #FBF6EA;
  --aged-paper: #E8DDC2;
  --rule: #C9B998;
  --ink-soft: #4A3E33;
  --ink-mute: #8A7B6C;
  --seal-deep: #8E1A18;
  --soy-glaze: #3A2418;
  --soy-mid: #6B4226;
  --ochre: #B8862C;
  --jade: #4E6B3F;

  /* Role aliases (driven by Generator mapping section) */
  --bg:         #F2EAD7;
  --page:       #F2EAD7;
  --surface:    #FBF6EA;
  --surface-2:  #FBF6EA;
  --outer:      #FBF6EA;
  --text:       #1A1410;
  --muted:      #4A3E33;
  --line:       #C9B998;
  --brand:      #C42420;
  --brand-ink:  #FBF6EA;
  --accent:     #B8862C;

  /* Typography (from typography.md) */
  --f-display: "DM Serif Display", "Cormorant Garamond", Georgia, serif;
  --f-body:    "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --f-ui:      "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-cjk:     "Noto Serif SC", "Songti SC", "PingFang SC", serif;
  --f-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Spacing scale */
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --s8: 64px;
  --s9: 96px;
  --s10: 128px;

  /* Radii */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  /* Shadow + layout */
  --shadow:    0 1px 0 rgba(0, 0, 0, .04), 0 18px 40px -28px rgba(0, 0, 0, .35);
  --container: 1180px;
  --content:   720px;
}

/* Honour user motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
