/* ── LEGAL PAGES (Impressum, Datenschutz) ── */
.legal-section {
  padding: var(--space-xl) 0;
}

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

.legal-block {
  margin-bottom: var(--space-lg);
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-block p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.8;
  max-width: none;
  margin-bottom: 0.75rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block a {
  color: var(--color-wood-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-block a:hover {
  color: var(--color-wood-dark);
}

.legal-block ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.legal-block ul li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
}

.legal-block ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-wood-light);
}

/* ── 404 ── */
.not-found-section {
  min-height: calc(100svh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) 0;
}

.not-found-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 300;
  line-height: 1;
  color: var(--color-border);
  display: block;
  margin-bottom: var(--space-sm);
}

.not-found-section h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.not-found-section p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 300;
  margin: 0 auto var(--space-md);
}
