/* LDC Express design tokens — consumed by every page. */

:root {
  /* Palette */
  --ink: #0d1b2a;
  --ink-soft: #2a3a4a;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --text-muted: #8c8c8c;

  --paper: #faf8f2;
  --paper-warm: #f4efe4;
  --white: #ffffff;

  --accent: #1b4332;
  --accent-bright: #2d6a4f;
  --accent-soft: #edf4ee;

  --warm: #e9c46a;
  --warm-soft: #fdf6e3;
  --warm-rule: #e8d9aa;

  --rule: #e4dfd2;
  --rule-dark: #d0c9b8;

  --danger: #b1372a;
  --danger-soft: #fdf0ee;

  /* Scale */
  --max: 1080px;
  --max-narrow: 720px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-sm: 4px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(13, 27, 42, 0.06);
  --shadow-md: 0 6px 20px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 14px 40px rgba(13, 27, 42, 0.12);
  --shadow-cta: 0 3px 12px rgba(27, 67, 50, 0.28);

  /* Typography */
  --font-serif: Georgia, 'Times New Roman', 'Iowan Old Style', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --transition: 0.18s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
