/* ================================================
   LEGAL PAGES — Impressum, Datenschutz, AGB
   ================================================ */

.about-header {
  mix-blend-mode: normal;
  background: var(--bg-dark);
}

.legal-page {
  padding: 10rem 5vw 6rem;
  background: var(--bg-dark);
  min-height: 100vh;
}

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

.legal-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 3rem;
}

.legal-container h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-container h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--silver);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-container p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 1rem;
}

.legal-container ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}

.legal-container ul li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--silver);
  padding-left: 1.2rem;
  position: relative;
}

.legal-container ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.5;
}

.legal-note {
  margin-top: 3rem;
  font-style: italic;
  color: var(--text-muted) !important;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .legal-page {
    padding: 7rem 5vw 4rem;
  }

  .legal-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .legal-heading {
    font-size: 1.8rem;
  }

  .legal-container h2 {
    font-size: 1.15rem;
  }

  .legal-container p,
  .legal-container ul li {
    font-size: 0.9rem;
  }
}
