/* =========================================
   VIDEOPRODUKTION.CSS
   Seitenspezifische Styles – baut auf style.css auf.
   ========================================= */


/* =========================================
   GLOBALER OVERFLOW-SCHUTZ
   Verhindert horizontales Überlaufen aus dem Viewport.
   ========================================= */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

*,
*::before,
*::after {
  min-width: 0; /* wichtig für Flex/Grid-Kinder */
}


/* =========================================
   NAVBAR OVERRIDES – Gleiche Größen wie Startseite
   ========================================= */
header {
  background: #1f1a17 !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Logo-Bild: gleiche Größe wie auf der Startseite */
header .brand img {
  width: 68px;
  height: 68px;
}

/* Radiales Glühen um das runde Icon –
   Schattenfarbe passend zum warmen Braun der Navbar */
header .brand {
  position: relative;
  display: inline-block;
  line-height: 0;
}
header .brand::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(61, 48, 40, 0.7) 35%,
    rgba(61, 48, 40, 0.4) 55%,
    transparent 75%
  );
  z-index: -1;
  pointer-events: none;
}

/* Burger: passend zum größeren Logo */
header .nav-toggle {
  width: 38px;
  height: 28px;
}
header .nav-toggle::before { top: 0; }
header .nav-toggle span    { top: 13px; }
header .nav-toggle::after  { bottom: 0; }

/* Nav-Padding etwas großzügiger */
header nav {
  padding: 0.9rem 1.25rem;
}


/* =========================================
   DIAGONALES SYSTEM
   ========================================= */
:root {
  --diag: clamp(1.5rem, 3.5vw, 4.5rem);

  /* =========================================
     EINHEITLICHE HINTERGRUNDFARBE
     =========================================
     Alle Sektionen verwenden das gleiche tiefe
     Dunkelbraun – kein Grau-Braun-Wechsel mehr.
     --bg-deep = #1B1919 (CinematicShadow, aus
     dem Hero-Gradient). --bg wird auf denselben
     Wert gesetzt, damit vp-section und
     vp-section--deep identisch aussehen.
     ========================================= */
  --bg:      #1B1919;
  --bg-deep: #1B1919;
}


/* =========================================
   HERO – Unterseiten-Variante
   ========================================= */
.hero-sub {
  position: relative;
  overflow: hidden;
  /* Kein Section-Padding – direkt an die Navbar anschließen */
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;   /* override #hero { min-height: 100svh } */
  display: block !important;  /* override #hero { display: flex }      */
  /* Diagonaler Schnitt am unteren Rand */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--diag)), 0 100%);
  line-height: 0;
}

.hero-bg {
  position: relative;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.68) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 25, 25, 0.05) 0%,
    rgba(27, 25, 25, 0.45) 60%,
    rgba(27, 25, 25, 0.82) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: calc(var(--diag) + 1.5rem);
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0 1.5rem;
  max-width: var(--maxw);
  margin-inline: auto;
  line-height: normal;
  /* Sicherheitsabstand: kein Overflow */
  overflow: hidden;
}

/* „ASLAN FILMWERKSTATT" – kleine Zeile über dem Seitentitel */
.hero-label {
  font-family: var(--ff-base);
  font-weight: 400;
  font-size: clamp(0.65rem, 1.8vw, 0.9rem);
  letter-spacing: 1.125em;
  text-transform: uppercase;
  color: rgba(254, 249, 250, 0.65);
  margin: 0 0 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* „VIDEOPRODUKTION" – Seitentitel, sicher skaliert */
.hero-content h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.0rem, 6vw, 4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
  margin: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow: hidden;
  max-width: 100%;
  word-break: break-word;
}

.hero-content h1.fade-in {
  animation: fadeInUp 1.2s ease forwards;
}

/* „Bewegte Bilder" – Claim in Satisfy */
.hero-claim {
  font-family: var(--ff-accent);
  font-weight: 400;
  font-size: clamp(1rem, 3.2vw, 1.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(254, 249, 250, 0.72);
  margin: 0.5rem 0 0;
  overflow: hidden;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0);    }
}


/* =========================================
   STICKY SUBNAV
   ========================================= */
.vp-subnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.vp-subnav::-webkit-scrollbar { display: none; }

.vp-subnav ul {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--maxw);
}
.vp-subnav a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-family: var(--ff-base);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(254, 249, 250, 0.38);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.vp-subnav a:hover,
.vp-subnav a:focus-visible { color: var(--text); }
.vp-subnav a[aria-current="true"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}


/* =========================================
   SEKTIONS-BASIS
   ========================================= */
.vp-section {
  position: relative;
  background: var(--bg);
  clip-path: polygon(0 var(--diag), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--diag));
  padding-top: calc(3.5rem + var(--diag));
  padding-bottom: 4.5rem;
  /* Overflow-Schutz */
  overflow: hidden;
  /* Scroll-Reveal */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.vp-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

.vp-section--deep { background: var(--bg-deep); }

.vp-section--banner {
  padding-top: calc(1.5rem + var(--diag));
  padding-bottom: 1.5rem;
}

.vp-section:last-child {
  padding-bottom: 5rem;
}


/* =========================================
   TRENNBAND
   ========================================= */
.vp-trenner {
  text-align: center;
  padding: 3rem 1.25rem 2.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 100%
  );
}

.trenner-titel {
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 5.5vw, 2.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: clamp(0.04em, 1.2vw, 0.35em);
  color: var(--text-warm);
  margin: 0 0 0.5rem;
  line-height: 1.15;
  hyphens: manual;
  overflow-wrap: break-word;
}

.trenner-sub {
  font-family: var(--ff-base);
  font-weight: 300;
  font-size: clamp(0.68rem, 1.5vw, 0.84rem);
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 0;
}


/* =========================================
   VP-INNER – Content-Wrapper
   ========================================= */
.vp-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.heading-rule {
  width: 3.5rem;
  height: 1px;
  background: var(--accent);
  margin: 0.65rem 0 1.1rem;
  opacity: 0.5;
}


/* =========================================
   STORY-FRAME
   =========================================
   Zeigt Showreel-Bilder vollständig in ihrer
   natürlichen Größe – kein Zuschneiden.
   Text-Overlay auf den dunklen Bildanteilen.
   ========================================= */
.story-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
  padding: 0;
}

/* Perforations-Streifen entfernt.
   Scrim-Varianten behalten ::after für Gradient-Vorhänge. */
.story-frame:not(.story-frame--scrim-right):not(.story-frame--scrim-left)::before,
.story-frame:not(.story-frame--scrim-right):not(.story-frame--scrim-left)::after {
  display: none;
}
.story-frame::before { top: 0; }
.story-frame::after  { bottom: 0; }

/* Hover-Zoom für [data-lightbox] Story-Frames */
.story-frame[data-lightbox] .sf-video,
.story-frame[data-lightbox] img {
  transition: transform 0.6s ease;
}
.story-frame[data-lightbox]:hover .sf-video,
.story-frame[data-lightbox]:hover img {
  transform: scale(1.015);
}
.story-frame[data-lightbox]:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

/* sf-video: Autoplay-Videos als Bild-Ersatz */
.sf-video {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  /* Verhindert transparentes Flackern nach Wiedergabeende */
  background-color: transparent;
  object-fit: unset;
}
/* Poster-Bild immer als Hintergrund vorhanden (Fallback) */
.story-frame:has(.sf-video) {
  /* bg ist bereits transparent - poster des Videos übernimmt */
}

/* Varianten */
.story-frame--wide {
  /* volle Breite des Containers */
}
.story-frame--portrait {
  /* Natürliches Hochformat-Bild – kein Erzwingen */
}

/* Caption / Text-Overlay auf dem dunklen Bildteil */
.story-frame__caption {
  position: absolute;
  z-index: 3;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  pointer-events: none;
}

/* Links unten – für Bilder mit dunklem linkem Bereich */
.story-frame__caption--left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 45%;
}

/* Unten links – für Bilder mit dunklem unterem Bereich */
.story-frame__caption--bottom-left {
  left: 0;
  bottom: 1.5rem;
  max-width: 60%;
}

/* Unten zentriert */
.story-frame__caption--bottom {
  left: 0;
  right: 0;
  bottom: 1.5rem;
  text-align: center;
  max-width: 100%;
  padding-inline: 1.5rem;
}

.story-frame__caption strong {
  font-family: var(--ff-head);
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1.2;
  display: block;
}

.caption-sub {
  font-family: var(--ff-base);
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}

/* Störer-Linie als dekoratives Element */
.stoerer-linie {
  display: block;
  width: 100%;
  max-width: 3rem;
  height: 1.5px;
  background: var(--accent);
  opacity: 0.7;
  margin-bottom: 0.25rem;
}
.story-frame__caption--bottom .stoerer-linie {
  margin-inline: auto;
}


/* =========================================
   MUSIKVIDEOS – Bildpaar nebeneinander
   ========================================= */
.mv-visual-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: start;
}
.mv-visual-pair .story-frame--portrait img {
  /* Portrait-Bilder natürliche Höhe */
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}
/* Bei sehr kleinen Screens übereinander */
@media (max-width: 479px) {
  .mv-visual-pair { grid-template-columns: 1fr; }
}


/* =========================================
   UNTERNEHMENSFILME – Sub-Sektionen
   =========================================
   Interviews, Produktvideos und Präsentation
   sind verschachtelte Blöcke innerhalb der
   Unternehmensfilme-Sektion.
   ========================================= */
.uf-sub {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  scroll-margin-top: 5rem;
}

/* Horizontale Trennlinie zwischen Sektionen */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 20%,
    var(--accent) 50%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent 100%
  );
  margin: 0.5rem 0;
}

/* Horizontale Trennlinie zwischen den Sub-Sektionen */
.uf-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 20%,
    var(--accent) 50%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent 100%
  );
  margin: 0.5rem 0;
}


/* =========================================
   PRODUKT-LAYOUT – Mobil vs. Tablet
   ========================================= */

/* --- Mobil: Titel oben, Videos nebeneinander, Text darunter --- */
.produkt-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-areas:
    "title  title"
    "vid5   vid6"
    "text   text";
  gap: 1rem;
  align-items: center;
}
.produkt-layout__title {
  grid-area: title;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-align: left;
}
.produkt-layout__title strong {
  font-family: var(--ff-head);
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1.2;
  display: block;
}
.produkt-layout__vid5 { grid-area: vid5; }
.produkt-layout__vid6 { grid-area: vid6; }
.produkt-layout__text { grid-area: text; }

/* Mobil: Caption-Overlay im Seite6-Video verstecken */
.produkt-layout__vid6 .story-frame__caption { display: none; }

/* Videos: beschnitten, Seite5 deutlich größer */
.produkt-layout__vid5 {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.produkt-layout__vid6 {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
/* Seite5: linke Bildhälfte zeigen */
.produkt-layout .produkt-layout__vid5 .sf-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}
/* Seite6: rechte Bildhälfte zeigen (Schuhe mittig) */
.produkt-layout .produkt-layout__vid6 .sf-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

/* --- Ab Tablet: Seite6 volle Breite, Seite5 + Text nebeneinander --- */
@media (min-width: 640px) {
  .produkt-layout {
    grid-template-columns: 55% 1fr;
    grid-template-areas:
      "vid6   vid6"
      "vid5   text";
    gap: 2rem;
  }
  /* Mobil-Titel verstecken */
  .produkt-layout__title { display: none; }
  /* Caption-Overlay wieder einblenden */
  .produkt-layout__vid6 .story-frame__caption { display: flex; }

  /* Seite6: volle Breite, natürliche Proportionen */
  .produkt-layout__vid6 {
    aspect-ratio: unset;
    overflow: hidden;
  }
  .produkt-layout__vid6 .sf-video {
    width: 100%;
    height: auto;
    object-fit: unset;
  }

  /* Seite5: links, Portrait-Format beschnitten */
  .produkt-layout__vid5 {
    aspect-ratio: 2 / 3;
  }
  .produkt-layout__vid5 .sf-video {
    object-position: 30% center;
  }

  /* Text rechts, vertikal zentriert */
  .produkt-layout__text {
    align-self: center;
  }
}


/* =========================================
   INTERVIEWS – Bildpaar für Kontext
   ========================================= */
.interview-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start; /* erstes Bild linksbündig */
}
/* erstes Kind: volle Breite des Textcontainers */
.interview-visual > .story-frame:first-child {
  width: 100%;
}
/* zweites Kind: etwas schmaler, aber nicht überhängend */
.interview-visual > .story-frame:last-child {
  width: 90%;
  align-self: flex-start;
}
@media (min-width: 640px) {
  .interview-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: start;
  }
  .interview-visual > .story-frame:last-child {
    width: 100%;
  }
}


/* =========================================
   YOUTUBE-EMBED
   ========================================= */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0a0a0a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================================
   FILMSTREIFEN-OPTIK (Legacy – .film-strip)
   Behalten für Kompatibilität
   ========================================= */
.film-strip {
  position: relative;
  margin: 0;
  background: #111;
  padding: 1.3rem 0.2rem;
  overflow: hidden;
  border-radius: var(--radius);
}
.film-strip::before,
.film-strip::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.2rem;
  z-index: 2;
  background: repeating-linear-gradient(
    90deg,
    transparent     0,
    transparent     0.3rem,
    #111 0.3rem,
    #111 0.6rem,
    transparent     0.6rem,
    transparent     0.95rem
  );
}
.film-strip::before { top: 0; }
.film-strip::after  { bottom: 0; }
.film-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.film-strip--portrait     { aspect-ratio: 3 / 4; }
.film-strip--portrait img,
.film-strip--portrait-lg img { width: 100%; height: 100%; object-fit: cover; }
.film-strip--portrait-lg  { aspect-ratio: 2 / 3; }


/* =========================================
   CTA-BLOCK
   ========================================= */
.vp-cta-block {}

.cta-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.cta-headline {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 4.5vw, 2.8rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  /* Overflow-Schutz */
  word-break: break-word;
  overflow-wrap: break-word;
}

.cta-text p {
  color: rgba(254, 249, 250, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}
.cta-text .btn-cta { margin-top: 1.5rem; }


/* =========================================
   LEISTUNGS-MODULE
   ========================================= */
.modul-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.modul-intro__text {
  max-width: 65ch;
}
/* Ab Tablet: Fließtext zweispaltig für ideale Zeilenlänge */
@media (min-width: 640px) {
  .modul-intro__text--cols {
    max-width: none;
    columns: 2;
    column-gap: 2.5rem;
  }
  .modul-intro__text--cols p {
    break-inside: avoid;
  }
}
.modul-intro__text p {
  color: rgba(254, 249, 250, 0.72);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}
.modul-intro__text p + p { margin-top: 0.9rem; }

.modul-leistungen {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.modul-leistungen h3 {
  font-family: var(--ff-base);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.3rem;
}
.modul-leistungen p {
  font-size: 0.87rem;
  color: rgba(254, 249, 250, 0.6);
  line-height: 1.65;
  margin: 0;
}

/* Hero-Split: Text + Bild nebeneinander */
.modul-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.modul-hero-split .story-frame { max-width: 280px; margin-inline: auto; }


/* =========================================
   BEISPIELE-BLOCK
   ========================================= */
.modul-beispiele {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.bsp-label {
  font-family: var(--ff-base);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(254, 249, 250, 0.28);
  margin: 0;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bsp-gruppe {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.bsp-kategorie {
  font-family: var(--ff-head);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
.bsp-kunde {
  font-family: var(--ff-base);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tone-4);
  margin: -0.4rem 0 0;
}


/* =========================================
   MINI-CTA
   ========================================= */
.modul-cta {
  font-size: 0.87rem;
  color: rgba(254, 249, 250, 0.45);
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.modul-cta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
  margin-left: 0.25rem;
}
.modul-cta a:hover,
.modul-cta a:focus-visible { color: var(--accent-2); }


/* =========================================
   VIDEO-KARTEN
   ========================================= */
.video-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.video-grid--2col { grid-template-columns: repeat(2, 1fr); }
.video-grid--mv   { grid-template-columns: 1fr; }

.video-card {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: var(--text);
}
.video-card:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.video-card__thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  aspect-ratio: 16 / 9;
}
.video-card__thumb--portrait { aspect-ratio: 9 / 16; }

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.video-card:hover .video-card__thumb img,
.video-card:focus-visible .video-card__thumb img {
  transform: scale(1.05);
  filter: brightness(0.52);
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  pointer-events: none;
}
.video-card__play::before {
  content: "";
  position: absolute;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.48);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.video-card:hover .video-card__play::before,
.video-card:focus-visible .video-card__play::before {
  border-color: var(--accent);
  transform: scale(1.12);
}

.video-card__title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0.5rem 0 0.1rem;
}
.video-card__sub {
  font-size: 0.68rem;
  color: rgba(254, 249, 250, 0.42);
  margin: 0;
}


/* =========================================
   CREW-SEKTION
   ========================================= */

/* Titel-Block: gleicher Stil wie Caption bei Video Portraits */
.crew-title-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.crew-title {
  font-family: var(--ff-head);
  font-weight: 400;
  color: var(--text);
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}


/* Crew-Below: überlappt das Bild nach oben */
.crew-below {
  position: relative;
  z-index: 5;
  margin-top: -4rem;
  padding-top: 2rem;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--bg-deep) 2rem
  );
}

/* Text-Block */
.crew-text-block p {
  color: rgba(254, 249, 250, 0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}
.crew-text-block p + p { margin-top: 0.85rem; }
.crew-text-block .btn-outline {
  margin-top: 1.5rem;
}

/* Ab Tablet: Titel links, Text+Button rechts */
@media (min-width: 640px) {
  .crew-below {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: -6rem;
    padding-top: 3rem;
  }
}

/* Outline-Button (sekundäre CTA) */
.btn-outline {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  font-family: var(--ff-base);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--accent);
  color: var(--bg-deep);
}


/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox__close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.65);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  z-index: 501;
  transition: color 0.2s ease;
}
.lightbox__close:hover,
.lightbox__close:focus-visible { color: var(--accent-2); }

.lightbox__inner { width: min(92vw, 960px); padding: 1rem; }

/* Bild-Lightbox: Media-Wrap */
.lightbox__media-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox__video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}
.lightbox__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}


/* =========================================
   FLOATING ACTION BUTTON
   ========================================= */
.vp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-family: var(--ff-base);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease,
              background 0.2s ease, color 0.2s ease;
}
.vp-fab.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.vp-fab:hover,
.vp-fab:focus-visible {
  background: var(--accent);
  color: var(--bg-deep);
}


/* =========================================
   RESPONSIVE – Tablet (≥ 640 px)
   ========================================= */
@media (min-width: 640px) {

  .vp-subnav a { padding: 0.7rem 1rem; font-size: 0.73rem; }

  /* Modul-Intro: 2-spaltig */
  .modul-intro { grid-template-columns: 1fr 1fr; align-items: start; }

  /* Leistungsliste 2-spaltig */
  .modul-leistungen { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 2rem; }

  /* Hero-Split: Text + Bild 2-spaltig */
  .modul-hero-split { grid-template-columns: 1fr 1fr; }
  .modul-hero-split .story-frame { max-width: none; margin: 0; }
  /* Reverse: Bild links, Text rechts */
  .modul-hero-split--reverse .modul-intro__text { order: 2; }
  .modul-hero-split--reverse .story-frame       { order: 1; }

  /* Musikvideo-Grid: 1 groß links + 2 klein rechts */
  .video-grid--mv { grid-template-columns: 3fr 2fr; align-items: start; }
  .video-grid__featured { grid-row: span 2; }

  /* CTA-Split: 2-spaltig */
  .cta-split { grid-template-columns: 1fr 1fr; }

  /* CTA-Block: Bild links, Text rechts ab Tablet */
  .vp-cta-block .vp-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  .vp-cta-block .story-frame--portrait {
    height: 100%;
    min-height: 320px;
  }
  .vp-cta-block .cta-text--below {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Text + Beispiel nebeneinander ab Tablet */
  .text-beispiel-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  .text-beispiel-split .modul-intro__text {
    padding-top: 0.5rem;
  }
  .text-beispiel-split .modul-cta {
    margin-top: 1.5rem;
  }

}


/* =========================================
   RESPONSIVE – Desktop (≥ 900 px)
   ========================================= */
@media (min-width: 900px) {
  .vp-section { padding-top: calc(5rem + var(--diag)); padding-bottom: 6rem; }
  .vp-section--banner { padding-top: calc(2rem + var(--diag)); padding-bottom: 2rem; }
  .vp-inner   { gap: 3.5rem; }
}


/* =========================================
   MOBILOPTIMIERUNGEN (< 480 px)
   ========================================= */
@media (max-width: 479px) {
  .video-grid     { grid-template-columns: 1fr; }
  .video-grid--2col { grid-template-columns: 1fr; }
  .video-grid--mv { grid-template-columns: 1fr; }
  .hero-label { letter-spacing: 0.15em; }
  .hero-claim { letter-spacing: 0.02em; }
  .trenner-titel { letter-spacing: 0.08em; }
  /* Caption bei kleinen Screens etwas anpassen */
  .story-frame__caption--left { max-width: 55%; }
  .story-frame__caption--bottom-left { max-width: 75%; }
}


/* =========================================
   REDUCED MOTION – Barrierefreiheit
   ========================================= */
@media (prefers-reduced-motion: reduce) {
  .vp-section,
  .vp-fab {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-content h1,
  #hero h1 { opacity: 1 !important; animation: none !important; }
}


/* =========================================================
   NEUE LAYOUT-SYSTEME
   ========================================================= */


/* ---------------------------------------------------------
   CAPTION-ABOVE
   Caption-Block außerhalb (über) dem Bild – im Dokumentfluss.
   Gleiche optische Sprache wie story-frame__caption,
   aber als normaler Block ohne absolute Positionierung.
   --------------------------------------------------------- */
.caption-above {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0;
}
.caption-above .stoerer-linie {
  width: 3rem;
}
.caption-above__title {
  font-family: var(--ff-head);
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1.2;
  display: block;
}
.caption-above__sub {
  font-family: var(--ff-base);
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}
/* Direkt vor story-frame: oben abgerundete Ecken entfernen */
.caption-above + .story-frame,
.caption-above + .interview-visual {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}


/* ---------------------------------------------------------
   VP-OVERLAP-GROUP
   Bild und nachfolgender Text – Text überlappt in die
   untere (schwarze) Hälfte des Bildes hinein.
   --------------------------------------------------------- */
.vp-overlap-group {
  position: relative;
  display: flex;
  flex-direction: column;
}
/* Das Bild zieht sich nach unten zurück – gibt dem Text Platz */
.vp-overlap-group > .story-frame {
  position: relative;
  z-index: 1;
  margin-bottom: -5rem;
}
/* Starker Bottom-Scrim – damit der überlappende Text lesbar bleibt */
.vp-overlap-group > .story-frame::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    to top,
    rgba(27, 25, 25, 1.00) 0%,
    rgba(27, 25, 25, 0.82) 18%,
    rgba(27, 25, 25, 0.35) 40%,
    transparent 60%
  );
}
/* Text-Element: überlappt ins Bild */
.vp-overlap-group__text {
  position: relative;
  z-index: 5;
  padding-top: 5.5rem;
  margin-top: 0;
}

/* Events: Bild-Ratio beschneidet den schwarzen unteren Rand */
#events .vp-overlap-group > .story-frame {
  aspect-ratio: 16 / 8;
  overflow: hidden;
}
#events .vp-overlap-group > .story-frame .sf-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Crew: ähnlich – kürzeres Bild */
#crew .vp-overlap-group > .story-frame {
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
#crew .vp-overlap-group > .story-frame .sf-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


/* ---------------------------------------------------------
   SCRIM RIGHT – Gradient-Vorhang rechts
   Einsatz: Social Media
   --------------------------------------------------------- */
.story-frame--scrim-right {
  position: relative;
}
.story-frame--scrim-right::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    to left,
    rgba(27, 25, 25, 0.92) 0%,
    rgba(27, 25, 25, 0.70) 28%,
    rgba(27, 25, 25, 0.22) 52%,
    transparent 70%
  );
}
.story-frame--scrim-right .story-frame__caption { z-index: 4; }
.story-frame--scrim-right .sf-video { position: relative; z-index: 1; }


/* ---------------------------------------------------------
   CAPTION RIGHT – spiegelbildlich zu --left
   --------------------------------------------------------- */
.story-frame__caption--right {
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  max-width: 46%;
  text-align: right;
  padding-right: 1.25rem;
  padding-left: 0.5rem;
}
.story-frame__caption--right .stoerer-linie {
  margin-left: auto;
  margin-right: 0;
}


/* ---------------------------------------------------------
   UND SONST SO – Sektions-Header
   --------------------------------------------------------- */
.vp-section-header {
  padding: 2.5rem 1.25rem 0;
  max-width: var(--maxw);
  margin-inline: auto;
  text-align: center;
}
.vp-trenner--section {
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}
.trenner-titel--section {
  font-size: clamp(1.2rem, 5.5vw, 2.8rem);
  letter-spacing: clamp(0.04em, 1.2vw, 0.35em);
}

/* Sub-Trenner (für Social Media h3, Crew h3) –
   kleiner als der große trenner-titel */
.vp-trenner--sub {
  padding-bottom: 1.5rem;
}
.trenner-titel--sub {
  font-size: clamp(1.0rem, 4.5vw, 2rem);
  letter-spacing: clamp(0.04em, 1vw, 0.28em);
}


/* ---------------------------------------------------------
   SOCIAL MEDIA: Portrait-Bild – mobil zentriert, ab Tablet volle Breite
   --------------------------------------------------------- */
#social-media .story-frame--portrait {
  max-width: 260px;
  margin-inline: auto;
}
@media (min-width: 640px) {
  #social-media .story-frame--portrait {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  #social-media .story-frame--portrait .sf-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


/* ---------------------------------------------------------
   RESPONSIVE 390px
   --------------------------------------------------------- */
@media (max-width: 420px) {
  .hero-content h1 {
    font-size: clamp(1rem, 6.8vw, 1.8rem);
    letter-spacing: 0.02em;
  }
  .trenner-titel--section {
    letter-spacing: 0.08em;
  }
  .story-frame__caption--right { max-width: 52%; }
  .story-frame__caption--left  { max-width: 52%; }
}


/* =========================================================
   ERWEITERUNGEN – RUNDE 2
   ========================================================= */


/* ---------------------------------------------------------
   SUBNAV: Zweizeilig ab 910px abwärts
   --------------------------------------------------------- */
@media (max-width: 910px) {
  .vp-subnav {
    overflow-x: visible;
  }
  .vp-subnav ul {
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0;
  }
  /* Zeile 1: Showreel, Unternehmensfilme, Musikvideos, Events */
  .subnav-row1 {
    flex: 0 0 auto;
  }
  /* Zeile 2: Präsentation, Social Media, Shootings – erzwinge neuen Zeilenstart */
  .subnav-row2:first-of-type {
    flex-basis: 100%;
    height: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
  }
  /* Besser: flex-break via ::before pseudo-element trick */
}

/* Cleaner Ansatz: Zeilenumbruch via Flexbox break */
@media (max-width: 910px) {
  .vp-subnav ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0;
  }
  /* Erzwinge Zeilenumbruch VOR dem ersten row2-Element */
  .subnav-row2:first-of-type {
    flex-basis: 100% !important;
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* Noch cleaner: Spacer-Element direkt in Flex-Row via CSS */
@media (max-width: 910px) {
  /* Vor dem ersten .subnav-row2 einen Umbruch erzwingen */
  .vp-subnav ul::after {
    content: "";
    flex-basis: 100%;
    height: 0;
    order: 4; /* nach Events (Zeile1 item 4) kommt der Bruch */
  }
  .subnav-row1 { order: 1; }
  .subnav-row2 { order: 5; }
  /* Zweite Reihe leicht eingerückt */
  .subnav-row2 a {
    padding-top: 0.4rem;
    padding-bottom: 0.55rem;
  }
}


/* ---------------------------------------------------------
   HERO H1: Zeilenumbruch bei ≤910px (Video-produktion)
   --------------------------------------------------------- */
@media (max-width: 910px) {
  .hero-content h1 {
    font-size: clamp(0.95rem, 5.5vw, 2.2rem);
    /* shy wird aktiv, Orbitron bricht bei soft-hyphen um */
    hyphens: manual;
  }
}


/* ---------------------------------------------------------
   CTA-BLOCK: Headline inline im Bild (wie Video Portraits)
   --------------------------------------------------------- */
/* Scrim links bereits via story-frame--scrim-left */

.story-frame__caption strong.cta-headline-inline {
  color: var(--accent);
}

/* Portrait-Bild im CTA: volle Breite */
.vp-cta-block .story-frame--portrait {
  max-width: 100%;
}

/* CTA-Block: Bild + Video füllen den Frame komplett */
.vp-cta-block .story-frame--portrait .sf-video,
.vp-cta-block .story-frame--portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text darunter (Mobil) / rechts daneben (Tablet+) */
.cta-text--below {
  margin-top: 0;
}
.cta-text--below p {
  color: rgba(254, 249, 250, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.cta-text--below p + p { margin-top: 0.9rem; }
.cta-text--below .btn-cta { margin-top: 1.5rem; }

/* Trennlinie im CTA-Block: volle Breite über beiden Spalten */
.vp-cta-block .section-divider {
  grid-column: 1 / -1;
}
/* ---------------------------------------------------------
   MUSIKVIDEOS: Interleaved Layout
   --------------------------------------------------------- */
.mv-interleave {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mv-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.mv-text {
  color: rgba(254, 249, 250, 0.72);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

/* Desktop: zwei Spalten nebeneinander */
@media (min-width: 640px) {
  .mv-interleave {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  .mv-col {
    margin-bottom: 0;
  }
}


/* Crew: kompakter Abstand Bild → Text */
#crew .vp-inner {
  gap: 1.75rem;
}


/* ---------------------------------------------------------
   RESPONSIVE 390px – Korrekturen
   --------------------------------------------------------- */
@media (max-width: 420px) {
  .cta-headline-inline {
    font-size: clamp(1.1rem, 7vw, 1.8rem);
  }
}

@media (max-width: 639px) {
  .hero-label {
    letter-spacing: 0.7em;
  }
}

/* ---------------------------------------------------------
   RESPONSIVE 900px – Korrekturen
   --------------------------------------------------------- */
@media (min-width: 911px) {
  .hero-label {
    letter-spacing: 0.5em;
  }
}


/* =========================================
   WERKSCHAU-INTRO
   Konsistent mit Gestaltung gs-intro
   ========================================= */
.vp-intro {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5rem) 2rem clamp(0.0rem, 2vw, 1.5rem);
}

.vp-intro h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: clamp(0.04em, 1.2vw, 0.35em);
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.vp-intro p {
  color: rgba(254, 249, 250, 0.78);
  font-size: 0.95rem;
  line-height: 1.75;
}

.vp-eyebrow {
  display: block;
  font-family: var(--ff-base);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.6rem;
}

.vp-intro__accent {
  font-family: var(--ff-accent);
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  color: var(--accent);
  margin: 2rem 0 0;
  letter-spacing: 0.02em;
}

.vp-section.vp-cta-block {
  padding-bottom: clamp(8rem, 8vw, 7rem);
}