/* Legal pages (Impressum, Datenschutz) — uses blau1 theme variables */
:root {
  --charcoal: #1C1C1A;
  --stone: #6B6860;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --container: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 14px;
}

a { color: var(--waldgruen); text-decoration: underline; }
a:hover { color: var(--salbeigruen); }

.nav {
  background: var(--waldgruen);
  padding: 14px 28px;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo__img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--white);
  padding: 4px 8px;
}

.nav-logo__text {
  display: flex;
  align-items: stretch;
  gap: 7px;
  min-height: 38px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.nav-logo__word {
  line-height: 1;
  white-space: nowrap;
}

.nav-logo__word--top { align-self: flex-start; padding-top: 1px; }
.nav-logo__word--bottom { align-self: flex-end; padding-bottom: 1px; }

.nav-logo__sep {
  flex-shrink: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
  align-self: stretch;
  margin: 1px 0;
}

.nav-back {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.nav-back:hover { color: var(--white); }

.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 28px 64px;
}

.legal-wrap h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.2;
  color: var(--waldgruen);
}

.legal-wrap .intro {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 32px;
}

.legal-wrap h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--charcoal);
}

.legal-wrap p {
  margin-bottom: 12px;
  color: var(--stone);
  line-height: 1.7;
}

.legal-wrap p strong { color: var(--charcoal); font-weight: 600; }

.legal-footer {
  background: var(--waldgruen);
  color: rgba(255, 255, 255, 0.65);
  padding: 24px 28px;
  font-size: 11px;
}

.legal-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-footer a { color: rgba(255, 255, 255, 0.65); text-decoration: none; }
.legal-footer a:hover { color: var(--white); }
.legal-footer-links { display: flex; gap: 16px; }
