/* ═══ ALTE POST — Legal Pages (Impressum / Datenschutz) ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

:root {
  --linen: #F5F0E8;
  --bark:  #2C2418;
  --moss:  #4A5C3A;
  --terra: #B5622B;
  --stone: #8C8070;
  --mid:   #E8E3DB;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--bark);
  background: var(--linen);
  overflow-x: clip;
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
/* Lesetext schmal, aber linksbündig an der 1280er-Kante (fluchtet mit Logo + Startseite) */
.legal-eyebrow, h1.legal-title, .legal-updated, .legal-content { max-width: 760px; }

/* ─── Header ─── */
.legal-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,240,232,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(140,128,112,0.2);
}
.legal-header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.legal-logo { display: block; flex-shrink: 0; }
.legal-logo img { height: 40px; width: auto; display: block; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 15px; color: var(--bark); text-decoration: none;
  white-space: nowrap; transition: color 0.2s ease;
}
.legal-back:hover { color: var(--moss); }
.legal-back svg { width: 16px; height: 16px; }

/* ─── Content ─── */
main { padding: 64px 0 96px; }
@media (max-width: 600px) { main { padding: 44px 0 72px; } }

.legal-eyebrow {
  font-weight: 700; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 16px;
}
h1.legal-title {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(34px, 6vw, 56px); line-height: 1.0; letter-spacing: -0.02em;
  color: var(--bark); margin-bottom: 12px;
}
.legal-updated { font-size: 14px; color: var(--stone); margin-bottom: 48px; }

.legal-content h2 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  font-size: clamp(22px, 3vw, 28px); line-height: 1.15; color: var(--bark);
  margin: 56px 0 14px; padding-top: 24px; border-top: 1px solid rgba(140,128,112,0.25);
}
.legal-content h2:first-of-type { margin-top: 8px; }
.legal-content h3 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600;
  font-size: 19px; line-height: 1.25; color: var(--bark); margin: 30px 0 8px;
}
.legal-content p { margin-bottom: 16px; color: rgba(44,36,24,0.86); }
.legal-content ul { margin: 0 0 18px; padding-left: 22px; }
.legal-content li { margin-bottom: 6px; color: rgba(44,36,24,0.86); }
.legal-content a { color: var(--moss); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--terra); }
.legal-content strong { font-weight: 700; }
.legal-address { font-style: normal; line-height: 1.75; margin-bottom: 16px; }
.legal-callout {
  background: var(--mid); border-left: 3px solid var(--terra);
  border-radius: 4px; padding: 18px 22px; margin: 8px 0 18px;
}
.legal-callout p:last-child { margin-bottom: 0; }

/* ─── Footer ─── */
.legal-footer { background: var(--bark); color: var(--linen); padding: 56px 0 40px; margin-top: 40px; }
.legal-footer-logo img { height: 40px; width: auto; display: block; margin-bottom: 28px; }
.legal-footer-links { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 28px; }
.legal-footer-links a {
  font-size: 15px; color: rgba(245,240,232,0.8); text-decoration: none; transition: color 0.2s ease;
}
.legal-footer-links a:hover { color: var(--linen); }
.legal-footer-copy { font-size: 14px; color: rgba(245,240,232,0.5); }
