/* Self-hosted Inter (latin subset only) — replaces the Google Fonts CDN link
   so this stylesheet no longer needs an external, non-SRI-able resource.
   Inter is a variable font: Google serves ONE physical file covering weights
   300–600 and reuses it across each font-weight declaration below — that's
   why all four @font-face blocks point at the same local file. This mirrors
   Google's own CSS structure exactly. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background: #f2ece8;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 1.7;
}
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.back-link {
  display: inline-block;
  font-size: 13px;
  color: #6b6560;
  text-decoration: none;
  margin-bottom: 2rem;
}
.back-link:hover { color: #1a1a1a; }
h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.updated {
  font-size: 12px;
  color: #9a9187;
  margin-bottom: 2.5rem;
}
h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}
p, li {
  color: #3a3530;
  margin-bottom: 0.75rem;
}
ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
li { margin-bottom: 0.4rem; }
strong { color: #1a1a1a; }
a { color: #4a7ec7; }
.contact-box {
  background: #fff;
  border: 1px solid #ddd7d2;
  border-radius: 4px;
  padding: 1.25rem;
  margin-top: 2rem;
}

/* formerly-inline styles */
.mb-04 { margin-bottom: 0.4rem; }
.mb-02 { margin-bottom: 0.2rem; }
.mb-0 { margin-bottom: 0; }
.legal-footer-link { margin-top: 2rem; font-size: 13px; }