/* =====================================================
   LAYOUT – Seitenrahmen & Struktur
   ===================================================== */

/* -----------------------------------------------------
   Wrapper
   ----------------------------------------------------- */
.site-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md) var(--space-lg);
}

/* -----------------------------------------------------
   Header
   ----------------------------------------------------- */
header.site-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding-top: var(--space-xs);
}

/* Meta-Navigation */
.header-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.2rem;
  font-size: 0.85rem;
  margin: 0.5rem 0 1.8rem;
}

.header-meta a {
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Brand-Bereich */
.header-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-link {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-main);
}

.brand-link:hover {
  opacity: 0.8;
}


.header-signature {
  margin-top: var(--space-md);
}

.header-signature img {
  width: 60px;
  height: auto;
  opacity: 0.75;
}

/* -----------------------------------------------------
   Footer
   ----------------------------------------------------- */
footer.site-footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

footer.site-footer a {
  color: var(--text-muted);
  margin: 0 1ch;
}

footer.site-footer a:hover {
  text-decoration: underline;
}
