/* ===== LEGAL PAGES ===== */

.legal-page {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 70vh;
}

.legal-header {
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 32px;
}

.legal-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 12px;
}

.legal-meta {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.legal-body {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-body h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-body p {
  margin-bottom: 16px;
}

.legal-body ul {
  margin: 0 0 16px 24px;
  padding: 0;
  list-style: disc;
}

.legal-body ul li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal-body a {
  color: #d4af37;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: #e8c84a;
}

.legal-body strong {
  color: rgba(255, 255, 255, 0.9);
}

.legal-copyright {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

/* Footer legal links row */
.footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #d4af37;
}

/* Adjust footer bottom for 3-column layout */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 640px) {
  .legal-page {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}
