/* ============================================================
   Salt Services Portal — design tokens copied from
   salt-services-usa.com/DESIGN.md + css/style.css. Rebranding or
   drift correction = re-sync this one block against that source.
   ============================================================ */
:root {
  --brand: #180f2f;
  --brand-soft: #2b1d52;
  --brand-deep: #0e081f;
  --ink: #201439;
  --body: #3d3357;
  --muted: #635a7d;
  --bg: #f5f3ed;
  --bg-alt: #ece9e0;
  --card-bone: #fbfaf6;
  --line: #ddd8cc;
  --accent: #e9a13b;
  --accent-hover: #f0b055;
  --on-brand: #eae7f4;
  --border-ondark: rgba(255, 255, 255, 0.08);
  --highlight-ondark: rgba(255, 255, 255, 0.06);

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-6: 1.5rem; --space-8: 2rem; --space-12: 3rem; --space-16: 4rem;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --shadow-1: 0 1px 3px rgba(24, 15, 47, 0.07), 0 1px 2px rgba(24, 15, 47, 0.05);
  --shadow-2: 0 10px 24px rgba(24, 15, 47, 0.10);
  --shadow-3: 0 20px 48px rgba(24, 15, 47, 0.16);

  --dur-fast: 150ms;
  --dur: 250ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --wrap: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Instrument Sans', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
}
img { max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: var(--ink); line-height: 1.15; margin: 0 0 0.6em;
  overflow-wrap: break-word;
}

a { color: var(--brand-soft); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@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;
  }
}
