.legal-main {
  padding-top: 68px;
  min-height: 100svh;
  background: var(--color-bg);
}
.legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--sp-6);
}
.legal-header {
  border-bottom: 1px solid var(--color-divider);
  padding-bottom: var(--sp-8);
  margin-bottom: var(--sp-10);
}
.legal-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin: var(--sp-3) 0 var(--sp-4);
  line-height: 1.1;
}
.legal-meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-2);
  max-width: none;
}
.legal-meta-sub {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--sp-3);
  max-width: 65ch;
  line-height: 1.65;
}
.legal-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--color-border);
}
.legal-section h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin: var(--sp-5) 0 var(--sp-2);
}
.legal-section p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: var(--sp-3);
  max-width: 72ch;
}
.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin: var(--sp-3) 0 var(--sp-4) var(--sp-2);
}
.legal-section ul li {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.65;
  padding-left: var(--sp-5);
  position: relative;
  max-width: 68ch;
}
.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 600;
}
.legal-section a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .18s;
}
.legal-section a:hover {
  color: var(--color-gold-light);
}
.legal-highlight {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.legal-highlight p {
  margin-bottom: 0;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--sp-3);
  font-size: var(--text-sm);
}
.legal-table tr {
  border-bottom: 1px solid var(--color-divider);
}
.legal-table td {
  padding: var(--sp-3) var(--sp-4);
  color: var(--color-text-muted);
  vertical-align: top;
  max-width: none;
}
.legal-table td:first-child {
  color: var(--color-text-faint);
  font-weight: 500;
  white-space: nowrap;
  width: 160px;
}
.legal-footer-nav {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: var(--sp-16);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--color-divider);
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  margin-bottom: var(--sp-2);
}
.footer-legal-links a {
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color .18s;
}
.footer-legal-links a:hover {
  color: var(--color-gold);
}
.footer-legal-links span {
  color: var(--color-text-faint);
}
