/* Design tokens — colors, typography, spacing, layout.
 * Source of truth: Design §9.1.
 *
 * Fonts are self-hosted (CSP font-src 'self' forbids the Google Fonts CDN).
 * woff2 files live at /vendor/fonts/ and were vendored from the @fontsource
 * packages — see package.json devDependencies.
 */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/vendor/fonts/playfair-display-latin-700-normal.woff2?v=28453852') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('/vendor/fonts/playfair-display-latin-600-italic.woff2?v=8176ed85') format('woff2');
}
@font-face {
  font-family: 'Crimson Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/vendor/fonts/crimson-text-latin-400-normal.woff2?v=538c7067') format('woff2');
}
@font-face {
  font-family: 'Crimson Text';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/vendor/fonts/crimson-text-latin-400-italic.woff2?v=ded83489') format('woff2');
}
@font-face {
  font-family: 'Crimson Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/vendor/fonts/crimson-text-latin-700-normal.woff2?v=60b9b964') format('woff2');
}

:root {
  /* Colors */
  --color-primary: #2c5f8d;
  --color-primary-soft: #4a7ca8;
  --color-accent: #d4a5a5;
  --color-bg: #fefcf8;
  --color-bg-soft: #f5f0e8;
  --color-surface: #ffffff;
  --color-text: #2a2a2a;
  --color-muted: #6b6b6b;
  --color-border: #e8e3db;
  --color-error: #b54b4b;
  --color-success: #4b7d5e;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Crimson Text', Georgia, 'Times New Roman', serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);

  /* Layout */
  --container-max: 1100px;
  --container-narrow: 720px;

  /* Motion */
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 200ms;
  --duration-medium: 400ms;
}
