/* =========================================================
   Sommerkino Braunschweig e.V.
   Design-Token: Open-Air-Sommernacht
   ========================================================= */

:root {
  /* Farben */
  --night:        #080c20;   /* tiefer Nachthimmel  */
  --night-2:      #0d1330;   /* Sektionen          */
  --panel:        #141a3a;   /* Karten             */
  --panel-line:   #283058;   /* Linien / Rahmen    */
  --amber:        #f6b53c;   /* Projektorlicht     */
  --coral:        #e35433;   /* glühender Horizont */
  --cream:        #f3ecdd;   /* Haupttext          */
  --muted:        #9aa2c4;   /* gedämpfter Text    */
  --muted-2:      #6f779d;   /* sehr dezent        */

  /* Schriften */
  --display: "Instrument Serif", Georgia, serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;

  /* Maße */
  --wrap: 1080px;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }

em { font-style: italic; }

::selection { background: var(--amber); color: var(--night); }

/* ---------- Fokus / Barrierefreiheit ---------- */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(8, 12, 32, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--panel-line);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  font-family: var(--display);
}
.nav__brand:hover { text-decoration: none; }

.nav__mark {
  color: var(--amber);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 8px var(--amber));
}

.nav__name {
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.01em;
}
.nav__city {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
}

.nav__links {
  display: flex;
  gap: 1.8rem;
}
.nav__links a {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.85;
}
.nav__links a:hover { color: var(--amber); opacity: 1; text-decoration: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem clamp(1rem, 5vw, 3rem) 7rem;
}

.hero__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 90% at 50% 0%, #11183c 0%, #0a0f28 45%, var(--night) 100%);
}

/* warmer Horizont-Glow */
.hero__glow {
  position: absolute;
  left: 50%;
  bottom: -42%;
  transform: translateX(-50%);
  width: 150%;
  height: 80%;
  background: radial-gradient(closest-side,
              rgba(227, 84, 51, 0.55) 0%,
              rgba(246, 181, 60, 0.28) 38%,
              rgba(246, 181, 60, 0.0) 72%);
  filter: blur(6px);
  pointer-events: none;
}

/* Mond */
.hero__moon {
  position: absolute;
  top: 14%;
  right: 12%;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #fff6e2, #f3d79a 60%, #e9c074);
  box-shadow: 0 0 60px 14px rgba(246, 181, 60, 0.35);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1.1rem;
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0 0 1.4rem;
}
.hero__title em {
  color: var(--amber);
  font-style: italic;
}

.hero__lead {
  font-size: clamp(1.05rem, 2.3vw, 1.28rem);
  color: var(--muted);
  max-width: 75ch;
  margin: 0 0 1.8rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}

.chip {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--panel-line);
  border-radius: 100px;
  color: var(--cream);
}
.chip--accent {
  background: var(--amber);
  color: var(--night);
  border-color: var(--amber);
  font-weight: 700;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--amber);
  font-size: 1.3rem;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* Sterne (per JS gesetzt) */
.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: 0.18; }
  50%      { opacity: 0.95; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-block;
  background: var(--amber);
  color: var(--night);
  font-family: var(--body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.7rem;
  border: 1px solid var(--amber);
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(246, 181, 60, 0.6);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--panel-line);
}
.btn--ghost:hover { border-color: var(--amber); box-shadow: none; }

/* =========================================================
   Sektionen allgemein
   ========================================================= */
.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 2rem);
}
.section--alt {
  max-width: none;
  background:
    linear-gradient(var(--night-2), var(--night-2));
}
.section--alt > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }

.section__head { margin-bottom: 2.6rem; }
.section__eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 0.7rem;
}
.section__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.05;
  margin: 0;
}
.section__intro {
  color: var(--muted);
  max-width: 80ch;
  margin: 1rem 0 0;
}

/* =========================================================
   Programm – Film-Akkordeon
   ========================================================= */
.films { border-top: 1px solid var(--panel-line); }

.film {
  border-bottom: 1px solid var(--panel-line);
}

.film__head {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--cream);
  padding: 1.5rem 0.4rem;
  font-family: inherit;
  transition: color 0.2s;
}
.film__head:hover { color: var(--amber); }

.film__no {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--amber);
  flex: 0 0 auto;
  min-width: 4.8em;
  padding-top: 0.6rem;
  letter-spacing: 0.02em;
}

.film__title {
  flex: 1 1 auto;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
  line-height: 1.1;
}
.film__year {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
  flex: 0 0 auto;
  padding-top: 0.5rem;
}

.film__icon {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  position: relative;
  margin-left: 0.4rem;
  align-self: center;
}
.film__icon::before,
.film__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 15px; height: 2px;
  background: var(--amber);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.film__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.film.is-open .film__icon::after { transform: translate(-50%, -50%) rotate(0); }

.film__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}


.film__inner {
  padding: 0 0.4rem 2rem 0;
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 2rem;
}

.film__facts { list-style: none; margin: 0; padding: 0; }
.film__facts li { margin-bottom: 1rem; }
.film__facts .lbl {
  display: block;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.2rem;
}
.film__facts .val {
  font-size: 1rem;
  color: var(--cream);
}
.film__facts .val--orig { font-style: italic; color: var(--muted); }

/* Jahr · FSK · Spielzeit nebeneinander */
.film__triple {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-bottom: 1rem;
}
.film__triple .lbl {
  display: block;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.2rem;
}
.film__triple .val { font-size: 1rem; color: var(--cream); }

.film__synopsis {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.film__synopsis .lbl {
  display: block;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.5rem;
}

/* =========================================================
   FAQ – Akkordeon (gleiche Logik)
   ========================================================= */
.faq { border-top: 1px solid var(--panel-line); }
.faq__item { border-bottom: 1px solid var(--panel-line); }

.faq__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--cream);
  font-family: var(--body);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  padding: 1.35rem 0.4rem;
  transition: color 0.2s;
}
.faq__head:hover { color: var(--amber); }

.faq__icon {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 2px;
  background: var(--amber);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }

.faq__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq__inner {
  padding: 0 2.4rem 1.6rem 0.4rem;
  color: var(--muted);
}
.faq__inner p { margin: 0 0 0.6rem; }
.faq__inner p:last-child { margin-bottom: 0; }

/* =========================================================
   Über uns
   ========================================================= */
.ueber {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.ueber__text p { color: var(--muted); margin: 0 0 1.1rem; }
.ueber__text .section__title { margin-bottom: 1.4rem; }

.ueber__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}
.ueber__facts li {
  border-left: 2px solid var(--amber);
  padding-left: 1rem;
}
.ueber__num {
  display: block;
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--cream);
}
.ueber__lbl {
  font-size: 0.9rem;
  color: var(--muted);
}

/* =========================================================
   Kontakt
   ========================================================= */
.kontakt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.kontakt__card {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  padding: 2rem;
}
.kontakt__card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
.kontakt__card p { margin: 0 0 0.8rem; color: var(--cream); }
.kontakt__hint { color: var(--muted); font-size: 0.95rem; }
.kontakt__social {
  display: flex;
  gap: 1rem;
  margin: 0.6rem 0 1rem;
}
.kontakt__social a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border: 1px solid var(--panel-line);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  color: var(--cream);
}
.kontakt__social a:hover { border-color: var(--amber); color: var(--amber); text-decoration: none; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  border-top: 1px solid var(--panel-line);
  background: var(--night);
}
.footer__brand {
  font-family: var(--display);
  font-size: 1.5rem;
  margin: 0 0 0.3rem;
}
.footer__tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1.6rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.footer__links a { color: var(--cream); font-size: 0.95rem; opacity: 0.85; }
.footer__links a:hover { color: var(--amber); opacity: 1; text-decoration: none; }
.footer__legal { color: var(--muted-2); font-size: 0.82rem; margin: 0 0 1.4rem; }
.footer__edit {
  background: none;
  border: 1px solid var(--panel-line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  cursor: pointer;
}
.footer__edit:hover { border-color: var(--amber); color: var(--amber); }

/* =========================================================
   Editor (Overlay)
   ========================================================= */
.editor {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(4, 6, 18, 0.8);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 2rem 1rem;
}
.editor[hidden] { display: none; }

.editor__panel {
  background: var(--night-2);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  max-width: 860px;
  width: 100%;
  padding: 1.8rem clamp(1rem, 4vw, 2.2rem) 2.2rem;
}
.editor__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.editor__bar h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.8rem;
  margin: 0;
}
.editor__close {
  background: none;
  border: 1px solid var(--panel-line);
  color: var(--cream);
  border-radius: 50%;
  width: 38px; height: 38px;
  cursor: pointer;
  font-size: 1rem;
}
.editor__close:hover { border-color: var(--amber); color: var(--amber); }

.editor__help {
  color: var(--muted);
  font-size: 0.95rem;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin: 0 0 1.6rem;
}
.editor__help code {
  font-family: var(--mono);
  font-size: 0.85em;
  color: var(--amber);
}

.editor__films { display: grid; gap: 1.4rem; }

.efilm {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 12px;
  padding: 1.3rem;
}
.efilm__title {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1rem;
}
.efield { margin-bottom: 0.9rem; }
.efield:last-child { margin-bottom: 0; }
.efield label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.efield input,
.efield textarea {
  width: 100%;
  background: var(--night);
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 0.6rem 0.75rem;
  resize: vertical;
}
.efield input:focus,
.efield textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.efield input[type="date"] { color-scheme: dark; }
.efield textarea { min-height: 110px; line-height: 1.55; }

.egrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.egrid3 { grid-template-columns: 1fr 1fr 1fr; }

.editor__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-top: 1.6rem;
}

.editor__export { margin-top: 1.6rem; }
.editor__export label {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.editor__export code { font-family: var(--mono); color: var(--amber); }
.editor__export textarea {
  width: 100%;
  min-height: 220px;
  background: var(--night);
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 0.9rem;
  margin-bottom: 0.8rem;
}
.editor__copied {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--amber);
  margin-left: 0.8rem;
}

/* =========================================================
   Top-Leiste, Spenden, Galerie, Sponsoren, Route
   ========================================================= */
.topbar {
  background: var(--night);
  border-bottom: 1px solid var(--panel-line);
  font-size: 0.78rem;
}
.topbar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem clamp(1rem, 4vw, 2.5rem);
}
.topbar__tag {
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.topbar__links { display: flex; gap: 1.3rem; }
.topbar__links a {
  color: var(--muted);
  font-weight: 500;
}
.topbar__links a:hover { color: var(--amber); text-decoration: none; }

/* Spenden-Button in der Navigation */
.nav__donate {
  background: var(--amber);
  color: var(--night) !important;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  opacity: 1 !important;
}
.nav__donate:hover {
  text-decoration: none;
  box-shadow: 0 8px 24px -10px rgba(246, 181, 60, 0.7);
}

/* Bildergalerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--night);
}
.gallery__item { margin: 0; overflow: hidden; }
.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.92);
}
.gallery__item img:hover { transform: scale(1.04); filter: saturate(1.1); }

/* Unterstützen */
.support { text-align: center; margin-bottom: 3rem; }
.support__btn { font-size: 1.05rem; padding: 0.95rem 2rem; }
.support__hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.9rem 0 0;
}

/* Sponsorentafel */
.sponsors {
  margin: 0;
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}
.sponsors img { display: block; width: 100%; height: auto; }
.sponsors figcaption {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--panel-line);
}

/* Route-Button im Kontakt */
.kontakt__route { margin-top: 1.2rem; }

/* =========================================================
   Unterseiten (Impressum, Archiv)
   ========================================================= */
.page {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 2rem) 5rem;
}
.page__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 2rem;
}
.page h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 2.4rem 0 0.8rem;
}
.page p { color: var(--muted); margin: 0 0 1rem; }
.page a { color: var(--amber); }
.page .placeholder {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.95em;
}
.page__back {
  display: inline-block;
  margin-bottom: 2rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.page__back:hover { color: var(--amber); text-decoration: none; }

/* Archiv */
.archive { display: grid; gap: 2.2rem; }
.archive__year {
  border-top: 1px solid var(--panel-line);
  padding-top: 1.4rem;
}
.archive__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.archive__y {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--amber);
}
.archive__note { color: var(--muted); font-size: 0.95rem; }
.archive__films {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.archive__films li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(40, 48, 88, 0.5);
}
.archive__films .d {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--amber);
  flex: 0 0 auto;
  min-width: 5.6em;
}
.archive__films .ti { color: var(--cream); font-weight: 600; }
.archive__films .ti--empty { color: var(--muted-2); font-weight: 400; }
.archive__films .yr { font-family: var(--mono); font-size: 0.8rem; color: var(--muted); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 760px) {
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 12, 32, 0.96);
    border-bottom: 1px solid var(--panel-line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav.is-open .nav__links { max-height: 320px; }
  .nav__links a {
    padding: 1rem clamp(1rem, 4vw, 2.5rem);
    border-top: 1px solid var(--panel-line);
  }
  .nav__toggle { display: flex; }

  .film__inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .film__year { display: none; }
  .ueber { grid-template-columns: 1fr; gap: 2.2rem; }
  .kontakt { grid-template-columns: 1fr; }
  .egrid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .topbar__tag { display: none; }
  .topbar__inner { justify-content: flex-end; }
}

/* Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .film__body, .faq__body { transition: none; }
}
