/* Legal pages — Impressum / Datenschutz */
.legal-page { background: var(--creme); color: var(--ink); }

.legal-nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--gutter);
  background: rgba(247,243,234,.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,38,32,.08);
}
.legal-nav .nav__brand { color: var(--ink); }
.legal-back { font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft); transition: color .3s; }
.legal-back:hover { color: var(--dark); }

.legal {
  max-width: 760px; margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) 5rem;
}
.legal .eyebrow { margin-bottom: 1.2rem; }
.legal__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.5rem); line-height: 1; letter-spacing: -.01em;
  margin-bottom: 2rem;
}
.legal__hint {
  background: var(--beige); border-left: 3px solid var(--lemon);
  padding: 1rem 1.3rem; border-radius: var(--radius); font-size: .9rem;
  color: var(--ink-soft); margin-bottom: 3rem;
}
.legal section { margin-bottom: 2.6rem; }
.legal h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: .8rem; line-height: 1.1;
}
.legal p { color: var(--ink-soft); max-width: 62ch; }
.legal-list {
  list-style: none; margin: .9rem 0 0; padding: 0; max-width: 62ch;
  color: var(--ink-soft);
}
.legal-list li {
  position: relative; padding-left: 1.4rem; margin-bottom: .5rem;
  line-height: 1.5;
}
.legal-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lemon);
}
.legal-list + p { margin-top: 1.1rem; }
.legal a { color: var(--olive-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--dark); }

.legal-foot {
  display: flex; gap: 1.6rem; justify-content: center;
  padding: 2.5rem var(--gutter); border-top: 1px solid rgba(42,38,32,.1);
  font-size: .85rem;
}
.legal-foot a { color: var(--ink-soft); transition: color .3s; }
.legal-foot a:hover { color: var(--dark); }
