/* ============================================================
   RadiantOps · site base
   One source for every page. Components own their own rules:
   SiteNav (nav responsive), SiteFooter (footer form). Everything
   else is inline, per the design system. Page-specific rules
   (landing animations, report breakpoints) stay on their page.
   ============================================================ */

/* Ground */
body {
  margin: 0;
  background: #f9f6ee;
  color: #3a2e23;
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ink accents */
::selection {
  background: #dce9e5;
  color: #22615c;
}
a {
  color: #22615c;
  text-decoration: none;
}
a:hover {
  color: #2e7d77;
}

/* Shared responsive utility */
@media (max-width: 640px) {
  [data-mq="hide-sm"] {
    display: none !important;
  }
}
