:root {
  /* Brand colors */
  --color-primary: #17324d;
  --color-primary-hover: #10263a;
  --color-action: #2f6b57;
  --color-action-hover: #255544;

  /* Surfaces and text */
  --color-page: #f7f5f0;
  --color-surface: #ffffff;
  --color-text: #19232d;
  --color-text-muted: #566573;
  --color-border: #d8e0e6;
  --color-info-surface: #eaf1f6;
  --color-option-surface: #edf4f0;

  /* Warnings */
  --color-caution: #995500;
  --color-caution-surface: #fff1d2;
  --color-danger: #a13d3d;
  --color-danger-surface: #fbeaea;

  /* Typography */
  --font-sans: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --font-size-body: 1.125rem;
  --font-size-body-mobile: 1.0625rem;
  --font-size-small: 0.9375rem;
  --font-size-meta: 0.875rem;
  --font-size-h1: clamp(2.125rem, 4vw, 2.75rem);
  --font-size-h2: clamp(1.6875rem, 3vw, 2rem);
  --font-size-h3: clamp(1.375rem, 2.4vw, 1.5rem);
  --line-height-body: 1.65;
  --line-height-heading: 1.2;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Layout */
  --container-width: 73.75rem;
  --text-width: 45rem;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;

  /* Shape and depth */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --border-width: 1px;
  --shadow-subtle: 0 2px 10px rgb(23 50 77 / 0.08);

  /* Interaction */
  --focus-ring: 0 0 0 3px rgb(47 107 87 / 0.28);
  --transition-fast: 160ms ease;
}

@media (max-width: 47.99rem) {
  :root {
    --font-size-body: var(--font-size-body-mobile);
    --space-8: 3rem;
    --space-10: 4rem;
  }
}
