/* KinshipQuest shared hardening stylesheet — net
   Single-source for site-wide global rules. Per-page inline CSS preserved;
   this sheet only ADDS global hardening (accent token, a11y, responsive img).
   Brand core KQ Blue #29ABE2 is locked. */
:root{
  --accent:#3E6CE0;        /* per-domain accent (focus ring) */
  --kq-core:#29ABE2;     /* locked brand blue */
}
img{max-width:100%;height:auto;}
*:focus-visible{outline:2px solid var(--accent);outline-offset:2px;border-radius:2px;}
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:0.001ms!important;animation-iteration-count:1!important;
    transition-duration:0.001ms!important;scroll-behavior:auto!important;
  }
}

/* KQ-FONT-SWAP — brand spec Fraunces/Inter/Newsreader (single-source) */
:root{
  --display:'Fraunces','Syne',sans-serif;
  --serif:'Newsreader','Instrument Serif',Georgia,serif;
  --sans:'Inter',system-ui,sans-serif;
}

/* KQ-LOGO — .net descriptor lockup (Academy) */
.nav-brand,.nav-logo{display:flex;align-items:center;gap:11px;text-decoration:none;flex-direction:row;}
.brand-logo{height:42px;width:auto;object-fit:contain;display:block;}
.brand-rule{width:1px;height:22px;background:rgba(255,255,255,0.22);}
.brand-desc{font-family:'Inter',system-ui,sans-serif;font-size:12px;font-weight:600;letter-spacing:0.3em;text-transform:uppercase;color:#3E6CE0;}
