@font-face {
    font-family: 'Assistant';
    src: url('../fonts/assistant-800.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/*Global styles*/
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --main-font: 'Assistant', sans-serif;
    --secondary-font: Georgia, serif;
    --body-font: Arial, Helvetica, sans-serif;
    --main-font-color-dark: #0f0f0f;
    --lucky-logic-main-color: #ebcd05;
    --dark-color: #090909;
    --pinkRock-color: #c50052;
    --bG-white-color: #f5f0f0;
    --akzent-color: #5608ff;
    --body-font-color: #e4ddd4;
    --body-BG-color: #000000;
}

html{
    font-family: var(--body-font);
    font-size: 10px;
    color: var(--body-font-color);
    scroll-behavior: smooth;
    background-color: var(--body-BG-color) !important;
}

body{
    overflow-x: hidden;
    background: var(--body-BG-color) !important;
}

/* section{
    padding: 3.9rem 0;
    overflow: hidden;
} */

img{
    width: 100%;
    max-width: 100%;
}

a{
    text-decoration: none;
    transition: color .5s;
}

p{
    font-size: 1.5rem;
    /* font-weight: 500; */
    line-height: 3.1rem;
    color: #e4ddd4;
}


.container{
    display: flex;
    justify-content: center;
}

/*header*/
header{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


header::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 0;
    height: .1rem;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, .22) 34%, rgba(255, 255, 255, .58) 50%, rgba(255, 255, 255, .22) 66%, rgba(255, 255, 255, 0) 86%, transparent 100%);
}

header::before {
    content: '';
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: -.28rem;
    height: .65rem;
    pointer-events: none;
    opacity: .75;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0) 13%, rgba(255, 255, 255, .14) 38%, rgba(255, 255, 255, .26) 50%, rgba(255, 255, 255, .14) 62%, rgba(255, 255, 255, 0) 87%, transparent 100%);
    filter: blur(.42rem);
}


.nav{
    height: 7.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headlineHero{
    position: absolute;
    width: 10vw;
    margin-top: 5%;
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: left;
   /* align-items: left;*/
}

.headlineHero h1,
.headlineHero h2{
    font-size: 10vw;
    text-transform: uppercase;
    color: var(--body-font-color);
}

.headlineHero h2{
    transform: translateY(-2rem);
}


.menu-toggle{
    color: var(--akzent-color);
    font-size: 3.2rem;
    position: fixed;
    top: 5%;
    transform: translateY(-50%);
    right: 2.5rem;
    cursor: pointer;
    z-index: 1500;
}

.fa-times{
    display: none;
}

.nav-list{
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 60%;
    height: 100vh;
    background-color: var(--akzent-color);
    padding: 4.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1250;
    transform: translateX(-150%);
    transition: transform .5s;
}

.nav::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 1000;
    transform: scale(0);
    transition: opacity .5s;
}

.open .fa-times{
    display: block;
}

.open .fa-bars{
    display: none;
}

.open .nav-list{
    transform: translateX(0);
}

.open nav::before{
    opacity: 1;
    transform: scale(1);
}

.nav-item{
    border-bottom: 2px solid #2a001d;
}

.nav-link{
    display: block;
    color: #e4ddd4;
    line-height: .75;
    word-spacing: 1px;
    letter-spacing: -.1rem;
    text-transform: uppercase;
    font-family: var(--main-font);
    font-size: 3rem;
    font-weight: 900;
    /* letter-spacing: 2px; */
    margin-right: -2px;
    transition: color .5s;
    /* text-align: center; */
}

.nav-link:hover{
    color: var(--dark-color);
    transition: color.2s;
}

/* Disclaimer starts */
.disclaimer-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.disclaimer{
    flex: 0 0 120px;
    margin-bottom: 15rem;
}

.disclaimer h1,
.disclaimer h2{
    color: var(--akzent-color);
}

.disclaimer h1{
    font-size: 3rem;
    margin-bottom: 2rem;
}

.disclaimer h2{
    font-size: 2rem;
}

.disclaimer h5{
    font-size: 7rem;
}

.disclaimer p{
    width: 80vw;
    max-width: 600px;
    margin-bottom: 5rem;
    line-height: 2rem;
    font-size: 1.5rem;

    /* column-count: 2; */
}
/* Disclaimer ends */

/*Hero*/
#creative-director {
    scroll-margin-top: clamp(6rem, 13vw, 8rem);
}

.hero{
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}


#headerVideo {
    width: 100vw;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    /* min-width: 100%;
    min-height: 100%; */
  }

.headline{
    color: var(--akzent-color);
    font-size: 13vw;
    font-family: var(--main-font);
    /* text-transform: uppercase; */
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.1rem;
    margin-right: -.5rem;
    margin-bottom: 2rem;
    animation: scale .5s forwards;
}

.headline-dark{
    color: var(--body-font-color);
}

.global-headline{
    /* margin-right: 1rem; */
    transform: translateX(-4px);
}

.copyWide{
    display: none;
}

.copyMobile{
    display: initial;
}

.copyMiddle{
    display: none;
}

.copy{
    font-size: 2vw;
}

.single-animation{
    opacity: 0;
    animation: fadeDown 1s forwards;
    animation-delay: 1.75s;
    animation-timing-function: ease-in-out;
}

.btn{
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: -2px;
}

.cta-btn{
    font-size: 1.4rem;
    font-weight: 900;
    background-color: #fff;
    padding: .9rem 1.8rem;
    color: var(--akzent-color);
    border-radius: .4rem;
    transition: background-color .5s;
}

.cta-btn:hover,
.cta-btn:focus{
    color: var(--dark-color);
    background-color: var(--akzent-color);
}


.lucky-logic-description{
    margin-bottom: 8vw;
}

.lucky-logic-description p{
    line-height: 1.6;
    max-width: 92%;
    margin-bottom: 2.4rem;
}

.body-btn{
    font-size: 1.5rem;
    color: var(--akzent-color);
    position: relative;
    transition: color .5s;
    margin: 2.4rem 0;
}

.body-btn::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--akzent-color);
    transition: background-color .5s;
}

.body-btn:hover,
.body-btn:focus{
    color: var(--main-font-color-dark);
}

.body-btn:hover::before,
.body-btn:focus::before{
    background-color: var(--main-font-color-dark);
}



.work-content{
    width: 100vw;
    display: grid;
    grid-gap: 10px;
    grid-auto-flow: dense;
    margin-bottom: 15vw;
    position: relative;
    isolation: isolate;
}


.sixtVid{
    width: 100vw;
    grid-row: 1;
    cursor: pointer;
    position: relative;
    z-index: 0;
}

.limo1{
    max-width: 100%;
    grid-row: 2;
    cursor: pointer;
}

.limo2{
    max-width: 100%;
    grid-row: 3;
    cursor: pointer;
}

.limo3{
    max-width: 100%;
    grid-row: 4;
    cursor: pointer;
}

/* .ikea{
    max-width: 100%;
    grid-column: 5;
    grid-row: 3;
} */

.gardena1{
    max-width: 100%;
    grid-row: 5;
    overflow: hidden;
}

.gardena2{
    max-width: 100%;
    grid-row: 6;
    overflow: hidden;
}

.gardena3{
    max-width: 100%;
    grid-row: 7;
    overflow: hidden;
}

.gardena4{
    max-width: 100%;
    grid-row: 8;
    overflow: hidden;
}

.gardena1 img{
    animation: pictureMove 19s cubic-bezier(.45, 0, .55, 1) infinite;
    animation-delay: 100ms;
}

.gardena2 img{
    animation: pictureMove 22s cubic-bezier(.45, 0, .55, 1) infinite;
    animation-delay: 400ms;
}

.gardena3 img{
    animation: pictureMove 16s cubic-bezier(.45, 0, .55, 1) infinite;
    animation-delay: 300ms;
}

.gardena4 img{
    animation: pictureMove 17s cubic-bezier(.45, 0, .55, 1) infinite;
    animation-delay: 200ms;
}

.haribo1{
    max-width: 100%;
    grid-row: 9;
    cursor: pointer;
}

.haribo2{
    max-width: 100%;
    grid-row: 10;
    cursor: pointer;
}

.misereor1{
    max-width: 100%;
    grid-row: 11;
    overflow: hidden;
}

.misereor2{
    max-width: 100%;
    grid-row: 12;
    overflow: hidden;
}

.misereor3{
    max-width: 100%;
    grid-row: 13;
    overflow: hidden;
}

.misereor1 img{
    animation: pictureMove 18s cubic-bezier(.45, 0, .55, 1) infinite;
    animation-delay: 100ms;
}

.misereor2 img{
    animation: pictureMove 22s cubic-bezier(.45, 0, .55, 1) infinite;
}

.misereor3 img{
    animation: pictureMove 16s cubic-bezier(.45, 0, .55, 1) infinite;
    animation-delay: 300ms;
}

.McDonalds_rdz img{
    height: 100%;
    object-fit: cover;
    animation: pictureMove 20s cubic-bezier(.45, 0, .55, 1) infinite;
    animation-delay: 200ms;
}

.hoch2{
    max-width: 100%;
    grid-row: 14;
    cursor: pointer;
}

.shoepon{
    max-width: 100%;
    grid-row: 15;
    cursor: pointer;
}

.McDonalds_monopoly{
    max-width: 100%;
    grid-row: 16;
    cursor: pointer;
}

.McDonalds_stern{
    max-width: 100%;
    grid-row: 17;
    cursor: pointer;
}

.McDonalds_rdz{
    max-width: 100%;
    grid-row: 18;
    overflow: hidden;
}

.zwickl{
    max-width: 100%;
    grid-row: 19;
    cursor: pointer;
}

.LAB01{
    max-width: 100%;
    grid-row: 20;
    cursor: pointer;
}

.LAB02{
    max-width: 100%;
    grid-row: 21;
    cursor: pointer;
}

.LAB03{
    max-width: 100%;
    grid-row: 22;
    cursor: pointer;
}
.clients-container{
    width: 90%;
    margin: auto;
    margin-bottom: 5vw;
    margin-top: 5vw;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
}

.clients{
    margin: auto;
    margin-bottom: 60vw;
    position: relative;
    display: grid;
    grid-gap: 10%;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    align-items: center;
}

.awards{
    margin: auto;
    width: 100%;
    margin-bottom: 40vw;
    position: relative;
    display: grid;
    column-gap: 10%;
    row-gap: 22%;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
}



.clients img,
.awards img {
    display: block;
    width: min(100%, 18rem);
    height: 8rem;
    object-fit: contain;
}
.smallerIcons{
    width: 80%;
}

/* .svg-color{
    fill: var(--akzent-color);
} */


.about{
    width: 90%;
    /* padding-top: 3rem; */
    margin-bottom: 10vw;
}

.about .copy{
    font-size: 5.5vw;
    /* overflow-wrap: break-word; */
}





@media screen and (min-width: 800px){

    .about .copy{
        font-size: 3vw;
        width: 90vw;
    }

    .copyWide{
        display: none;
    }
    
    .copyMobile{
        display: none;
    }
    
    .copyMiddle{
        display: initial;
        word-wrap: break-word;
    }
}


/* Media queries */
@media screen and (max-width: 999px) {
    header {
        position: sticky;
        top: 0;
        background: #000;
        z-index: 2600;
    }

    .headlineHero,
    .menu-toggle,
    .nav::before {
        display: none;
    }

    .nav {
        height: clamp(5.4rem, 13vw, 6.8rem);
        justify-content: center;
    }

    .nav-list {
        position: static;
        width: 100%;
        height: auto;
        padding: 0 clamp(.8rem, 2.6vw, 1.6rem);
        background: #000;
        transform: none;
        transition: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: clamp(1.2rem, 3.4vw, 2.4rem);
    }

    .nav-item {
        border: 0;
    }

    .nav-link {
        display: block;
        margin: 0;
        color: var(--body-font-color);
        font-family: var(--main-font);
        font-size: clamp(1.65rem, 5.2vw, 3.4rem);
        font-weight: 900;
        line-height: 1;
        letter-spacing: 0;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link:focus-visible,
    .nav-link.active {
        color: var(--body-font-color);
    }

    .open .nav-list {
        transform: none;
    }
}
@media screen and (min-width: 1000px){
    header{
        position: sticky;
        background: #000;
        z-index: 2600;
    }/* section{
        padding: 7.9rem;
    } */

    /* .vidContainer iframe{
        position: relative;
        max-width: 900px;
        width: 80vw;
        outline: none;
    } */

    .copyWide{
        display: initial;
    }

    .copyMobile{
        display: none;
    }

    .copyMiddle{
        display: none;
    }

    .menu-toggle,
    .headlineHero{
        display: none;
    }

    .nav{
        justify-content: space-between;
    }

    .nav-list{
        position: initial;
        width: initial;
        height: initial;
        background-color: #000;
        padding: 1rem;
        justify-content: initial;
        flex-direction: row;

        transform: initial;
        transition: initial;
    }

    .nav-item{
        margin: 0 2.4rem;
        border: none;
    }

    .nav-item:last-child{
        margin-left: 4.4rem;
        margin-right: 0;
    }

    .nav-link{
        margin-left: 2.3rem;
        font-size: 3vw;
        font-weight: 900;
        letter-spacing: -.05rem;
        white-space: nowrap;
    }

    .nav-link:hover{
        color: var(--akzent-color);
    }

    .active{
        position: relative;
    }

    .active::before{
        /* content: ''; */
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #fff;
        left: 0;
        bottom: -3px;
    }

 

    /* .div-limo{

    }
    
    .div-limo video{
    }
    
    .div-limo video:nth-child(1){

    } */

    .work-content{
        width: 100vw;
        display: grid;
        grid-gap: 10px;
        grid-auto-flow: dense;
        margin-bottom: 15rem;
    }
    
    .sixtVid{
        width: 100vw;
        grid-column: span 3;
        cursor: pointer;
    }
    
    .limo1{
        max-width: 100%;
        grid-row: 2;
        cursor: pointer;
    }
    
    .limo2{
        max-width: 100%;
        grid-row: 2;
        cursor: pointer;
    }
    
    .limo3{
        max-width: 100%;
        grid-row: 2;
        cursor: pointer;
    }
    
    /* .ikea{
        max-width: 100%;
        grid-column: 5;
        grid-row: 3;
    } */

    .gardena1{
        max-width: 100%;
        grid-row: 3;
    }
    
    .gardena2{
        max-width: 100%;
        grid-row: 3;
    }
    
    .gardena3{
        max-width: 100%;
        grid-row: 3;
    }
    
    .gardena4{
        max-width: 100%;
        grid-row: 4;
    }
    
    .haribo1{
        max-width: 100%;
        grid-row: 4;
        cursor: pointer;
    }
    
    .haribo2{
        max-width: 100%;
        grid-row: 4;
        cursor: pointer;
    }
    
    .misereor1{
        max-width: 100%;
        grid-row: 5;
    }
    
    .misereor2{
        max-width: 100%;
        grid-row: 5;
    }
    
    .misereor3{
        max-width: 100%;
        grid-row: 5;
    }
    
    .hoch2{
        max-width: 100%;
        grid-row: 6;
        cursor: pointer;
    }

    .shoepon{
        max-width: 100%;
        grid-row: 6;
        cursor: pointer;
    }

    .McDonalds_monopoly{
        max-width: 100%;
        grid-row: 6;
        cursor: pointer;
    }
    
    .McDonalds_stern{
        max-width: 100%;
        grid-row: 7;
        cursor: pointer;
    }
    
    .McDonalds_rdz{
        max-width: 100%;
        grid-row: 7;
        overflow: hidden;
    }

    .zwickl{
        max-width: 100%;
        grid-row: 7;
        cursor: pointer;
    }

    .LAB01{
        max-width: 100%;
        grid-row: 8;
        cursor: pointer;
    }
    
    .LAB02{
        max-width: 100%;
        grid-row: 8;
        cursor: pointer;
    }

    .LAB03{
        max-width: 100%;
        grid-row: 8;
        cursor: pointer;
    }
    .clients-container{
        width: 80%;
        margin: auto;
        margin-bottom: 15rem;
        position: relative;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    
    .clients{
        margin: auto;
        margin-bottom: 16vw;
        position: relative;
        display: grid;
        grid-gap: 10%;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: 1fr 1fr;
        justify-items: center;
        align-items: center;
    }   


    .awards{
        margin: auto;
        width: 100%;
        margin-bottom: 8vw;
        position: relative;
        display: grid;
        column-gap: clamp(1.5rem, 4vw, 8rem);
        row-gap: 22%;
        grid-template-columns: repeat(4, minmax(12rem, 18rem));
        grid-template-rows: repeat(3, 1fr);
        justify-content: space-between;
        justify-items: center;
        align-items: center;
    }   
.headline{
        color: var(--akzent-color);
        font-size: 7rem;
        font-family: var(--main-font);
        /* text-transform: uppercase; */
        font-weight: 900;
        letter-spacing: -.1rem;
        margin-right: -.5rem;
        animation: scale .5s forwards;
    }

    .headline-dark{
        color: var(--body-font-color);
        font-family: var(--main-font);
        font-size: 7rem;
        font-weight: 900;
        letter-spacing: -.1rem;
        margin-right: -.7rem;
    }

    .line{
        max-width: 11.4rem;
    }


    .about{
        position: relative;
        margin: auto;
        width: 80%;
    }

    /* .about > div{
        flex: 1;
    } */

    .about .copy{
        font-size: 2rem;
        width: 50vw;
        min-width: 600px;
    }

    .padding-right{
        padding-right: 7rem;
    }

}




.gardena1,
.gardena2,
.gardena3,
.gardena4,
.misereor1,
.misereor2,
.misereor3,
.McDonalds_rdz {
    overflow: hidden;
    line-height: 0;
    contain: paint;
}

.gardena1 img,
.gardena2 img,
.gardena3 img,
.gardena4 img,
.misereor1 img,
.misereor2 img,
.misereor3 img,
.McDonalds_rdz img {
    display: block;
    width: 100%;
    max-width: none;
    backface-visibility: hidden;
}

.McDonalds_rdz img {
    height: 100%;
    object-fit: cover;
}
/* Animations */
.amoreliePrint1 img,
.gardena1 img,
.gardena2 img,
.gardena3 img,
.gardena4 img,
.misereor1 img,
.misereor2 img,
.misereor3 img,
.McDonalds_rdz img{
    transform-origin: center center;
    will-change: transform;
}

.gardena1 img,
.gardena2 img{
    transform-origin: right bottom;
}

.gardena3 img,
.gardena4 img{
    transform-origin: left bottom;
}

.misereor1 img{
    transform-origin: right top;
}

.LAB02{
    object-position: right bottom;
    transform-origin: right bottom;
}

@keyframes pictureMove{
    0%{
        transform: scale(1.018);
    }
    50%{
        transform: scale(1.032);
    }
    100%{
        transform: scale(1.018);
    }
}

@keyframes sixtMove{
    0%{
        transform: scale(1.014);
    }
    50%{
        transform: scale(1.026);
    }
    100%{
        transform: scale(1.014);
    }
}
/* Modern runtime states */
.menu-toggle {
    width: 4.8rem;
    height: 4.8rem;
    border: 0;
    background: var(--akzent-color);
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: .55rem;
    padding: .8rem;
}

.menu-toggle-line {
    display: block;
    width: 100%;
    height: .3rem;
    background: var(--akzent-color);
    transition: transform .25s ease, opacity .25s ease;
}

.open .menu-toggle-line:nth-child(1) {
    transform: translateY(.85rem) rotate(45deg);
}

.open .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.open .menu-toggle-line:nth-child(3) {
    transform: translateY(-.85rem) rotate(-45deg);
}

.video-btn {
    display: block;
    width: 100%;
    height: auto;
    background: #0f0f0f;
    object-fit: cover;
    transition: filter .25s ease, transform .25s ease;
}

.preview-tile {
    position: relative;
    overflow: hidden;
    background-color: #0f0f0f;
    background-image: var(--preview-poster-image, none);
    background-size: cover;
    background-position: center;
}

.preview-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--preview-poster-image, none);
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.preview-video-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .18s ease;
}

.preview-tile.is-preview-ready .preview-video-media {
    opacity: 1;
}

.preview-tile:focus-within {
    outline: 3px solid var(--akzent-color);
    outline-offset: -3px;
}

.video-btn:hover {
    filter: brightness(1.12);
}

.video-btn:focus-visible {
    filter: brightness(1.12);
    outline: 3px solid var(--akzent-color);
    outline-offset: -3px;
}

.video-modal[hidden] {
    display: none;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: min(6vw, 6rem);
    background: #000;
}

.video-modal-frame {
    width: min(100%, 128rem);
    aspect-ratio: var(--modal-aspect-ratio, 16 / 9);
}

.video-modal-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

.video-modal-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 5.2rem;
    height: 5.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.video-modal-close-icon {
    width: 4.2rem;
    height: 4.2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 5.8;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
    color: #fff;
    outline: 2px solid #fff;
    outline-offset: .3rem;
}

body.modal-open {
    overflow: hidden !important;
}

.mail-cta {
    display: inline-block;
    margin: 2rem 0 4rem;
    color: var(--body-font-color);
    font-family: var(--main-font);
    font-size: clamp(1.6rem, 4.2vw, 7rem);
    font-weight: 900;
    line-height: .95;
    text-decoration: none;
    white-space: nowrap;
}

.mail-cta:hover,
.mail-cta:focus-visible {
    color: var(--dark-color);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

@media screen and (max-width: 639px) {
    .video-btn {
        min-height: 42vw;
    }

    .video-modal {
        padding: 1.2rem;
    }

    .video-modal-close {
        top: 1rem;
        right: 1rem;
        width: 4.8rem;
        height: 4.8rem;
    }

    .video-modal-close-icon {
        width: 3.9rem;
        height: 3.9rem;
    }
}

.legal-page {
    min-height: 100vh;
    padding: clamp(7rem, 8vw, 11rem) clamp(1.6rem, 4vw, 5rem) clamp(16rem, 18vw, 22rem);
    background: #000;
}

.legal-wrap {
    width: min(118rem, 100%);
    margin: 0 auto;
}

.legal-kicker {
    margin: 0 0 1.4rem;
    color: var(--akzent-color);
    font-family: var(--main-font);
    font-size: clamp(1.6rem, 1.5vw, 2.2rem);
    font-weight: 900;
    line-height: 1;
    text-transform: none;
}

.legal-title {
    max-width: 11ch;
    margin: 0 0 clamp(4rem, 6vw, 7rem);
    color: var(--body-font-color);
    font-size: clamp(3.8rem, 4.3vw, 7.2rem);
    line-height: .78;
    letter-spacing: 0;
    text-transform: none;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.4rem, 1.6vw, 2.4rem);
}

.legal-card {
    min-width: 0;
    padding: clamp(2.2rem, 2.5vw, 3.4rem);
    background: #101010;
    border-top: .6rem solid var(--akzent-color);
}

.legal-card-feature {
    background: var(--akzent-color);
    color: #fff;
}

.legal-card-wide {
    grid-column: 1 / -1;
}

.legal-card h2 {
    margin: 0 0 1.4rem;
    color: inherit;
    font-family: var(--main-font);
    font-size: clamp(2.4rem, 2.4vw, 4.2rem);
    font-weight: 900;
    line-height: .92;
    letter-spacing: 0;
    text-transform: none;
}

.legal-card p,
.legal-card li {
    color: inherit;
    font-size: clamp(1.55rem, 1.08vw, 1.85rem);
    line-height: 1.45;
}

.legal-card p + p {
    margin-top: 1.2rem;
}

.legal-card a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: .12em;
    text-underline-offset: .18em;
}

.legal-mail {
    overflow-wrap: normal;
    word-break: keep-all;
    white-space: nowrap;
}

.legal-card code {
    color: inherit;
    font-size: .95em;
}

@media screen and (max-width: 860px) {
    .legal-page {
        padding: 7rem 1.2rem 18rem;
    }

    .legal-title {
        max-width: 11ch;
        font-size: clamp(3.8rem, 11vw, 5.8rem);
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-card-wide {
        grid-column: 1;
    }
}
/* Gallery alignment patch: keep the work grid flush across rows */
.work-content {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
}

.work-content > * {
    min-width: 0;
}

.work-content img,
.work-content video {
    display: block;
    width: 100%;
    max-width: none;
}

.work-content video {
    height: auto;
}

@media screen and (min-width: 1000px) {
    .work-content .misereor1,
    .work-content .misereor2,
    .work-content .misereor3 {
        align-self: stretch;
        aspect-ratio: 1264 / 1788;
    }

    .work-content .misereor1 img,
    .work-content .misereor2 img,
    .work-content .misereor3 img {
        height: 100%;
        object-fit: cover;
    }
}

@media screen and (min-width: 1000px) {
    .work-content {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sixtVid {
        grid-column: 1 / -1;
    }

    .limo1,
    .gardena1,
    .gardena4,
    .misereor1,
    .hoch2,
    .McDonalds_stern,
    .LAB01 {
        grid-column: 1;
    }

    .limo2,
    .gardena2,
    .haribo1,
    .misereor2,
    .shoepon,
    .McDonalds_rdz,
    .LAB02 {
        grid-column: 2;
    }

    .limo3,
    .saveMe,
    .gardena3,
    .haribo2,
    .misereor3,
    .McDonalds_monopoly,
    .zwickl,
    .LAB03 {
        grid-column: 3;
    }
}

/* Stable thumbnail aspect ratios for flush row bottoms */
.sixtVid {
    aspect-ratio: 960 / 358;
}


.limo1,
.limo2,
.limo3 {
    aspect-ratio: 600 / 234;
}

.saveMe,
.haribo1,
.haribo2,
.hoch2,
.shoepon,
.McDonalds_monopoly,
.McDonalds_stern,
.McDonalds_rdz,
.zwickl,
.LAB01,
.LAB02,
.LAB03 {
    aspect-ratio: 500 / 281;
}

.work-content video {
    height: 100%;
    object-fit: cover;
}




@media screen and (max-width: 999px) {
    .work-content {
        display: flex;
        flex-direction: column;
        width: 100vw;
        overflow: hidden;
        background: #000;
    }

    .work-content > :not(.click-reminder) {
        flex: 0 0 auto;
        width: 100% !important;
        max-width: none !important;
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .work-content .preview-tile {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .work-content img {
        height: auto;
    }
}

.clients-mobile-break {
    display: initial;
}

.click-reminder {
    position: absolute;
    left: 50%;
    top: 18.65vw;
    z-index: 2400;
    width: clamp(8.5rem, 8.4vw, 13rem);
    height: clamp(8.5rem, 8.4vw, 13rem);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.98);
    filter: drop-shadow(0 .35rem .9rem rgba(0, 0, 0, .45));
    will-change: opacity, transform;
}

.click-reminder-icon {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.click-reminder-hand {
    fill: #fff;
    transform-box: fill-box;
    transform-origin: 43% 16%;
}

.click-reminder-ray {
    fill: none;
    stroke: #fff;
    stroke-width: .9;
    stroke-linecap: round;
    opacity: 0;
}

.click-reminder.is-visible {
    animation: clickReminderPop 1.25s cubic-bezier(.2, .88, .2, 1) both;
}

.click-reminder.is-visible .click-reminder-hand {
    animation: clickReminderTap 1.25s cubic-bezier(.2, .88, .2, 1) both;
}

.click-reminder.is-visible .click-reminder-ray {
    animation: clickReminderRay 1.25s ease-out both;
}

.click-reminder.is-visible .ray-two {
    animation-delay: .05s;
}

.click-reminder.is-visible .ray-three {
    animation-delay: .1s;
}

@keyframes clickReminderPop {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.98);
    }
    10%, 78% {
        opacity: 1;
    }
    28%, 66% {
        transform: translate(-50%, -50%) scale(1);
    }
    44% {
        transform: translate(-50%, -50%) scale(.975);
    }
}

@keyframes clickReminderTap {
    0%, 30%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    43% {
        transform: translate3d(0, .55rem, 0) scale(.955);
    }
    60% {
        transform: translate3d(0, -.08rem, 0) scale(1.02);
    }
}

@keyframes clickReminderRay {
    0%, 34% {
        opacity: 0;
        stroke-dasharray: .1 5;
        stroke-dashoffset: 2;
    }
    45% {
        opacity: 1;
        stroke-dasharray: 1.4 5;
        stroke-dashoffset: 0;
    }
    76%, 100% {
        opacity: 0;
        stroke-dasharray: 1.4 5;
        stroke-dashoffset: -1.4;
    }
}
@media screen and (min-width: 760px) {
    .clients-mobile-break {
        display: none;
    }

    #clients-heading {
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .click-reminder,
    .click-reminder.is-visible,
    .click-reminder.is-visible .click-reminder-hand,
    .click-reminder.is-visible .click-reminder-ray {
        animation: none;
    }
}/* Contact dock and profile page */
@keyframes contactMailNudge {
    0%, 100% {
        transform: translate3d(.1rem, 0, 0) rotate(0deg) scale(1);
    }
    34% {
        transform: translate3d(.1rem, -.28rem, 0) rotate(-10deg) scale(1.045);
    }
    68% {
        transform: translate3d(.1rem, .04rem, 0) rotate(4deg) scale(.99);
    }
}

@keyframes contactMailJump {
    0%, 100% {
        transform: translate3d(.1rem, 0, 0) scaleX(1) scaleY(1);
    }
    10% {
        transform: translate3d(.1rem, .2rem, 0) scaleX(1.16) scaleY(.84);
    }
    36% {
        transform: translate3d(.1rem, -1.45rem, 0) scaleX(.84) scaleY(1.24);
    }
    58% {
        transform: translate3d(.1rem, -1.72rem, 0) scaleX(.93) scaleY(1.09);
    }
    78% {
        transform: translate3d(.1rem, .16rem, 0) scaleX(1.18) scaleY(.82);
    }
    90% {
        transform: translate3d(.1rem, -.12rem, 0) scaleX(.96) scaleY(1.06);
    }
}

@keyframes contactMailToss {
    0%, 100% {
        transform: translate3d(.1rem, 0, 0) rotate(0deg) scaleX(1) scaleY(1);
    }
    12% {
        transform: translate3d(.1rem, .18rem, 0) rotate(-5deg) scaleX(1.15) scaleY(.86);
    }
    42% {
        transform: translate3d(.1rem, -1.55rem, 0) rotate(22deg) scaleX(.86) scaleY(1.18);
    }
    66% {
        transform: translate3d(.1rem, -.7rem, 0) rotate(-14deg) scaleX(.98) scaleY(1.06);
    }
    84% {
        transform: translate3d(.1rem, .16rem, 0) rotate(4deg) scaleX(1.16) scaleY(.84);
    }
}

.contact-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 2800;
    width: clamp(8.8rem, 5.6vw, 10.4rem);
    height: clamp(8.8rem, 5.6vw, 10.4rem);
    overflow: hidden;
    color: #fff;
    background: #5608ff;
    isolation: isolate;
    transform-origin: 100% 100%;
    transition: width .34s cubic-bezier(.22, .84, .2, 1), height .34s cubic-bezier(.22, .84, .2, 1), transform .34s cubic-bezier(.22, .84, .2, 1);
}

.contact-dock.is-open {
    width: clamp(40rem, 33vw, 50rem);
    height: clamp(17rem, 14.5vw, 21.5rem);
}

.contact-dock:not(.is-open):not(.is-opening):not(.is-closing) {
    overflow: visible;
}

.contact-scroll-top {
    position: fixed;
    right: 0;
    bottom: calc(clamp(8.8rem, 5.6vw, 10.4rem) + .9rem);
    z-index: -1;
    display: grid;
    place-items: center;
    width: clamp(8.8rem, 5.6vw, 10.4rem);
    height: clamp(8.8rem, 5.6vw, 10.4rem);
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 100%, 0);
    transition: transform .34s cubic-bezier(.22, .84, .2, 1), opacity .2s ease, bottom .34s cubic-bezier(.22, .84, .2, 1);
}

.contact-scroll-top svg {
    width: 62%;
    height: 62%;
    fill: none;
    stroke: currentColor;
    stroke-width: 5;
    stroke-linecap: butt;
    stroke-linejoin: miter;
}

.contact-dock.show-scroll-top .contact-scroll-top {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.contact-dock.is-open .contact-scroll-top {
    bottom: calc(clamp(17rem, 14.5vw, 21.5rem) + .9rem);
}

.contact-scroll-top:hover,
.contact-scroll-top:focus-visible {
    color: #fff;
    outline: none;
}

.contact-dock-toggle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.contact-dock.is-open .contact-dock-toggle {
    top: 2.1rem;
    right: 1.8rem;
    width: 4.7rem;
    height: 4.7rem;
}
.contact-dock-icon {
    grid-area: 1 / 1;
    fill: none;
    stroke: currentColor;
    stroke-width: 5.8;
    stroke-linecap: square;
    stroke-linejoin: miter;
    transform-origin: center;
    transition: opacity .18s ease, transform .26s cubic-bezier(.22, .84, .2, 1);
}

.contact-dock-icon-mail {
    width: clamp(5.8rem, 3.7vw, 6.85rem);
    height: clamp(4.35rem, 2.78vw, 5.15rem);
    opacity: 1;
    backface-visibility: hidden;
    transform: translateX(.1rem) scale(1);
    transform-box: fill-box;
    will-change: transform;
}

.contact-dock-icon-close {
    width: 4.2rem;
    height: 4.2rem;
    opacity: 0;
    transform: scale(.75) rotate(-20deg);
}

.contact-dock:not(.is-open).is-attention-nudge .contact-dock-icon-mail {
    animation: contactMailNudge .5s cubic-bezier(.2, .9, .22, 1) both;
    transform-origin: 12% 88%;
}

.contact-dock:not(.is-open).is-attention-jump .contact-dock-icon-mail {
    animation: contactMailJump .58s cubic-bezier(.22, .86, .18, 1) both;
}

.contact-dock:not(.is-open).is-attention-toss .contact-dock-icon-mail {
    animation: contactMailToss .62s cubic-bezier(.22, .86, .18, 1) both;
}

.contact-dock.is-open .contact-dock-icon-mail {
    opacity: 0;
    transform: scale(.55) rotate(18deg);
}

.contact-dock.is-open .contact-dock-icon-close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.contact-dock-content {
    position: absolute;
    inset: 3.4rem 7.2rem 3rem 3.2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(1.2rem, .6rem, 0);
    transition: opacity .18s ease, transform .28s cubic-bezier(.22, .84, .2, 1), visibility 0s linear .28s;
    visibility: hidden;
}

.contact-dock.is-open .contact-dock-content {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: .09s, .09s, 0s;
    visibility: visible;
}

.contact-dock.is-closing .contact-dock-content {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(.8rem, .4rem, 0);
    transition-duration: .12s, .16s, 0s;
    transition-delay: 0s, 0s, .16s;
    visibility: hidden;
}

.contact-dock-small,
.contact-dock-title {
    margin: 0;
    color: #fff;
    font-family: var(--main-font);
    font-size: clamp(2.65rem, 2.15vw, 3.55rem);
    font-weight: 900;
    line-height: .86;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

.contact-dock-title {
    margin-top: .1rem;
}

.contact-dock-mail {
    display: inline-block;
    align-self: flex-start;
    margin-top: clamp(1.4rem, 1.1vw, 1.9rem);
    color: #fff;
    font-family: var(--main-font);
    font-size: clamp(1.45rem, 1.18vw, 1.9rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
    width: max-content;
    max-width: 100%;
}

.contact-dock-links {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.contact-dock-links li {
    display: flex;
    align-items: center;
}

.contact-dock-links li + li::before {
    content: '';
    display: block;
    width: .2rem;
    height: 2.5rem;
    margin: 0 clamp(.9rem, .85vw, 1.4rem);
    background: #fff;
}

.contact-dock-links a {
    color: #fff;
    font-family: var(--main-font);
    font-size: clamp(1.25rem, .92vw, 1.55rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;
}

.contact-dock a:hover,
.contact-dock a:focus-visible {
    color: #fff;
    outline: 2px solid #fff;
    outline-offset: .3rem;
}

.contact-dock-toggle:hover,
.contact-dock-toggle:focus-visible {
    color: #fff;
    outline: none;
}

/* Responsive navigation fix */
@media screen and (min-width: 1000px) {
    .menu-toggle {
        display: none !important;
    }
}

@media screen and (max-width: 999px) {
    .contact-scroll-top {
        bottom: calc(clamp(8.2rem, 19vw, 9.4rem) + .8rem);
        width: clamp(8.2rem, 19vw, 9.4rem);
        height: clamp(8.2rem, 19vw, 9.4rem);
    }

    .contact-dock {
        width: clamp(8.2rem, 19vw, 9.4rem);
        height: clamp(8.2rem, 19vw, 9.4rem);
    }

    .contact-dock.is-open {
        width: min(38rem, calc(100vw - 2.4rem));
        height: 18.9rem;
    }

    .contact-dock.is-open .contact-scroll-top {
        bottom: calc(18.9rem + .8rem);
    }

    .contact-dock.is-open .contact-dock-toggle {
        top: 1.5rem;
        right: 1.4rem;
        width: 4.8rem;
        height: 4.8rem;
    }

    .contact-dock-icon-mail {
        width: clamp(5.45rem, 12.4vw, 6.25rem);
        height: clamp(4.1rem, 9.3vw, 4.7rem);
    }

    .contact-dock-icon-close {
        width: 4.3rem;
        height: 4.3rem;
    }

    .contact-dock-content {
        inset: 1.8rem 6.4rem 2rem 2.4rem;
    }

    .contact-dock-small,
    .contact-dock-title {
        font-size: clamp(2.7rem, 7.7vw, 3.25rem);
    }

    .contact-dock-mail {
        margin-top: 1.8rem;
        font-size: clamp(1.35rem, 4vw, 1.65rem);
    }

    .contact-dock-links {
        margin-top: clamp(2.7rem, 8vw, 3.8rem);
    }

    .contact-dock-links a {
        font-size: clamp(1.25rem, 3.8vw, 1.45rem);
    }

    .contact-dock-links li + li::before {
        height: 2.2rem;
        margin: 0 .75rem;
    }
}
@media screen and (max-width: 420px) {
    .contact-dock {
        width: 8.2rem;
        height: 8.2rem;
    }

    .contact-dock.is-open {
        width: calc(100vw - 3.2rem);
        height: 19rem;
    }

    .contact-dock-content {
        inset: 1.7rem 5.8rem 1.8rem 2.3rem;
    }

    .contact-dock-small,
    .contact-dock-title {
        font-size: clamp(2.45rem, 7.4vw, 3rem);
    }

    .contact-dock-mail {
        font-size: clamp(1.25rem, 3.75vw, 1.5rem);
    }

    .contact-dock-icon-mail {
        width: 5.45rem;
        height: 4.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-dock,
    .contact-dock-content,
    .contact-dock-icon {
        transition: none;
    }

    .contact-dock:not(.is-open).is-attention-nudge .contact-dock-icon-mail,
    .contact-dock:not(.is-open).is-attention-jump .contact-dock-icon-mail,
    .contact-dock:not(.is-open).is-attention-toss .contact-dock-icon-mail {
        animation: none;
    }
}
.profile-page {
    min-height: 100vh;
    padding: clamp(7rem, 8vw, 11rem) clamp(1.6rem, 4vw, 5rem) clamp(16rem, 18vw, 22rem);
    background: #000;
    color: var(--body-font-color);
}

.profile-hero,
.profile-grid {
    width: min(118rem, 100%);
    margin: 0 auto;
}

.profile-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(30rem, .82fr);
    gap: clamp(1.4rem, 1.6vw, 2.4rem);
    align-items: stretch;
    margin-bottom: clamp(1.4rem, 1.6vw, 2.4rem);
}

.profile-copy {
    display: flex;
    min-height: clamp(34rem, 38vw, 58rem);
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: clamp(1rem, 1vw, 1.8rem);
}

.profile-lead {
    max-width: 16ch;
    margin: clamp(2rem, 2.2vw, 3rem) 0 0;
    color: var(--body-font-color);
    font-family: var(--main-font);
    font-size: clamp(3.2rem, 4.8vw, 8.2rem);
    font-weight: 900;
    line-height: .86;
    letter-spacing: 0;
}

.profile-portrait {
    position: relative;
    display: flex;
    min-height: clamp(34rem, 38vw, 58rem);
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(2.2rem, 2.5vw, 3.4rem);
    overflow: hidden;
    background: #101010;
    border-top: .8rem solid var(--akzent-color);
}

.profile-portrait::before {
    content: '';
    position: absolute;
    inset: clamp(2rem, 2.3vw, 3.4rem);
    border: .28rem solid #2b2b2b;
}

.profile-portrait::after {
    content: 'AB';
    position: absolute;
    right: -.2rem;
    bottom: -.9rem;
    color: #181818;
    font-family: var(--main-font);
    font-size: clamp(15rem, 18vw, 29rem);
    font-weight: 900;
    line-height: .72;
    letter-spacing: 0;
}

.profile-portrait span,
.profile-portrait strong {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--main-font);
    font-weight: 900;
    line-height: .9;
    letter-spacing: 0;
}

.profile-portrait span {
    max-width: 9ch;
    margin-bottom: auto;
    color: var(--akzent-color);
    font-size: clamp(2rem, 1.8vw, 3.2rem);
}

.profile-portrait strong {
    max-width: 8ch;
    font-size: clamp(4.2rem, 5.6vw, 9.4rem);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.4rem, 1.6vw, 2.4rem);
}

.profile-panel {
    min-width: 0;
    padding: clamp(2.2rem, 2.5vw, 3.4rem);
    background: #101010;
    border-top: .6rem solid var(--akzent-color);
}

.profile-panel-wide {
    grid-column: 1 / -1;
}

.profile-panel h2,
.profile-timeline h3 {
    margin: 0 0 1.4rem;
    color: inherit;
    font-family: var(--main-font);
    font-weight: 900;
    line-height: .92;
    letter-spacing: 0;
    text-transform: none;
}

.profile-panel h2 {
    font-size: clamp(2.8rem, 3vw, 5.2rem);
}

.profile-panel p,
.profile-panel li,
.profile-timeline dt,
.profile-timeline dd {
    color: inherit;
    font-size: clamp(1.55rem, 1.08vw, 1.9rem);
    line-height: 1.45;
}

.profile-panel p {
    max-width: 66ch;
}

.profile-panel ul {
    margin: 0;
    padding-left: 1.9rem;
}

.profile-career {
    padding: clamp(2.6rem, 3vw, 4.6rem);
    background: #050505;
}

.profile-timeline h3 {
    margin-top: clamp(4rem, 4.2vw, 6.4rem);
    color: #fff;
    font-size: clamp(2.2rem, 2vw, 3.4rem);
}

.profile-timeline h3:first-child {
    margin-top: 0;
}

.profile-timeline dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.profile-timeline dl > div {
    position: relative;
    display: grid;
    grid-template-columns: minmax(20rem, .64fr) minmax(0, 1fr);
    gap: clamp(2.4rem, 4vw, 7rem);
    padding: clamp(2rem, 2.2vw, 3.2rem) 0 clamp(2.2rem, 2.5vw, 3.6rem);
    border-top: .1rem solid #2b2b2b;
}


.profile-timeline dt {
    margin: 0;
    color: #fff;
    font-family: var(--main-font);
    font-weight: 900;
}

.profile-timeline dd {
    position: relative;
    margin: 0;
    padding-left: clamp(1.6rem, 1.4vw, 2.2rem);
}

.profile-timeline dd::before {
    content: '';
    position: absolute;
    top: .55em;
    left: 0;
    width: .75rem;
    height: .75rem;
    background: var(--akzent-color);
}

.profile-timeline strong {
    font-family: var(--main-font);
    font-weight: 900;
}
/* Profile refinement */
.profile-role {
    margin: clamp(.65rem, .75vw, 1.1rem) 0 0;
    color: var(--body-font-color);
    font-size: clamp(2.2rem, 2.1vw, 3.4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
}

.profile-portrait {
    justify-content: flex-end;
    background:
        linear-gradient(135deg, rgba(86, 8, 255, .16), rgba(86, 8, 255, 0) 34%),
        #101010;
}

.profile-portrait::before {
    inset: clamp(2.2rem, 2.4vw, 3.8rem);
    border-color: #242424;
}

.profile-portrait::after {
    content: none;
}

.profile-portrait:empty::before {
    background:
        linear-gradient(90deg, transparent calc(50% - .1rem), #242424 calc(50% - .1rem), #242424 calc(50% + .1rem), transparent calc(50% + .1rem)),
        linear-gradient(0deg, transparent calc(50% - .1rem), #242424 calc(50% - .1rem), #242424 calc(50% + .1rem), transparent calc(50% + .1rem));
}

.profile-career {
    display: block;
    padding-top: clamp(3rem, 3vw, 4.8rem);
    background: #050505;
}

.profile-career > h2 {
    margin: 0 0 clamp(4.4rem, 4.5vw, 7rem);
    color: var(--body-font-color);
    font-size: clamp(3.8rem, 4.3vw, 7.2rem);
    line-height: .86;
}

.profile-timeline h3 {
    margin: clamp(5.8rem, 5.4vw, 8.2rem) 0 clamp(1.8rem, 1.8vw, 2.8rem);
    color: var(--akzent-color);
    font-size: clamp(2.2rem, 2vw, 3.2rem);
    line-height: .95;
}

.profile-timeline h3:first-child {
    margin-top: 0;
}

.profile-timeline dl {
    border-top: .1rem solid #242424;
}

.profile-timeline dl > div {
    grid-template-columns: minmax(19rem, .42fr) minmax(0, 1fr);
    gap: clamp(2rem, 3vw, 5rem);
    align-items: center;
    padding: clamp(2rem, 2.2vw, 3.2rem) 0;
    border-top: 0;
    border-bottom: .1rem solid #242424;
}

.profile-timeline dt {
    color: var(--akzent-color);
    font-size: clamp(1.45rem, .98vw, 1.75rem);
    line-height: 1.15;
}

.profile-timeline dd {
    padding-left: clamp(1.6rem, 1.4vw, 2.2rem);
    font-size: clamp(1.75rem, 1.25vw, 2.2rem);
    line-height: 1.25;
}

.profile-timeline dd::before {
    top: .45em;
    width: .85rem;
    height: .85rem;
}

.profile-focus {
    padding-top: clamp(2.2rem, 2.5vw, 3.4rem);
    padding-bottom: clamp(2.2rem, 2.5vw, 3.4rem);
    background: var(--akzent-color);
    border-top: 0;
    color: #fff;
}

.profile-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(.8rem, .85vw, 1.2rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.profile-chip-list li {
    display: inline-flex;
    align-items: center;
    min-height: 3.8rem;
    padding: .75rem 1.05rem;
    border: .2rem solid currentColor;
    color: inherit;
    font-family: var(--main-font);
    font-weight: 900;
    line-height: 1;
}

.profile-list-panel p {
    max-width: none;
}
@media screen and (max-width: 860px) {
    .profile-page {
        padding: 7rem 1.2rem 19rem;
    }

    .profile-hero,
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-hero {
        min-height: 0;
    }

    .profile-portrait {
        min-height: 34rem;
    }

    .profile-panel,
    .profile-panel-wide {
        grid-column: 1;
    }

    .profile-career {
        grid-template-columns: 1fr;
        gap: 2.6rem;
    }

    .profile-career > h2 {
        font-size: clamp(3.6rem, 11vw, 5.8rem);
    }

    .profile-timeline dl > div {
        grid-template-columns: 1fr;
        gap: .9rem;
    }

    .profile-timeline dd {
        padding-left: 1.8rem;
    }
}
.profile-focus.profile-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(1.4rem, 1.4vw, 2.1rem);
    padding-top: clamp(2.2rem, 2.5vw, 3.4rem);
    padding-bottom: clamp(2.2rem, 2.5vw, 3.4rem);
}

.profile-focus.profile-panel h2 {
    margin: 0;
}

.profile-focus .profile-chip-list {
    margin: 0;
    padding: 0;
    padding-left: 0;
}
.profile-focus.profile-panel {
    border: 0 !important;
    border-top: 0 !important;
    padding-top: calc(clamp(2.2rem, 2.5vw, 3.4rem) - .6rem);
}
.profile-cta {
    display: inline-block;
    width: max-content;
    max-width: 100%;
    padding: 1.05rem 1.7rem;
    border: .32rem solid var(--akzent-color);
    color: var(--body-font-color);
    font-family: var(--main-font);
    font-size: clamp(2.1rem, 1.65vw, 3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
}

.profile-cta:hover,
.profile-cta:focus-visible {
    background: var(--akzent-color);
    color: #fff;
}
.profile-hero {
    grid-template-columns: 1fr;
}

.profile-hero .profile-portrait {
    width: 100%;
    min-height: clamp(38rem, 44vw, 66rem);
    justify-content: flex-end;
    align-items: flex-start;
}

.profile-portrait-copy {
    position: relative;
    z-index: 1;
    max-width: min(72rem, calc(100% - clamp(2.2rem, 2.5vw, 3.4rem)));
}

.profile-portrait-title,
.profile-portrait-role {
    margin: 0;
    color: var(--body-font-color);
    font-family: var(--main-font);
    letter-spacing: 0;
    text-transform: none;
}

.profile-portrait-title {
    max-width: 9.5ch;
    font-size: clamp(3.8rem, 4.3vw, 7.2rem);
    font-weight: 900;
    line-height: .82;
}

.profile-portrait-role {
    margin-top: clamp(.8rem, .9vw, 1.4rem);
    font-size: clamp(2.2rem, 2vw, 3.2rem);
    font-weight: 400;
    line-height: 1.1;
}

@media screen and (max-width: 860px) {
    .profile-hero .profile-portrait {
        min-height: 42rem;
    }

    .profile-portrait-title {
        font-size: clamp(3.8rem, 11vw, 5.8rem);
    }
}
@keyframes textShineSweep {
    0%,
    18% {
        background-position: 135% 50%;
    }
    68%,
    100% {
        background-position: -35% 50%;
    }
}

.shine-highlight,
.profile-career-highlight dt,
.profile-career-highlight dd,
.profile-career-highlight strong {
    color: var(--akzent-color);
    background-image: linear-gradient(105deg, var(--akzent-color) 0%, var(--akzent-color) 40%, #7d9cff 49%, #a9c0ff 53%, #7d9cff 57%, var(--akzent-color) 68%, var(--akzent-color) 100%);
    background-size: 360% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShineSweep 5s cubic-bezier(.48, 0, .28, 1) infinite;
}

.shine-highlight {
    display: inline-block;
    font-weight: 900;
}


.profile-career-highlight dt {
    color: var(--akzent-color);
    background-image: linear-gradient(105deg, var(--akzent-color) 0%, var(--akzent-color) 42%, #7d9cff 50%, #a9c0ff 54%, #7d9cff 58%, var(--akzent-color) 68%, var(--akzent-color) 100%);
}

.profile-career-highlight dd,
.profile-career-highlight strong {
    color: var(--body-font-color);
    background-image: linear-gradient(105deg, var(--body-font-color) 0%, var(--body-font-color) 42%, #c8d8ff 50%, #ffffff 54%, #c8d8ff 58%, var(--body-font-color) 68%, var(--body-font-color) 100%);
}
.profile-magic-panel {
    padding-top: clamp(4.6rem, 5.2vw, 8.2rem);
    padding-bottom: clamp(4.8rem, 5.6vw, 8.8rem);
}

.profile-magic-copy {
    font-style: italic;
}

.profile-career .profile-timeline h3 {
    color: var(--body-font-color);
}

@media (prefers-reduced-motion: reduce) {
    .shine-highlight,
    .profile-career-highlight dt,
    .profile-career-highlight dd,
    .profile-career-highlight strong {
        animation: none;
    }
}
















/* Final homepage section rhythm */
.clients {
    column-gap: clamp(1.8rem, 5vw, 4.8rem);
    row-gap: clamp(2.4rem, 6vw, 5.2rem);
}

@media screen and (min-width: 1000px) {
    #clients .clients-container {
        margin-bottom: clamp(7rem, 4.5vw, 12rem);
    }

    #clients .clients {
        margin-bottom: clamp(7rem, 4.5vw, 12rem);
    }

    #awards .clients-container {
        margin-bottom: clamp(5rem, 3vw, 7rem);
    }

    #awards .awards {
        margin-bottom: clamp(24rem, 12vw, 28rem);
    }
}

@media screen and (max-width: 759px) {
    #clients .clients-container,
    #awards .clients-container {
        margin-top: 5vw;
        margin-bottom: 5vw;
    }
    #clients .clients {
        margin-bottom: clamp(4rem, 12vw, 6rem);
    }

    #awards .awards {
        margin-bottom: clamp(18rem, 48vw, 26rem);
    }

    #clients .clients {
        grid-gap: 0;
        column-gap: clamp(1.4rem, 5vw, 2.6rem);
        row-gap: clamp(2.4rem, 7vw, 4rem);
    }
}





