/* ============================================================
   legal.css — shared styles for all legal/policy pages
   ============================================================ */

.legal {
  padding: 48px clamp(24px, 5vw, 64px) 80px;
  width: 85%;
}

.legal__label {
  font-size: 11px;
   font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
  display: block;
}

.legal__heading {
  font-size: clamp(28px, 3.5vw, 44px);
   font-family: var(--font-display);
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.1;
}

.legal__meta {
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--color-muted);
  margin-bottom: 56px;
}

.legal__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal__section h2 {
  font-size: clamp(16px, 1.6vw, 19px);
   font-family: var(--font-display);
  color: var(--color-text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.legal__section p {
  font-size: clamp(14px, 1.3vw, 16px);
   font-family: var(--font-body);
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.legal__section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.legal__section ul li {
  font-size: clamp(14px, 1.3vw, 16px);
  font-family: var(--font-body);
  color: var(--color-muted);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.legal__section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.3);
}

.legal__section strong {
   font-family: var(--font-ui);
  color: var(--color-text);
}

.legal__section a {
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-display);
  position: relative;
}

.legal__section a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width 0.25s ease;
}

@media (min-width: 681px) {
  .legal__section a:hover::after {
    width: 100%;
  }
}

.legal__contact {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--color-divider);
  font-size: clamp(14px, 1.3vw, 16px);
   font-family: var(--font-body);
  color: var(--color-muted);
}

.legal__contact a {
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-display);
  position: relative;
}

.legal__contact a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width 0.25s ease;
}

@media (min-width: 681px) {
  .legal__contact a:hover::after {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .legal {
    width: 100%;
  }
}
