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

body {
  font-family: 'Merriweather', serif;
  font-size: 18px;
  line-height: 1.9;
  color: #515151;
  background: #fff;
  padding: 3rem 1.5rem 3rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ── Header ── */
.header {
  text-align: center;
  margin-bottom: 3rem;
}

.avatar {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.4rem;
  filter: grayscale(20%);
}

.header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #6c6666;
  margin-bottom: 0.75rem;
}

.social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social a {
  color: #888;
  transition: color 0.15s;
}

.social a:hover {
  color: #333;
}

.social svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* ── Zones ── */
.zone {
  margin-bottom: 2.5rem;
}

.zone p {
  text-align: justify;
  hyphens: auto;
  color: #6c6666;
  margin-bottom: 1em;
}

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

/* ── Links ── */
a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s;
}

a:hover {
  text-decoration-color: #6c6666;
}

/* ── Footer ── */
footer {
  margin-top: 3rem;
  font-size: 0.75rem;
  color: #aaa;
  text-align: center;
}

.impressum {
  margin-top: 1.25rem;
}

.impressum summary {
  cursor: pointer;
  list-style: none;
  color: #bbb;
}

.impressum summary::-webkit-details-marker { display: none; }

.impressum summary:hover {
  color: #888;
}

.impressum-body {
  margin-top: 0.75rem;
  line-height: 1.8;
}

.impressum-body p {
  margin-bottom: 0.4em;
}
