:root {
  --bg: #0d1117;
  --bg-soft: #131a22;
  --panel: #171f29;
  --text: #f3f5f7;
  --muted: #aab4c0;
  --accent: #2997ff;
  --accent-2: #76bfff;
  --line: rgba(255,255,255,.12);
  --radius: 22px;
  --shadow: 0 24px 60px rgba(0,0,0,.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(41,151,255,.15), transparent 35%),
    linear-gradient(180deg, #0b0f14, #0d1117);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.04em;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: .95rem;
}
.nav-links a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1.25rem;
  padding: .45rem .7rem;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  padding-block: 64px 90px;
}
.eyebrow, .section-kicker {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: .78rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: .91;
  letter-spacing: -.065em;
  margin-bottom: 24px;
}
h1 span { color: var(--accent); }
h2 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.045em;
  margin-bottom: 28px;
}
h3 {
  font-size: 1.45rem;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.roles {
  font-size: 1rem;
  font-weight: 700;
  color: #d8dee6;
  margin-bottom: 18px;
}
.hero-text, .lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}
.button {
  display: inline-block;
  margin-top: 18px;
  background: var(--accent);
  color: #07111c;
  font-weight: 800;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 999px;
}
.hero-photo {
  margin: 0;
  position: relative;
  height: min(68vh, 720px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-photo img { object-position: center 25%; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(0,0,0,.72));
  pointer-events: none;
}
.hero-photo figcaption {
  position: absolute;
  left: 26px; right: 26px; bottom: 22px;
  z-index: 2;
  font-weight: 750;
}
.road-line {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 35px;
  height: 2px;
  background: repeating-linear-gradient(90deg, transparent 0 70px, rgba(255,255,255,.22) 70px 135px);
  transform: rotate(-2deg);
}

.section { padding-block: 110px; }
.intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.intro-grid p { color: var(--muted); font-size: 1.12rem; }

.dark-panel {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  min-height: 470px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.card-image { height: 270px; }
.card-copy { padding: 26px; }
.card-copy p { color: var(--muted); margin-bottom: 0; }
.num {
  display: inline-block;
  margin-bottom: 12px;
  font-size: .78rem;
  color: var(--accent-2);
  font-weight: 800;
}
.text-card {
  justify-content: center;
  min-height: 470px;
  background:
    radial-gradient(circle at 70% 20%, rgba(41,151,255,.2), transparent 35%),
    var(--panel);
}
.game-icon { font-size: 6rem; padding: 24px 28px 0; }

.feature-image {
  margin: 0;
  position: relative;
  min-height: 580px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 52%, rgba(0,0,0,.82));
}
.feature-image figcaption {
  position: absolute;
  z-index: 2;
  left: 36px; right: 36px; bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-image figcaption strong { font-size: clamp(1.8rem, 4vw, 3.5rem); line-height: 1; }
.feature-image figcaption span { color: #dbe3eb; font-size: 1.08rem; }

.moments { background: #0a0e13; }
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.gallery figure {
  margin: 0;
  background: var(--panel);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery figure:not(.gallery-wide) img { height: 430px; }
.gallery-wide { grid-column: 1 / -1; }
.gallery-wide img { height: 560px; }
.gallery figcaption {
  padding: 16px 18px 18px;
  color: #d7dee6;
  font-size: .95rem;
}

.social-box {
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(41,151,255,.15), transparent 35%),
    var(--panel);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
}
.social-box h2 { margin-bottom: 12px; }
.social-box p { color: var(--muted); max-width: 650px; margin-bottom: 0; }
.social-links { display: flex; gap: 12px; }
.social-button {
  text-decoration: none;
  font-weight: 800;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.social-button.disabled { opacity: .45; pointer-events: none; }

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-inner {
  min-height: 100px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.footer p { margin: 0; }
.footer a { margin-left: 18px; text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 90px 20px;
}
.legal h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
.legal h2 { font-size: 1.45rem; margin: 38px 0 12px; }
.legal p, .legal li { color: var(--muted); }
.placeholder {
  border: 1px dashed rgba(255,255,255,.35);
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
}
.back { display: inline-block; margin-bottom: 40px; color: var(--accent-2); }

@media (max-width: 850px) {
  .shell { width: min(100% - 28px, 1160px); }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    z-index: 10;
    top: 70px; right: 14px;
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    min-width: 200px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(13,17,23,.97);
  }
  .nav-links.open { display: flex; }
  .hero { grid-template-columns: 1fr; gap: 34px; padding-top: 42px; }
  .hero-photo { height: 62vh; transform: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 14px; }
  .cards, .gallery { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: auto; }
  .gallery-wide img, .gallery figure:not(.gallery-wide) img { height: 420px; }
  .feature-image { min-height: 520px; }
  .social-box { grid-template-columns: 1fr; padding: 32px; }
  .social-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* Datenschutzfreundlicher, eigener Seitenaufruf-Zähler */
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-meta p { margin: 0; }
.visitor-counter {
  font-size: .9rem;
  color: var(--muted);
}
.visitor-counter strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.site-signature {
  margin-top: 3px !important;
  font-size: .78rem;
  color: var(--muted);
  opacity: .72;
}


/* Ruhiger Erinnerungsbereich */
.memorial {
  padding: 72px 20px;
}
.memorial-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 38px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}
.memorial-photo {
  width: 100%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.memorial-text {
  text-align: center;
}
.memorial-text h2 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}
.memorial-date {
  margin: 0 0 24px;
  color: var(--muted);
}
.memorial-text p {
  line-height: 1.75;
}
.memorial-missing {
  margin-top: 20px;
  font-size: 1.08rem;
}
@media (max-width: 720px) {
  .memorial {
    padding: 52px 16px;
  }
  .memorial-inner {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 26px;
  }
  .memorial-photo {
    max-width: 460px;
    margin: 0 auto;
  }
}

.memorial-signature {
  margin-top: 10px;
  font-size: .95rem;
  color: var(--muted);
  letter-spacing: .03em;
}
