/* EH Productions — Medien-Galerie (Fotos, Reels, Film) + Hero-Video. Additiv. */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery__item { position: relative; padding: 0; border: 1px solid var(--line); cursor: pointer;
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1; background: var(--bg-2); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(10,20,22,.82), rgba(10,20,22,0) 52%); }
.gallery__tag { position: absolute; left: 10px; bottom: 9px; z-index: 1; pointer-events: none;
  font: 700 .68rem/1 "Manrope", sans-serif; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

.reels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reel { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 9 / 16; background: #000; box-shadow: var(--shadow); border: 1px solid var(--line); }
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel__tag { position: absolute; left: 10px; top: 10px; z-index: 1; pointer-events: none;
  font: 700 .66rem/1 "Manrope", sans-serif; letter-spacing: .12em; text-transform: uppercase;
  color: var(--lime); background: rgba(6,14,15,.55); padding: 5px 8px; border-radius: 6px; backdrop-filter: blur(4px); }
@media (max-width: 900px) { .reels { grid-template-columns: repeat(2, 1fr); } }

.filmgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.film { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 9; background: #000; box-shadow: var(--shadow); border: 1px solid var(--line); }
.film video { width: 100%; height: 100%; object-fit: cover; }
.film__tag { position: absolute; left: 12px; top: 12px; z-index: 1; pointer-events: none;
  font: 700 .66rem/1 "Manrope", sans-serif; letter-spacing: .12em; text-transform: uppercase;
  color: var(--lime); background: rgba(6,14,15,.55); padding: 5px 9px; border-radius: 6px; backdrop-filter: blur(4px); }
@media (max-width: 700px) { .filmgrid { grid-template-columns: 1fr; } }

.lightbox { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(5,10,11,.93); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox__close { position: absolute; top: 16px; right: 22px; width: 44px; height: 44px; border: 0; cursor: pointer;
  border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 26px; line-height: 1; }

/* Hero-Hintergrundvideo (Startseite) — Standbild bleibt als Fallback darunter */
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__video + .hero__glow, .hero__media { z-index: 0; }
.hero .container { position: relative; z-index: 2; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to right, rgba(6,14,15,.78), rgba(6,14,15,.35) 60%, rgba(6,14,15,.55)); }
