/* ============================================================
   Legal.html — page-specific styles (Impressum & Datenschutz)
   Shared tokens, nav, fonts and helpers live in css/site.css.
   ============================================================ */

/* ── HEADER ────────────────────────────────────────────────────────── */
header.page-head {
  padding: 96px 56px 48px;
  max-width: 880px;
  margin: 0 auto;
}
header.page-head .eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rost);
  margin-bottom: 18px;
}
header.page-head h1 {
  font-family: 'Geologica', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--schwarzbraun);
  margin-bottom: 14px;
}
header.page-head h1 .accent {
  font-family: 'Geologica Cursive', sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--rost);
}
header.page-head p.lead {
  font-size: 17px;
  color: var(--erdbraun);
  max-width: 560px;
  line-height: 1.6;
}

/* ── SECTIONS ──────────────────────────────────────────────────────── */
main {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 56px 80px;
}
.section { padding: 56px 0; border-top: 1px solid var(--rosegrau); }
.section:first-child { border-top: none; padding-top: 0; }

.section .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warmgrau);
  margin-bottom: 12px;
}
.section h2 {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--schwarzbraun);
  margin-bottom: 8px;
}
.section h2 .accent {
  font-family: 'Geologica Cursive', sans-serif;
  font-weight: 300;
  color: var(--rost);
}
.section h3 {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--schwarzbraun);
  margin: 40px 0 12px;
  letter-spacing: -0.005em;
}
.section h4 {
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--schwarzbraun);
  margin: 28px 0 8px;
}
.section p, .section li {
  font-size: 15px;
  color: var(--erdbraun);
  line-height: 1.7;
  margin-bottom: 14px;
}
.section ul, .section ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.section ul li, .section ol li {
  margin-bottom: 6px;
}
.section a {
  color: var(--rost);
  text-decoration: underline;
  text-decoration-color: rgba(210,100,65,0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 200ms;
}
.section a:hover { text-decoration-color: var(--rost); }

/* Address card */
.address-card {
  background: var(--sand);
  border: 1px solid var(--rosegrau);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--schwarzbraun);
}
.address-card strong { font-weight: 700; color: var(--schwarzbraun); }
.address-card .row { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 4px 0; }
.address-card .row .k { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warmgrau); align-self: center; }

/* Highlight box for placeholders */
.placeholder {
  display: inline-block;
  padding: 1px 8px;
  background: rgba(205,155,80,0.18);
  border-radius: 4px;
  color: var(--lehm);
  font-weight: 600;
  font-size: 0.95em;
  letter-spacing: 0.02em;
}

/* ── FOOTER ────────────────────────────────────────────────────────── */
footer.legal-footer {
  background: var(--naturgruen);
  padding: 48px 56px;
  text-align: center;
  color: rgba(254,250,240,0.7);
}
footer.legal-footer a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
}
footer.legal-footer a:hover { text-decoration: underline; }
footer.legal-footer .footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 14px;
}
footer.legal-footer .copy {
  font-size: 12px;
  color: rgba(254,250,240,0.45);
}

@media (max-width: 720px) {
  nav.topnav, header.page-head, main { padding-left: 24px; padding-right: 24px; }
  .address-card .row { grid-template-columns: 1fr; gap: 0; }
}
