:root {
	/* Colors */
	--color-primary: #80001b;
	--color-secondary: #16324f;
	--color-accent: #f5b700;
	--color-surface: #ffffff;
	--color-muted: #666666;

	/* Typography */
	--font-sans: 'Gotham', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--font-serif: "Georgia", "Times New Roman", serif;
	--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--fs-100: 0.75rem;
	--fs-200: 0.875rem;
	--fs-300: 1rem;
	--fs-400: 1.125rem;
	--fs-500: 1.25rem;
	--fs-600: 1.5rem;
	--fs-700: 2rem;
	--fs-800: 2.5rem;

	/* Spacing */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.5rem;
	--space-6: 2rem;
	--space-8: 3rem;
	--space-10: 4rem;
}

body { font-family: var(--font-sans); }

/* --------------------------------------------------------------------------
   Smooth scrolling & anchor offsets
   -------------------------------------------------------------------------- */
html {
  --scroll-offset: 24px; /* base breathing room above scroll targets */
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Safety-net offset for any element used as an anchor target.
   JS may still override with scrollTo() for accordion coordination,
   but this covers plain hash navigation that bypasses JS entirely. */
[id] {
  scroll-margin-top: var(--scroll-offset);
}

/* When the Drupal admin toolbar is present, increase the offset */
.toolbar-fixed [id] {
  scroll-margin-top: calc(var(--scroll-offset) + 79px);
}


