/* ──────────────────── LEGAL PAGES ──────────────────── */
.legal {
  padding: 8rem 0 5rem;
  min-height: 80vh;
}

.legal .container {
  max-width: 50rem;
}

.legal__header {
  margin-bottom: 2.5rem;
}

.legal__title {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.legal__date {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
}

.legal__intro {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 1.25rem;
}

.legal__intro:last-of-type {
  margin-bottom: 3rem;
}

.legal__intro a {
  color: var(--green-600);
  transition: text-decoration 0.2s;
}

.legal__intro a:hover {
  text-decoration: underline;
}

.legal__section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.legal__section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal__section h2 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.legal__section h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal__section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 0.75rem;
}

.legal__section p:last-child {
  margin-bottom: 0;
}

.legal__section ul {
  list-style: none;
  margin: 0.75rem 0 1rem 0;
  padding: 0;
}

.legal__section ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 0.375rem;
}

.legal__section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.375rem;
  height: 0.375rem;
  background: var(--green-400);
  border-radius: 50%;
}

.legal__section a {
  color: var(--green-600);
  transition: text-decoration 0.2s;
}

.legal__section a:hover {
  text-decoration: underline;
}

.legal__section strong {
  color: var(--ink);
}

/* ──────────────────── RESPONSIVE ──────────────────── */
@media (max-width: 48em) {
  .legal__title { font-size: 2rem; }
}

@media (max-width: 30em) {
  .legal__title { font-size: 1.75rem; }
  .legal { padding: 7rem 0 3rem; }
}
