:root {
  --bg: #FFFFFF; /* Verkehrsweiß */
  --text: #000000; /* Verkehrs­schwarz */
  --accent: #004225; /* British Racing Green */
  --font: 'Inter', sans-serif;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height:1.6;
}
.site-nav {
  display:flex; gap:1rem; padding:1rem;
  background: var(--bg);
  position:sticky; top:0;
  border-bottom:1px solid #eee;
}
.site-nav.transparent {
  background:transparent; border:none;
}
.site-nav a {
  text-decoration:none; font-weight:300; color:var(--text);
}
.hero-image img {
  width:100%; height:auto; display:block;
}
footer {
  text-align:center; padding:2rem 1rem;
  font-size:0.875rem; border-top:1px solid #eee;
}
footer a { color: var(--accent); text-decoration:none; }

.relic-hero {
  max-height: 100vh;
  max-width: 100%;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  }