/* ============================================================
   LEGAL.CSS — Privacy Policy & Terms of Service pages
   ============================================================ */

/* ================================================================
   LEGAL SECTION
   ================================================================ */
.legal-section {
  padding: 120px 0 100px;
  min-height: calc(100vh - 200px);
}

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

.legal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.legal-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.legal-updated {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 60px;
}

/* ---- Body Content ---- */
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-body p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(232, 240, 250, 0.75);
  line-height: 1.85;
}

.legal-body h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-top: 16px;
  letter-spacing: -0.01em;
}

.legal-body h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.legal-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}

.legal-body ul li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(232, 240, 250, 0.75);
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
}

.legal-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
}

.legal-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.legal-body a:hover {
  border-bottom-color: var(--accent);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a.active {
  color: var(--white);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 767px) {
  .legal-section {
    padding: 80px 0 80px;
  }

  .legal-updated {
    margin-bottom: 40px;
  }
}

@media (max-width: 599px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }

  .footer-links a {
    font-size: clamp(0.6rem, 2.5vw, 0.72rem);
    white-space: nowrap;
  }
}
