/* ===================================
   RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#F5F5F5;
    font-family:"Space Grotesk",sans-serif;
    overflow-x:hidden;
}


/* ===================================
   COLORS
=================================== */

:root{

    --bg:#050505;

    --white:#F5F5F5;

    --burnt:#E56A24;

    --grey:#8C8C8C;

}


/* ===================================
   INTRO
=================================== */

.intro{

    position:fixed;

    inset:0;

    background:var(--bg);

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    z-index:9999;

}

.intro-slide{

    position:absolute;

    opacity:0;

    transform:translateY(20px);

    transition:
    opacity .9s ease,
    transform .9s ease;

    text-align:center;

}

.intro-slide.active{

    opacity:1;

    transform:translateY(0);

}
.intro h2{

    font-size:92px;

    line-height:.92;

    letter-spacing:-5px;

    font-weight:700;

    max-width:1100px;

}

.logo-slide h1{

    font-size:130px;

    letter-spacing:-7px;

    font-weight:700;

}

.intro-logo{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:420px;
    max-width:80%;
    height:auto;
    z-index:5;
}

.accent{

    color:var(--burnt);

}
.focus{

    color:var(--burnt);

}

.league{

    display:block;

    margin-top:15px;

    font-size:30px;

    letter-spacing:3px;

    font-style:italic;

    font-weight:300;

    color:#bdbdbd;

}

/* crack layer */



/* ===================================
   HERO
=================================== */

.hero{

    position: relative;
    min-height:100vh;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:90px 60px 0px;

    overflow:hidden;

    opacity:0;
    transform:translateY(40px);
    transition:1.2s ease;

}


nav{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:90px;

    padding:0 60px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(5,5,5,.55);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    z-index:999999;

    transition:.35s ease;

}

.logo{

display:flex;

align-items:center;

}

.logo img{

height:34px;

width:auto;

display:block;

}



nav ul{

    display:flex;

    gap:55px;

    list-style:none;

}

nav li{

    cursor:pointer;

    color:#d5d5d5;

    transition:.35s;

}
nav a{

    color:inherit;

    text-decoration:none;

    display:block;

}

nav li:hover{

    color:white;

}



.hero-content{

    width:900px;
    max-width:100%;
    margin:0;

}


.hero-content p{

    color:var(--grey);

    text-transform:uppercase;

    letter-spacing:4px;

    margin-bottom:22px;

}


.hero-content h1{

    font-size:82px;
    line-height:.95;
    letter-spacing:-4px;
    margin-bottom:32px;

}


.hero-content h1 span{

    color:var(--burnt);

}


.hero-content a{

    display:inline-block;

    text-decoration:none;

    color:white;

    border:1px solid rgba(255,255,255,.15);

    padding:18px 40px;

    border-radius:999px;

    transition:.35s;

}

.hero-content a:hover{

    background:var(--burnt);

    border-color:var(--burnt);

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(227,106,34,.25);

}
.logo-cloud{

position:relative;

width:900px;

height:650px;

display:flex;

justify-content:center;

align-items:center;

}



.logo-cloud .word{

position:absolute;

font-size:14px;

letter-spacing:2px;

text-transform:uppercase;

color:#777;

opacity:0;

transform:scale(1.3);

transition:.35s ease;

}

/* positions */

.logo-cloud .word:nth-child(2){top:20%;left:18%;}
.logo-cloud .word:nth-child(3){top:10%;left:68%;}
.logo-cloud .word:nth-child(4){top:24%;left:86%;}
.logo-cloud .word:nth-child(5){top:65%;left:20%;}
.logo-cloud .word:nth-child(6){top:72%;left:70%;}
.logo-cloud .word:nth-child(7){top:55%;left:92%;}
.logo-cloud .word:nth-child(8){top:35%;left:10%;}
.logo-cloud .word:nth-child(9){top:78%;left:40%;}
.logo-cloud .word:nth-child(10){top:60%;left:5%;}
.logo-cloud .word:nth-child(11){top:8%;left:42%;}
.logo-cloud .word:nth-child(12){top:4%;left:48%;}
.logo-cloud .word:nth-child(13){top:90%;left:72%;}
.logo-cloud .word:nth-child(14){top:46%;left:72%;}
.logo-cloud .word:nth-child(15){top:18%;left:28%;}
.logo-cloud .word:nth-child(16){top:54%;left:16%;}
.logo-cloud .word:nth-child(17){top:82%;left:50%;}
.logo-cloud .word:nth-child(18){top:12%;left:80%;}
.logo-cloud .word:nth-child(19){top:86%;left:25%;}
.logo-cloud .word:nth-child(20){top:38%;left:82%;}
.logo-cloud .word:nth-child(21){top:60%;left:74%;}
.logo-cloud .word:nth-child(22){top:32%;left:56%;}

/* ==========================
   SCROLL INDICATOR
========================== */

.scroll-indicator{

    position:absolute;

    bottom:28px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

}

.scroll-indicator span{

    font-size:11px;

    letter-spacing:5px;

    text-transform:uppercase;

    color:#777;

}

.line{

    width:1px;

    height:34px;

    background:#D96B2B;

    animation:scrollLine 1.5s infinite;

}

@keyframes scrollLine{

0%{

    height:10px;
    opacity:.2;

}

50%{

    height:34px;
    opacity:1;

}

100%{

    height:10px;
    opacity:.2;

}

}
/* =====================================
   SECTION 2 - THE GAP
===================================== */

.gap-section{

    background:#050505;
    color:#fff;

    height:100svh;
    min-height:100svh;

    display:flex;
    align-items:center;

padding:20px 8% 0;

    overflow:hidden;

}

.gap-container{

    width:100%;
    max-width:1280px;

    margin:0 auto;

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.gap-header{

    text-align:center;

    margin-bottom:28px;

}

.section-tag{

    color:#f47a20;
    font-size:.9rem;
    letter-spacing:4px;
    font-weight:600;
    margin-bottom:18px;
}

.gap-header h2{

    font-size:clamp(2.7rem,4vw,4rem);
    font-weight:700;
    line-height:1.12;
    letter-spacing:-2px;

}

.gap-header h2 span{

    color:#f47a20;
}

.gap-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-bottom:30px;

}

.gap-column{

    padding:38px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    background:rgba(255,255,255,.015);

    min-height:390px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    transition:.35s;

}

.gap-column:hover{

    border-color:rgba(244,122,32,.4);
    transform:translateY(-6px);
}

.gap-column h3{

    font-size:2rem;

    margin-bottom:34px;

}

.gap-column.left h3{

    color:#8d8d8d;
}

.gap-column.right h3{

    color:#fff;
}

.gap-column ul{

    list-style:none;
    padding:0;
    margin:0;
}

.gap-column li{

    font-size:1.22rem;

    padding:20px 0;

    line-height:1.5;

}

.gap-column.right li{

    color:#fff;
}

.gap-column li:last-child{

    border:none;
}

.gap-footer{

    text-align:center;

    margin-top:12px;
    margin-bottom:0;

}

.gap-footer p{

    font-size:3rem;

    line-height:1.05;

    font-weight:700;

    letter-spacing:-2px;

    color:#8d8d8d;

    margin:0;

}

.gap-footer span{

    display:block;

    margin-top:4px;

    font-size:3rem;

    color:#f47a20;

}

/* Responsive */

@media(max-width:900px){


.gap-header{

margin-bottom:60px;

}

.gap-section{

padding:100px 8%;

}
}

@media(max-width:1000px){

}

/* =====================================
   SECTION 3 - HOW WE WORK
===================================== */

.method-section{

    height:100svh;
    min-height:100svh;

    display:flex;
    align-items:center;
    justify-content:center;

padding:0 8% 30px;

    background:#050505;

    position:relative;

    margin:0;

}


.method-container{

    width:100%;
    max-width:1350px;

    margin:auto;

    text-align:center;

}

.method-container .section-tag{

    margin-bottom:70px;

}

.method-grid{

    display:grid;

    grid-template-columns:1fr auto 1fr auto 1fr;

    align-items:center;

    gap:50px;

}

.method-card{

    transition:.35s;

}

.method-card h2{

    font-size:clamp(2.5rem,3.6vw,4rem);

    font-weight:700;

    letter-spacing:-1px;

    margin-bottom:35px;

    color:#ffffff;

    transition:.35s;

}

.method-card ul{

    list-style:none;

    padding:0;
    margin:0;

}

.method-card li{

    color:#8f8f8f;

    font-size:1.1rem;

    line-height:2.2;

    transition:.35s;

}

.method-arrow{

    font-size:3rem;

    color:#f47a20;

    opacity:.55;

    user-select:none;

}

.method-card:hover h2{

    color:#f47a20;

}

.method-card:hover li{

    color:#ffffff;

}

@media(max-width:1000px){

.method-section{

height:auto;

padding:100px 8%;

}

.method-grid{

grid-template-columns:1fr;

gap:60px;

}

.method-arrow{

display:none;

}

}



body{

    overflow-y:auto;

}
/* =====================================
   SECTION 4 - BRANDS
===================================== */

.brands-section{

height:100vh;

background:#050505;

display:flex;

align-items:center;

justify-content:center;

padding:0 8%;

scroll-margin-top:90px;

}

.brands-container{

    width:100%;
    max-width:1350px;

    text-align:center;

}

.brands-container .section-tag{

    margin-bottom:70px;

}

.brands-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.flip-card{

    perspective:1200px;

    height:140px;

}

.flip-card-inner{

    position:relative;

    width:100%;
    height:100%;

    transition:transform .6s cubic-bezier(.22,.61,.36,1);

    transform-style:preserve-3d;

}

.flip-card:hover .flip-card-inner{

    transform:rotateY(180deg);

}

.flip-front,
.flip-back{

    position:absolute;

    width:100%;
    height:100%;

    border:1px solid rgba(255,255,255,.12);

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    backface-visibility:hidden;

    background:#080808;

    transition:.35s;

}

.flip-front{

    font-size:1.25rem;

    color:#f5f5f5;

    letter-spacing:-.5px;

}

.flip-back{

    transform:rotateY(180deg);

    color:#E56A24;

    font-size:1.15rem;

    font-weight:600;

}

.flip-card:hover .flip-front,
.flip-card:hover .flip-back{

    border-color:#E56A24;

}

@media(max-width:900px){

.brands-section{

height:auto;

padding:100px 8%;

}

.brands-grid{

grid-template-columns:1fr;

}

}
/* =====================================
   SECTION - WHAT WE DO
===================================== */


.services-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:20px 0;
    overflow:visible;
}    


.services-container{

    width:min(1400px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:42% 58%;
    gap:50px;
    align-items:center;
    padding-top:0;

}

.services-copy{

    display:flex;
    align-items:center;
    justify-content:center;

}

#serviceHeadline{
        font-size:clamp(4rem,5vw,5.8rem);
    line-height:.92;
    letter-spacing:-3px;
    font-weight:700;

    color:#F5F5F5;
    transition:.35s ease;

}


#serviceHeadline span{

    color:#E56A24;

}


.services-copy span{

    color:#E56A24;

}

.services-list{

    display:flex;
    flex-direction:column;
    gap: 4px;

}

.service-item{

    display:grid;
    grid-template-columns:80px 1fr;
    gap:50px;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.08);
  cursor:pointer;

    transition:.3s;  
  
}

.services-list .service-item:last-child{

    border-bottom:none;

}

.service-number{

    color:#555;
    font-size:34px;
    font-weight:700;
    transition:.3s;

}

.service-content h3{

    font-size:clamp(1.6rem,2vw,2.2rem);
    line-height:1.08;
    font-weight:700;
    margin-bottom:8px;
    transition:.3s;

}

.service-content p{

    font-size:1rem;
    color:#8a8a8a;
    line-height:1.5;

}

.service-item.active .service-number{
    color:#F47A20;
}

.service-item.active h3{
    color:#F47A20;
}

@media(max-width:1000px){

.services-container{

grid-template-columns:1fr;

gap:60px;

}

.services-copy{

justify-content:flex-start;

}

.services-copy h2{

font-size:60px;

}

}
#services{
    scroll-margin-top: 8px;
}

.about-section{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:80px 0;

}

.about-container{

    width:min(900px,90%);

    margin:auto;

    text-align:center;

}

.about-tag{

    color:#F47A20;

    letter-spacing:4px;

    font-size:.9rem;

}

.about-container h2{

    font-size:clamp(2.4rem,3vw,3.2rem);

    color:#BDBDBD;

    font-weight:400;

    margin-top:40px;

}

.about-container h3{

    font-size:clamp(3.0rem,4vw,5.0rem);

    line-height:1;

    letter-spacing:-3px;

    margin:40px 0;

}

.about-container p{

    font-size:1.25rem;

    color:#8E8E8E;

    line-height:1.8;

    max-width:720px;

    margin:0 auto 28px;

}

/* =====================================
   CONTACT
===================================== */

.contact-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:80px 0;

}

.contact-container{

    width:min(900px,90%);

    margin:auto;

    text-align:center;

}

.contact-tag{

    color:#F47A20;

    letter-spacing:4px;

    font-size:.9rem;

    text-transform:uppercase;

}

.contact-container h2{

    margin-top:35px;

    font-size:clamp(4rem,6vw,6.5rem);

    line-height:.95;

    letter-spacing:-4px;

    color:#F5F5F5;

}

.contact-container p{

    margin:40px auto;

    max-width:650px;

    font-size:1.25rem;

    line-height:1.8;

    color:#8E8E8E;

}

.contact-buttons{

    display:flex;

    justify-content:center;

    gap:22px;

    margin-top:55px;

    flex-wrap:wrap;

}

.contact-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    min-width:290px;

    height:68px;

    border:1px solid #F47A20;

    color:#F47A20;

    background:transparent;

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;

}

.contact-btn i{

    font-size:1rem;

}

.contact-btn:hover{

    background:#F47A20;

    color:#000;

    transform:translateY(-2px);

}

.secondary{

    background:transparent;

    color:#F47A20;

}

.contact-info{

    margin-top:80px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

.contact-info a{

    color:#7F7F7F;

    text-decoration:none;

    transition:.3s;

}

.contact-info a:hover{

    color:#F47A20;

}

.contact-info span{

    color:#444;

}

@media(max-width:768px){

.contact-container h2{

    font-size:56px;

}

.contact-info{

    flex-direction:column;

    gap:14px;

}

.contact-info span{

    display:none;

}

}

.about-container a:hover{

    letter-spacing:2px;

}

html{

    scroll-behavior:auto;

}

html.lenis{

    height:auto;

}

.lenis.lenis-smooth{

    scroll-behavior:auto;

}

.lenis.lenis-stopped{

    overflow:hidden;

}

.copyright{

    width:100%;

    text-align:center;

    padding:30px 0;

    color:#666;

    font-size:.9rem;

}

/* ===========================
   BACK TO TOP
=========================== */

.back-to-top{

    position:fixed;

    right:40px;

    bottom:40px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

    cursor:pointer;

    z-index:9999;

    opacity:0;

    visibility:hidden;

    transition:.35s;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top span{

    font-size:11px;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#777;

}

.back-to-top .line{

    width:1px;

    height:34px;

    background:#F47A20;

    animation:arrowMove 1.5s infinite;

}

@keyframes arrowMove{

0%{

    height:10px;
    opacity:.2;

}

50%{

    height:34px;
    opacity:1;

}

100%{

    height:10px;
    opacity:.2;

}

}

.back-to-top .line::before{

    content:"";

    position:absolute;

    width:8px;

    height:8px;

    border-left:1px solid #F47A20;

    border-top:1px solid #F47A20;

    transform:rotate(45deg);

    margin-left:-4px;

    margin-top:-7px;

}

@media(max-width:768px){

.back-to-top{

right:18px;

bottom:25px;

}

}