/* ==========================================================================
   Design Tokens — Serif Editorial
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  /* ── Warm Monochrome + Gold ──────────────────────────────────────────── */
  --background: #FAFAF8;
  --foreground: #1A1A1A;
  --muted: #F5F3F0;
  --muted-foreground: #6B6B6B;
  --accent: #B8860B;
  --accent-secondary: #D4A84B;
  --accent-muted: rgba(184, 134, 11, 0.06);
  --accent-foreground: #FFFFFF;
  --border: #E8E4DF;
  --border-hover: #D5CFC8;
  --card: #FFFFFF;
  --ring: #B8860B;

  --success: #2D6A4F;
  --error: #9B2226;

  /* ── Typography ──────────────────────────────────────────────────────── */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Editorial Type Scale */
  --text-hero: 4.5rem;
  /* 72px */
  --text-display: 2.5rem;
  /* 40px */
  --text-headline: 1.75rem;
  /* 28px */
  --text-title: 1.25rem;
  /* 20px */
  --text-body-lg: 1.125rem;
  /* 18px */
  --text-body: 1rem;
  /* 16px */
  --text-label: 0.875rem;
  /* 14px */
  --text-caption: 0.75rem;
  /* 12px */

  /* ── Spacing ─────────────────────────────────────────────────────────── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-44: 11rem;

  /* ── Layout ──────────────────────────────────────────────────────────── */
  --max-width: 1024px;
  /* Narrower for editorial reading comfort */

  /* ── Radii (Refined, not round) ──────────────────────────────────────── */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-full: 9999px;

  /* ── Transitions ─────────────────────────────────────────────────────── */
  --ease-out: ease-out;
  --duration: 200ms;

  /* ── Shadows (Very subtle) ───────────────────────────────────────────── */
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 26, 26, 0.06);
  --shadow-lg: 0 8px 24px rgba(26, 26, 26, 0.08);

  /* ── Animation control ───────────────────────────────────────────────── */
  --anim-duration: 1;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --anim-duration: 0;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}