:root {
  --bg: #17151a;
  --bg-card: #211e26;
  --text: #f2ede7;
  --muted: #b6afc4;
  --accent: #c9a769;
  --border: #322e3a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.brand span { color: var(--accent); }

main { max-width: 980px; margin: 0 auto; padding: 2.5rem 5%; }

.profile-head {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}

.profile-head img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-card);
}

.profile-head h1 {
  margin: 0 0 0.25rem;
  font-size: 2.25rem;
}

.profile-head .subtitle {
  color: var(--muted);
  margin: 0;
}

.badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.gallery figure {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #2a2732;
}

.gallery .locked::after {
  content: "Auf Anfrage weitere Bilder";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(23, 21, 26, 0.75);
  backdrop-filter: blur(2px);
}

.section-title {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin: 2.5rem 0 1rem;
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
}

table.data-table tr {
  border-bottom: 1px solid var(--border);
}

table.data-table th, table.data-table td {
  text-align: left;
  padding: 0.6rem 0;
  vertical-align: top;
}

table.data-table th {
  width: 40%;
  color: var(--muted);
  font-weight: 400;
}

.disclaimer {
  margin-top: 3rem;
  padding: 1rem;
  border: 1px dashed var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

footer.site-footer {
  margin-top: 3rem;
  padding: 1.5rem 5%;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}
