:root {
  --bg: #14140f;
  --bg-panel: #1d1c15;
  --text: #e7e2d3;
  --text-dim: #a39c86;
  --accent: #c8752c;
  --accent-dim: #6e4a24;
  --border: #34301f;
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

header.site-header {
  padding: 2rem 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

header.site-header h1 {
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.25rem;
}

header.site-header p.subtitle {
  color: var(--text-dim);
  margin: 0;
  font-style: italic;
}

nav.stations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

nav.stations a {
  color: var(--text-dim);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

nav.stations a:hover,
nav.stations a.active {
  color: var(--accent);
  border-color: var(--accent-dim);
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.intro {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

.intro h2 {
  margin-top: 0;
  font-family: var(--font-head);
}

.gallery-section {
  margin-bottom: 2.5rem;
}

.gallery-section h3 {
  font-family: var(--font-head);
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid figure {
  margin: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 2px;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  filter: saturate(0.9);
  transition: filter 0.2s, transform 0.3s;
  background: #000;
}

.gallery-grid img:hover,
.gallery-grid video:hover {
  filter: saturate(1.1);
  transform: scale(1.02);
}

.gallery-grid figcaption {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Lightbox */
dialog#lightbox {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 92vw;
  max-height: 92vh;
}

dialog#lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
}

dialog#lightbox img,
dialog#lightbox video {
  max-width: 92vw;
  max-height: 82vh;
  display: block;
  border: 1px solid var(--border);
}

.empty-hint {
  color: var(--text-dim);
  font-style: italic;
}

.route-map {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto 2.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.station-hero {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}

dialog#lightbox figcaption {
  color: var(--text-dim);
  text-align: center;
  padding-top: 0.5rem;
}

/* Zeitstrahl / Stationen */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline .stop {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline .stop .marker {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-align: right;
}

.timeline .stop .content {
  border-left: 2px solid var(--accent-dim);
  padding-left: 1rem;
}

footer.site-footer {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .timeline .stop { grid-template-columns: 1fr; }
  .timeline .stop .marker { text-align: left; }
}
