/* Shared legal-page CSS — long-form prose styling.
   Loaded after the inline brand tokens; only adds prose typography. */

article.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--lo-black);
}
article.legal h1 {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 0 0 12px;
}
article.legal .updated {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lo-copper);
  margin: 0 0 56px;
}
article.legal h2 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin: 48px 0 16px;
}
article.legal h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  margin: 24px 0 8px;
}
article.legal p, article.legal ul, article.legal ol { margin: 0 0 16px; }
article.legal ul, article.legal ol { padding-left: 22px; }
article.legal li { margin-bottom: 6px; }
article.legal a {
  color: var(--lo-copper);
  border-bottom: 1px solid rgba(192,112,48,.35);
  transition: border-color .15s;
}
article.legal a:hover { border-bottom-color: var(--lo-copper); }
article.legal hr { border: none; border-top: 1px solid var(--lo-border); margin: 40px 0; }
article.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}
article.legal th, article.legal td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--lo-border);
  vertical-align: top;
}
article.legal th {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lo-copper);
  border-bottom: 1px solid var(--lo-black);
}
article.legal address {
  font-style: normal;
  background: var(--lo-stone);
  padding: 20px 24px;
  margin: 0 0 24px;
  border-left: 3px solid var(--lo-copper);
}
