/* ============================================================
   kwyd — legal pages (terms / privacy)
   Sans-serif reading layout, layered on top of styles.css.
   ============================================================ */

.legal-body { font-family: var(--sans); }

.legal-head {
  padding: clamp(150px, 22vw, 210px) 0 clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 6vw, 64px);
}
.legal-head h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.legal-head .updated {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--dim);
  margin-top: 18px;
}

.legal {
  max-width: 720px;
  padding-bottom: clamp(80px, 12vw, 140px);
}
.legal__intro {
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 8px;
}
.legal h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 52px;
  margin-bottom: 16px;
}
.legal h2 .n {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--coral);
  margin-right: 10px;
  vertical-align: 2px;
}
.legal h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  margin-top: 30px;
  margin-bottom: 10px;
}
.legal p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 1.1em;
}
.legal ul, .legal ol { margin: 0.4em 0 1.3em 1.3em; }
.legal li {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 0.5em;
  padding-left: 0.3em;
}
.legal li::marker { color: var(--dim); }
.legal a {
  color: var(--coral);
  border-bottom: 1px solid rgba(244, 148, 113, 0.3);
  transition: border-color 0.2s;
}
.legal a:hover { border-color: var(--coral); }
.legal strong { color: var(--text); font-weight: 600; }
