UNLOCKING NEW PERSPECTIVES

Creative Production Studio

Creative Production Studio

Frankfurt / Offenbach

© Enlight 2026

© Enlight 2026

About us

We create films and visual content with clarity, character and precision.

Strong visuals matter, but so does what they carry. We focus on authentic stories, cultural relevance and collaborations that leave a lasting impression.

Selected Projects

import type { ComponentType } from "react"



export function withoutFramerBadge(Component): ComponentType {

return (props) => {

return (

<>

<style>

{`

#__framer-badge-container { display: none !important; }

`}

</style>



<Component {...props} />

</>

)

}

}