
 :root {
  --bg: #0f1a12;
  --card: rgba(255,255,255,.92);
  --text: #162015;
  --muted: #5d6b58;
  --accent: #d8a037;
  --green: #2f5d33;
  --shadow: 0 22px 60px rgba(0,0,0,.28);
  --radius: 28px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #f5f1e8;
  line-height: 1.6;
}
a { color: inherit; }
.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 32px 18px;
  background:
    linear-gradient(110deg, rgba(7,18,9,.82), rgba(7,18,9,.38) 48%, rgba(7,18,9,.72)),
    url("allgaeu-panorama.jpg") center / cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to bottom, transparent, #f5f1e8);
}
.hero-inner {
  width: min(1120px, 100%);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 34px;
  align-items: center;
}
.hero-copy { color: white; text-shadow: 0 2px 24px rgba(0,0,0,.42); }
.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
}
h1 {
  margin: 24px 0 18px;
  font-size: clamp(2.6rem, 7vw, 6.6rem);
  line-height: .94;
  letter-spacing: -0.06em;
}
.lead {
  max-width: 720px;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  color: rgba(255,255,255,.92);
  margin: 0 0 26px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.button {
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.button.primary { background: var(--accent); color: #1d1608; }
.button.secondary {
  background: rgba(255,255,255,.16);
  color: white;
  border: 1px solid rgba(255,255,255,.38);
}
.group-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.group-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}
.group-caption {
  padding: 14px 8px 4px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--green);
}
main {
  width: min(1120px, calc(100% - 36px));
  margin: -42px auto 70px;
  position: relative;
  z-index: 2;
}
section { margin-bottom: 28px; }
.intro {
  background: white;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 46px);
  box-shadow: 0 18px 50px rgba(40,52,34,.12);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #20331d;
}
.names { display: grid; gap: 10px; align-content: start; }
.name-pill {
  padding: 14px 16px;
  border-radius: 18px;
  background: #eef5e8;
  border: 1px solid #dce8d4;
  font-weight: 800;
  color: #274625;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.fact {
  background: #fff8e7;
  border: 1px solid #f0dfb3;
  border-radius: 20px;
  padding: 16px;
}
.fact strong { display: block; font-size: 1.5rem; color: #7b5311; }
.admin {
  background: #1e321e;
  color: white;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  display: block;
  box-shadow: var(--shadow);
  text-align: center;
}
.admin h2 { color: white; }
.entry-list {
  display: grid;
  gap: 14px;
  max-width: 700px;
  margin: 24px auto 0;
  text-align: left;
}
.entry {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  padding: 18px;
}
.entry small {
  color: #f1d68f;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.entry h3 { margin: 6px 0 6px; font-size: 1.3rem; }
.event-detail {
  background: white;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 46px);
  box-shadow: 0 18px 50px rgba(40,52,34,.12);
}
.event-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.tag {
  border-radius: 999px;
  padding: 8px 12px;
  background: #eef5e8;
  border: 1px solid #dce8d4;
  font-weight: 800;
  color: #274625;
  font-size: .92rem;
}
.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}
.note-box {
  background: #fff8e7;
  border: 1px solid #f0dfb3;
  border-radius: 22px;
  padding: 20px;
}
.note-box h3 { margin-top: 24px; color: #7b5311; }
.analysis-box { margin-top: 24px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.gallery a {
  display: block;
  background: #f1eee5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5dfd1;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
footer {
  text-align: center;
  color: var(--muted);
  padding: 36px 18px 50px;
}
@media (max-width: 820px) {
  .hero-inner, .intro { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .event-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  main { margin-top: -18px; }
}
@media (max-width: 520px) {
  .timeline { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-inner { padding: 34px 0 70px; }
}
