/* Keltharon Unterseiten: gemeinsame Basis */
:root {
  --nacht: #0d1310;
  --grund: #131b16;
  --grund2: #1a2420;
  --knochen: #e9e3d3;
  --nebel: #a3afa3;
  --glut: #d99748;
  --linie: rgba(233, 227, 211, 0.14);
  --ok: #7fb387;
  --warn: #d9b348;
  --stopp: #c97b6e;
  --serif: "Iowan Old Style", "Palatino", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Seravek", "Segoe UI", system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
body {
  margin: 0; background: var(--nacht); color: var(--knochen);
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; text-wrap: balance; margin: 0; }
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--glut); outline-offset: 3px; border-radius: 2px; }
.shell { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Kopfmenü */
.top { border-bottom: 1px solid var(--linie); }
.top-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 68px;
  display: flex; align-items: center; gap: 26px;
}
.top-inner > a.logo { flex-shrink: 0; }
.top img.logo-bild { height: 44px; width: auto; }
.top nav { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.top nav a {
  text-decoration: none; color: var(--nebel); font-size: 0.93rem;
  transition: color 0.2s ease;
}
.top nav a:hover { color: var(--knochen); }
.top nav a.aktiv { color: var(--glut); }
.top nav a.pill {
  background: var(--glut); color: #1c1206; font-weight: 600;
  padding: 8px 18px; border-radius: 4px;
}
.top nav a.pill:hover { background: #e5a55c; }
@media (max-width: 720px) {
  .top-inner { height: auto; padding: 12px 16px; flex-wrap: wrap; gap: 12px; }
  .top nav { gap: 14px; margin-left: 0; flex-wrap: wrap; }
}

/* Seitenkopf */
header.kopf { padding: 64px 0 44px; }
header.kopf h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
header.kopf p { margin-top: 16px; color: var(--nebel); max-width: 62ch; }

/* Buttons */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 4px;
  background: var(--glut); color: #1c1206; font-weight: 600; text-decoration: none;
  border: none;
  transition: transform 0.15s ease, background 0.2s ease;
}
.btn:hover { background: #e5a55c; }
.btn:active { transform: translateY(1px); }

/* Footer */
footer {
  border-top: 1px solid var(--linie); margin-top: 88px; padding: 40px 0;
  color: var(--nebel); font-size: 0.9rem;
}
.foot { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.foot nav { display: flex; gap: 20px; flex-wrap: wrap; }
.foot a { color: var(--nebel); text-decoration: none; }
.foot a:hover { color: var(--knochen); }

/* Dialog / Lightbox */
dialog {
  border: 1px solid var(--linie); border-radius: 8px; padding: 0;
  background: var(--grund); color: var(--knochen); max-width: min(920px, 92vw);
}
dialog::backdrop { background: rgba(6, 9, 8, 0.82); }
.lb-img { max-height: 80vh; width: auto; max-width: 100%; margin: 0 auto; }
.lb-leiste { display: flex; justify-content: flex-end; padding: 12px 18px; }
.lb-leiste button {
  background: none; border: 1px solid var(--linie); border-radius: 4px;
  color: var(--knochen); padding: 6px 14px;
}
.lb-leiste button:hover { border-color: var(--knochen); }
