/* =========================================================
   BARONET — Design tokens
   Warm, editorial, calm. Derived from the brand reference:
   warm off-white paper, charcoal ink, burnt-orange accent,
   soft beige cards, generous space, serif headlines.
   ========================================================= */

:root {
  /* ---- Color: named + purpose ---- */
  --color-paper: #F7F4EE;          /* page background */
  --color-paper-raised: #FFFFFF;   /* cards on top of paper when needed */
  --color-beige: #EFEAE0;          /* soft beige card fill */
  --color-beige-strong: #E6DFD1;   /* hover / active beige */
  --color-ink: #23262B;            /* headings, primary text */
  --color-ink-soft: #3A3D42;       /* secondary heading weight */
  --color-slate: #5B6470;          /* body copy, muted gray-blue */
  --color-slate-light: #838C97;    /* captions, meta text */
  --color-line: #DED7C7;           /* hairline borders */
  --color-line-strong: #C9C0AC;
  --color-accent: #C1611E;         /* burnt orange */
  --color-accent-dark: #9C4E17;    /* hover state */
  --color-accent-tint: #F3E3D3;    /* accent background wash */
  --color-accent-tint-soft: #F8ECE0;
  --color-navy: #1B2430;           /* dark sections (footer, org page) */
  --color-navy-soft: #26313F;
  --color-navy-line: #3A4657;
  --color-on-navy: #F3F1EA;
  --color-on-navy-muted: #AFB8C4;
  --color-success-bg: #E7F1E6;
  --color-success-text: #2E5C33;
  --color-error-bg: #FBEAE7;
  --color-error-text: #A23A25;
  --color-focus: #1D6FB8;          /* accessible focus ring, distinct from accent */

  /* ---- Typography ---- */
  --font-display: "Source Serif 4", "Iowan Old Style", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-2xs: 0.75rem;   /* 12 */
  --fs-xs: 0.8125rem;  /* 13 */
  --fs-sm: 0.9375rem;  /* 15 */
  --fs-base: 1.0625rem;/* 17 */
  --fs-md: 1.25rem;    /* 20 */
  --fs-lg: 1.5rem;     /* 24 */
  --fs-xl: 2rem;       /* 32 */
  --fs-2xl: 2.75rem;   /* 44 */
  --fs-3xl: 3.5rem;    /* 56 */
  --fs-4xl: 4.25rem;   /* 68 */

  --lh-tight: 1.08;
  --lh-snug: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* ---- Spacing scale (4px base) ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5rem;
  --space-11: 6.5rem;
  --space-12: 8rem;

  /* ---- Radius ---- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* ---- Shadow ---- */
  --shadow-sm: 0 1px 2px rgba(35, 38, 43, 0.06);
  --shadow-md: 0 8px 24px rgba(35, 38, 43, 0.08);
  --shadow-lg: 0 20px 48px rgba(35, 38, 43, 0.12);
  --shadow-focus: 0 0 0 3px rgba(29, 111, 184, 0.35);

  /* ---- Layout ---- */
  --container-max: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
  --border-thin: 1px solid var(--color-line);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur-fast: 150ms;
  --dur-med: 260ms;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
