/***
 * style_2026.css 
 ***/

/* -------------------------------- */
/*              GLOBAL              */
/* -------------------------------- */

:root {
    --primary: #ff6b35;
    --primary-dark: #d9480f;

    --text: #1f130b;
    --muted: #6f5142;

    --white-glass: rgba(255, 255, 255, 0.34);
    --border-glass: rgba(255, 255, 255, 0.52);

    --shadow-glass: 0 24px 70px rgba(255, 107, 53, 0.18);

    --radius: 32px;
}

.animate-on-scroll{
    opacity: 0;
}

.animate-on-scroll.visible{
    opacity: 1;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--text);
    background:
    radial-gradient(circle at 12% 18%, rgba(255, 224, 178, .75), transparent 29%), 
    radial-gradient(circle at 82% 18%, rgba(169, 219, 255, .78), transparent 31%), 
    radial-gradient(circle at 70% 87%, rgb(217 218 232 / 75%), transparent 34%), 
    linear-gradient(135deg, #fff7ee 0%, #effcff 52%, #f5efff 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


/* -------------------------------- */
/*             CURSOR               */
/* -------------------------------- */

#cursor-glow{
    position: fixed;
    width: 500px;
    height: 500px;

    left: 0;
    top: 0;

    pointer-events: none;

    z-index: 0;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.849) 0%,
        rgba(255,255,255,0.08) 30%,
        transparent 70%
    );

    transform: translate(-50%, -50%);
}
/* -------------------------------- */
/*             BACK HOME            */
/* -------------------------------- */

.home_backlink {
    position: fixed;
    width: auto;
    margin: 16px;
    padding: 16px 20px;
    bottom: 0;
    right: 0;
    z-index: 300;
    color: black;
    border: 3px solid var(--border-glass);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, .56), rgba(255, 255, 255, .20));
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.home_backlink img{
    width: 16px;
    transform: rotate(180deg);
    filter: invert(1);
    margin-top: 5px;
}

.home_backlink.visible {
    opacity: 1;
    pointer-events: auto;
}

.home_backlink {
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

/* -------------------------------- */
/*               HERO               */
/* -------------------------------- */

.hero-wrapper {
    position: relative;
    min-height: 0vh;
    padding: 28px clamp(18px, 5vw, 88px) 0;
}

.blur-orb {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 999px;
    filter: blur(20px);
    opacity: .42;
    pointer-events: none;
}

.orb-1 {
    top: 90px;
    left: -70px;
    background: #fff0b6;
}

.orb-2 {
    right: 0px;
    top: 68px;
    background: #b7e6ff;
}

.glass-panel {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    min-height: 640px;
    margin: 0 auto;
    padding: 28px 36px 0;
    /*
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255,255,255,.56), rgba(255,255,255,.20));
    box-shadow: var(--shadow-glass);
    
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    */
    overflow: hidden;
}

.glass-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    /*
    background:
    linear-gradient(115deg, rgba(255,255,255,.42), transparent 36%),
    radial-gradient(circle at 88% 78%, rgba(109,40,255,.10), transparent 34%);
    */
    pointer-events: none;
}

.navbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 13px;
    color: #fff;
    font-weight: 800;
    font-style: italic;
    background: linear-gradient(145deg, #875cff, #4900d8);
    box-shadow: 0 12px 28px rgba(80, 28, 220, .32);
    transform: rotate(-8deg);
}

.menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
    list-style: none;
    font-size: .92rem;
    font-weight: 600;
}

.menu a {
    position: relative;
    transition: color .25s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 99px;
    background: var(--primary);
    transition: width .25s ease;
}

.menu a:hover,
.menu a.active {
    color: var(--primary);
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg,#ff7b00,#ffb347);
    box-shadow: 0 18px 32px rgba(255, 123, 0, .30);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(255, 158, 71, .38);
}

.hero {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
    align-items: end;
    gap: 42px;
    min-height: 555px;
    padding-top: 46px;
}

.hero-content {
    align-self: center;
    max-width: 540px;
    padding-bottom: 24px;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--primary-dark);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 600;
}

h1 {
    margin-bottom: 14px;
    font-size: clamp(2.15rem, 5vw, 4.35rem);
    line-height: 1.02;
    letter-spacing: -0.065em;
}

.job {
    margin-bottom: 22px;
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
    font-weight: 600;
}

.description {
    max-width: 470px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: clamp(.95rem, 1.7vw, 1.05rem);
    line-height: 1.8;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 520px;
}

.hero-image-card {
    width: min(100%, 430px);
    min-height: 467px;
    border-radius: 44px 44px 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.46);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
    overflow: hidden;
}

.hero-image-card::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(255,255,255,.34);
    filter: blur(1px);
}

.hero-person {
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: min(64%, 328px);
    transform: translateX(-50%);
    filter: drop-shadow(0 32px 38px rgba(25, 28, 70, .24));
}

main {
    min-height: 420px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0px clamp(18px, 5vw, 88px);
}

.main-placeholder {
    min-height: 260px;
    border: 1px dashed rgba(11,18,69,.18);
    border-radius: 28px;
    display: grid;
    place-items: center;
    color: rgba(11,18,69,.45);
    background: rgba(255,255,255,.20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 14px;
    background: rgba(255,255,255,.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: var(--text);
}

.section {
    padding-top: 82px;
    margin-bottom: 50px;
}

.section-header {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-kicker {
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
    margin-bottom: 14px;
}

.section-text {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
}

.glass-card {
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.20));
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}



/* -------------------------------- */
/*             LOGOS                */
/* -------------------------------- */

.logo-strip {
    display: flex;
    gap: 16px;
    margin: 50px 0px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.logo-strip>div {
    border-radius: 8px;
    text-align: center;
    max-height: 51px;
    display: flex;
    opacity: 42%;
    transition: 600ms;
    justify-content: center;
}

.logo-strip>div:hover{
    opacity: 100%;
    transition: 600ms;
}

.logo-strip>div>img {
    aspect-ratio: 3 / 2;
    object-fit: contain;
    vertical-align: middle;
    transition: 500ms all;
    padding: 15px;
}

.tech-logo{
    background-color: white;
}

.tech-logo span {
    display: block;
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(109,40,255,.92), rgba(59,11,191,.82));
    box-shadow: 0 15px 35px rgba(84,34,221,.24);
}

.logo-strip>div{
    animation: shake 2s infinite;
}

.logo-strip>div:nth-child(1){
    animation: drift 5s ease-in-out infinite;
}

.logo-strip>div:nth-child(2){
    animation: drift 6s ease-in-out infinite;
}

.logo-strip>div:nth-child(3){
    animation: drift 4.5s ease-in-out infinite;
}

.logo-strip>div:nth-child(4){
    animation: drift 5.5s ease-in-out infinite;
}

.logo-strip>div:nth-child(5){
    animation: drift 4.2s ease-in-out infinite;
}

.logo-strip>div:nth-child(6){
    animation: drift 5.8s ease-in-out infinite;
}

.logo-strip>div:nth-child(7){
    animation: drift 4.7s ease-in-out infinite;
}

.logo-strip>div:nth-child(8){
    animation: drift 5.3s ease-in-out infinite;
}

.logo-strip>div:nth-child(9){
    animation: drift 4.4s ease-in-out infinite;
}

@keyframes drift{
    0%,100%{
        transform: translateY(0px) rotate(0deg);
    }

    50%{
        transform: translateY(-8px) rotate(1deg);
    }
}


/* -------------------------------- */
/*            SHOWREEL              */
/* -------------------------------- */

.showreel-card {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 30px;
    padding: 24px;
    overflow: hidden;
}

.video-frame {
    position: relative;
    min-height: 390px;
    border-radius: 24px;
    background:
    linear-gradient(135deg, rgba(12,18,69,.86), rgba(109,40,255,.56)),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.32), transparent 34%);
    overflow: hidden;
    z-index: 1;
}

.video-frame::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 20px;
    z-index: 1;
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 2rem;
    background: rgba(255,255,255,.22);
    border: 1px solid rgba(255,255,255,.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding-left: 5px;
    transition: 400ms;
    z-index: 2;
}

.play-button:hover{
    background-color: var(--primary-dark);
    cursor: pointer;
    transition: 400ms;
}

.showreel-content {
    align-self: center;
    padding: 20px 10px;
}


.imgshowreel{
    border-radius: 24px;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: 600ms all;
}


.video-frame:hover .imgshowreel{
    transform: scale(1.05);
}

.video-frame:hover .play-button{
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--primary-dark);
}

.imgshowreel{
    transition: transform .6s ease;
}

.play-button{
    transition:
        transform .3s ease,
        background-color .3s ease;
}

/* -------------------------------- */
/*            CAROUSEL              */
/* -------------------------------- */

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 0px !important;
}

.carousel-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-buttons {
    text-align: center;
    margin-top: 28px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-buttons button {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-glass);
    background: var(--white-glass);
    color: var(--text);
    transition: all 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.carousel-buttons button:hover,
.carousel-buttons button.active {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.1);
}

.featured-work {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    gap: 28px;
    padding: 24px;
    align-items: center;
}

.main-photo,
.sub-photo,
.gallery-item,
.movie-poster {
    background:
    linear-gradient(135deg, rgba(109,40,255,.50), rgba(169,219,255,.55)),
    radial-gradient(circle at 28% 24%, rgba(255,255,255,.72), transparent 26%);
    border: 1px solid rgba(255,255,255,.48);
}

.main-photo {
    min-height: 375px;
    border-radius: 26px;
}

.feature-copy {
    padding: 18px;
}

.sub-image-row {
    gap: 18px;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
}

.sub-photo {
    min-height: 100px;
    border-radius: 22px;
    width: 100%;
}




.video-grid,
.stats-grid,
.gallery-grid,
.film-grid {
    display: grid;
    gap: 22px;
}

.video-card,
.stat-card,
.film-card {
    padding: 22px;
}


/* -------------------------------- */
/*           RECOMMANDATIONS        */
/* -------------------------------- */


.recommandations-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-top:40px;
}

.recommandation-card{
    padding:30px;
    position:relative;
    transition:.3s ease;
}

.recommandation-card:hover{
    transform:translateY(-6px);
}

.recommandation-quote{
    font-size:4rem;
    line-height:1;
    color:var(--primary);
    opacity:.35;
    margin-bottom:10px;
}

.recommandation-text{
    font-size:1rem;
    line-height:1.8;
    margin-bottom:24px;
}

.recommandation-author{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.recommandation-author strong{
    font-size:1rem;
}

.recommandation-author span{
    opacity:.7;
    font-size:.9rem;
}


/* -------------------------------- */
/*             VIDEO GRID           */
/* -------------------------------- */

.video-grid {
    grid-template-columns: repeat(3, 1fr);
}

.video_solo {
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video_solo:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 16px 32px -10px rgb(0 0 0 / 50%);
}

.video_solo:hover img {
    transform: scale(1.05);
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.badge-web {
    background: rgba(59, 130, 246, 0.85);
    color: #fff !important;
}

.badge-tv {
    background: rgba(236, 72, 153, 0.85);
    color: #fff !important;
}

.badge-cinema {
    background: rgba(82, 168, 12, 0.85);
    color: #fff !important;
}

.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.video_solo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:  all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



/* -------------------------------- */
/*             STATS GRID           */
/* -------------------------------- */

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stat-number {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    color: var(--primary-dark);
}

/* -------------------------------- */
/*            GALLERY GRID          */
/* -------------------------------- */

.gallery-grid {
    grid-template-columns: 1.2fr .8fr 1fr;
    grid-auto-rows: 180px;
}

.gallery-item {
    border-radius: 26px;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 26px;
} 

/* -------------------------------- */
/*              FILM GRID           */
/* -------------------------------- */

.film-grid {
    grid-template-columns: repeat(3, 1fr);
}

.movie-poster {
    height: 182px;
    border-radius: 24px;
    margin-bottom: 18px;
    overflow: hidden;
}

.movie-poster a img {
    width: 40%;
    position: absolute;
    left: 29%;
    top: 21%;
}

.movie-poster > a > video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}



/* -------------------------------- */
/*              FOOTER              */
/* -------------------------------- */

.footer {
    max-width: 1240px;
    margin: 100px auto 42px;
    padding: 34px clamp(18px, 5vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}



/* -------------------------------- */
/*            FOOTER                */
/* -------------------------------- */

.footer{
    display:flex;
    align-items:center;
    gap:40px;
}

.footer-logo{
    flex-shrink:0;
}

.footer-content{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.footer-links{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    font-weight:600;
}

.footer-social{
    display:flex;
    align-items:center;
    gap:18px;
}

.footer-social img{
    height:24px;
    width:auto;
    transition:.2s;
}

.footer-social img:hover{
    transform:translateY(-2px);
}

.footer-legal{
    text-align:center;
    margin-top:20px;
    margin-bottom:20px;
    font-size:.9rem;
    color:var(--muted);
}

.footer-legal a{
    color:inherit;
}

@media (max-width: 768px){

    .footer{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .footer-links{
        justify-content:center;
    }

    .footer-social{
        justify-content:center;
        flex-wrap:wrap;
    }

}




/* -------------------------------- */
/*         MENTIONS LÉGALES         */
/* -------------------------------- */

.legal-modal{
    position:fixed;
    inset:0;
    z-index:9999;

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.3s;
}

.legal-modal.active{
    opacity:1;
    visibility:visible;
}

.legal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.5);
    backdrop-filter:blur(8px);
}

.legal-content{
    position:relative;

    width:min(700px,90vw);
    max-height:80vh;

    overflow-y:auto;

    padding:40px;

    border-radius:24px;
    color: white;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
        0 8px 32px rgba(0,0,0,.25);

    z-index:2;
}

.legal-content h2{
    margin-bottom:25px;
}

.legal-content h3{
    margin-top:24px;
    margin-bottom:10px;
}

.legal-content p{
    line-height:1.7;
    opacity:.9;
}

.legal-content a{
    text-decoration:none;
}

.legal-close{
    position:absolute;
    top:15px;
    right:15px;

    width:40px;
    height:40px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    background:rgba(255,255,255,.1);
    backdrop-filter:blur(10px);

    color:inherit;
    font-size:18px;
}

.legal-close:hover{
    background:rgba(255,255,255,.2);
}

.legal-date{
    margin-top:30px;
    opacity:.6;
    font-size:.9rem;
}

/* Chrome, Edge, Safari */
.legal-content::-webkit-scrollbar {
    width: 8px;
}

.legal-content::-webkit-scrollbar-track {
    background: transparent;
}

.legal-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.15);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.1);
}

.legal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,.3);
}

/* Firefox */
.legal-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.2) transparent;
}


/* -------------------------------- */
/*           MEDIA QUERIES          */
/* -------------------------------- */

@media (max-width: 1100px) {
   .menu,
    .navbar > .btn {
    display: none;
    }

    .navbar {
    align-items: flex-start;
    z-index: 900;
    }

    .menu {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--border-glass);
    border-radius: 22px;
    background: rgba(255,255,255,.72);
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    }

    .menu.is-open {
    display: flex;
    }

    .navbar.menu-open .menu {
    display: flex;
    }

    .menu li a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    }

    .menu li a:hover,
    .menu li a.active {
    background: rgba(109,40,255,.08);
    }

    .menu a::after {
    display: none;
    }

    .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    }

    .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    }

    .menu-toggle span {
    transition: transform .25s ease, opacity .25s ease;
    }

    
    .menu-toggle {
    display: block;
    }


}



@media (max-width: 900px) {
    .hero-wrapper {
    padding-top: 16px;
    }

    .glass-panel {
    min-height: auto;
    padding: 22px 20px 0;
    }

    .showreel-card,
    .featured-work,
    .video-grid,
    .stats-grid,
    .film-grid {
    grid-template-columns: 1fr;
    }

    .logo-strip {
    grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
    grid-template-columns: 1fr 1fr;
    }

    .hero {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding-top: 54px;
    text-align: center;
    }

    .hero-content {
    max-width: 620px;
    margin: 0 auto;
    padding-bottom: 12px;
    }

    .description {
    margin-left: auto;
    margin-right: auto;
    }

    .hero-image-wrap {
    min-height: 400px;
    margin-top: 66px;
    }

    .hero-image-card {
    width: min(100%, 380px);
    min-height: 390px;
    }

    .hero-person {
    width: min(90%, 310px);
    }

    .recommandations-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 520px) {
    .hero-wrapper {
    padding-left: 10px;
    padding-right: 10px;
    }

    .glass-panel {
    border-radius: 24px;
    }

    .logo {
    font-size: 1.28rem;
    }

    .hero {
    padding-top: 38px;
    }

    .btn {
    width: 100%;
    max-width: 230px;
    }

    .hero-image-wrap {
    min-height: 380px;
    }

    .hero-image-card {
    min-height: 340px;
    border-radius: 32px 32px 0 0;
    }

    .hero-person {
    width: min(95%, 285px);
    }

    main {
    padding-top: 52px;
    }

    .logo-strip,
    .gallery-grid {
    grid-template-columns: 1fr;
    }

    .gallery-item.tall {
    grid-row: span 1;
    }

    .video-frame,
    .main-photo {
    min-height: 300px;
    }

    .logo-strip>div>img {
        width: 100%;
    }


    .sub-image-row,
    .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
    }
}