/* ── Legal Pages Stylesheet ─────────────────────────────────── */
.legal-page {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}

.legal-date {
  font-size: 14px;
  color: var(--text-muted);
}

.legal-content {
  max-width: 760px;
}

.legal-content section {
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 20px 0 12px;
  color: var(--text);
}

.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 6px 0 6px 24px;
  position: relative;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--gold);
  font-weight: 700;
}

.legal-content a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-content a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.legal-contact {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-top: 16px;
}

.legal-contact p {
  margin-bottom: 4px;
}

/* ── Simple Footer ─────────────────────────────────────────── */
.footer-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-simple p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-simple-links {
  display: flex;
  gap: 24px;
}

.footer-simple-links a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-simple-links a:hover {
  color: var(--gold);
}
