/* Logo at top of legal pages */
.legal-logo {
  display: block;
  width: 180px;
  margin: 48px auto 0;
  position: relative;
  z-index: 10;
}
.legal-logo img { width: 100%; display: block; }

.legal-page {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 5rem;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: .5rem;
}

.legal-page p {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  margin-bottom: 1rem;
}

.legal-page ul,
.legal-page ol {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-page li {
  margin-bottom: .35rem;
}

.legal-page a {
  color: #a78bfa;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page .legal-note {
  margin-top: 3rem;
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Imprint two-column card layout */
.imprint-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.imprint-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 2rem 2.2rem;
}
.imprint-card h2 {
  margin-top: 0;
}
.imprint-card h2:not(:first-child) {
  margin-top: 1.8rem;
}
.imprint-card p:last-child {
  margin-bottom: 0;
}

/* Social icons row */
.imprint-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.imprint-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.imprint-socials a:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

@media (max-width: 600px) {
  .imprint-grid { grid-template-columns: 1fr; }
}
