:root {
  --ink: #2b2622;
  --soft: #6b635c;
  --muted: #9a918a;
  --rose: #f4a8c4;
  --rose-deep: #e07ba0;
  --line: #ece5df;
  --cream: #fbf8f5;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.wrap {
  flex: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 28px 56px;
}
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 4.5vw, 2.3rem);
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--ink);
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.3rem;
  margin: 38px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  scroll-margin-top: 24px;
}
h3 {
  font-weight: 600;
  font-size: 1.02rem;
  margin: 22px 0 8px;
  color: var(--ink);
}
p { color: #4f483f; margin-bottom: 1em; }
ul, ol { margin: 0 0 1em 1.3em; color: #4f483f; }
li { margin-bottom: 0.4em; }
strong { font-weight: 600; color: var(--ink); }
a {
  color: var(--rose-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(224,123,160,0.35);
  transition: border-color .2s;
}
a:hover { border-color: var(--rose-deep); }
/* Inhaltsverzeichnis: dezente Links ohne Unterstrich */
nav ol a, ol li a { border-bottom: 0; color: var(--rose-deep); }
nav ol a:hover, ol li a:hover { text-decoration: underline; }
code {
  background: var(--cream);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.88em;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 20px;
  font-size: 0.92rem;
}
th, td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: #4f483f;
}
th { background: var(--cream); font-weight: 600; color: var(--ink); }
footer {
  border-top: 1px solid var(--line);
  padding: 26px 28px 40px;
  text-align: center;
}
.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-bottom: 14px;
}
.legal a {
  color: var(--muted);
  border-bottom: 0;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: color .2s;
}
.legal a:hover { color: var(--ink); }
.copy { color: var(--muted); font-size: 0.76rem; letter-spacing: 0.03em; }
@media (max-width: 480px) {
  .wrap { padding-top: 40px; }
}
