*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
    background:black;
}
.hero{
    position:relative;
    width:100%;
    height:100vh;

    /* background-image:url("images/amber.png"); */
    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;

    color:white;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.18);
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    height: 90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding: 14px 80px;

    background:transparent;
    backdrop-filter:none;

    border-bottom:none;

    transition:all .4s ease;
}

.navbar.scrolled{
    background:rgba(8,8,8,.68);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
    text-decoration:none;
    color:#ffffff;
    font-family:"Cormorant Garamond", serif;
    font-size:24px;
    letter-spacing:4px;
    font-weight:500;
    text-transform:uppercase;
}


.menu{
    display:flex;
    gap: 80px;
    list-style:none;
}

.menu a{
    color:white;
    text-decoration:none;
    font-size:14px;
    opacity:.9;
}

.hero-content{
    position:absolute;
    padding-bottom: 140px;
    margin-top:40px;
    left: 0px;
    top:180px;
    max-width:1100px;
 

    flex:1;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding-left:80px;
    z-index:2;
}

.subtitle{
    display:block;

    margin-bottom:25px;

    color:#d8d8d8;

    letter-spacing:4px;

    font-size:14px;
}

.hero-content h1{
    font-size:78px;
    line-height:1.05;
    font-weight:300;
    margin-bottom:35px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;

    color:#e0e0e0;
}

.hero-content button{
    width:220px;
    height:60px;

    border:none;

    background:white;
    color:black;

    cursor:pointer;

    font-size:15px;
    font-weight:600;
}
.language{
    color:white;
    font-size:13px;
    letter-spacing:2px;
}

.active{
    color:#c9722b !important;
}

.hero-line{
    width:70px;
    height:2px;

    background:#c9722b;

    margin-bottom:30px;
}

.cta-link{
    display:inline-block;
    margin-top:40px;
    color:#c9722b;
    text-decoration:none;
    letter-spacing:2px;
    font-size:14px;
    margin-top:30px;

    display:inline-block;
}

.scroll-indicator{
    position:absolute;
    left:80px;
    bottom:140px;

    z-index:6;

    color:white;
    font-size:13px;
    letter-spacing:2px;
}

.bottom-bar{
    position:absolute;
    bottom:0;
    left:0;

    width:100%;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(10px);

    display:grid;
    grid-template-columns:repeat(4,1fr);

    z-index:5;
}

.bar-item{
    padding:30px;
    border-right:1px solid rgba(255,255,255,.08);
}

.bar-item h4{
    color:#c9722b;
    font-size:13px;
    margin-bottom:12px;
    font-weight:500;
}

.bar-item p{
    color:#d9d9d9;
    font-size:14px;
    line-height:1.6;
}
.slider{
    position:absolute;
    inset:0;

    z-index:0;
}

.slide{
    position:absolute;
    inset:0;

    opacity:0;

    transition:opacity 2s ease;

    background-size:100% auto;
    background-position:center 30%;
    background-repeat:no-repeat;
    background-color:#0d0b09;
}

.slide.active{
    opacity:1;
}

.slide:nth-child(1){
    background-image:url("images/images/desktop/amber.png");
}

.slide:nth-child(2){
    background-image:url("images/images/desktop/brutalist.png");
}

.slide:nth-child(3){
    background-image:url("images/images/desktop/dark-lounge.png");
}

.slide:nth-child(4){
    background-image:url("images/images/desktop/minimalist-retreat.png");
}
.slider-dots{
    position:absolute;
    right:40px;
    top:50%;

    transform:translateY(-50%);

    display:flex;
    flex-direction:column;
    gap:16px;

    z-index:5;
}

.dot{
    width:10px;
    height:10px;

    border:1px solid white;
    border-radius:50%;

    opacity:.7;

    transition:.4s;
}

.dot.active{
    background:#d17a2b;
    border-color:#d17a2b;

    transform:scale(1.3);

    opacity:1;
}
.approach{
    background:#0d0b09;
    color:white;
    padding:90px 80px 110px;
}

.approach-hero{
    display:grid;
    grid-template-columns:1fr 1.25fr;
    gap:70px;
    align-items:center;
    margin-bottom:90px;
}

.approach-text span,
.analysis-section span{
    color:#c9722b;
    font-size:13px;
    letter-spacing:2px;
}

.approach-text h2,
.analysis-section h2{
    font-family:'Cormorant Garamond', serif;
    font-size:58px;
    line-height:1.05;
    font-weight:400;
    margin:22px 0;
}

.approach-text h3{
    font-family:'Cormorant Garamond', serif;
    font-size:32px;
    line-height:1.2;
    font-weight:400;
    margin-bottom:28px;
}

.approach-text h3 em{
    color:#c9722b;
    font-style:normal;
}

.small-line{
    width:60px;
    height:1px;
    background:#c9722b;
    margin:30px 0;
}

.approach-text p{
    max-width:430px;
    color:#cfc6bd;
    line-height:1.8;
}

.approach-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    display:block;
    filter:brightness(.82);
}

.analysis-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
    margin-top:34px;
}

.analysis-card{
    border:1px solid rgba(255,255,255,.1);
    background:rgba(255,255,255,.03);
    padding:18px;
    transition:.4s;
}

.analysis-card:hover{
    transform:translateY(-8px);
    border-color:rgba(201,114,43,.55);
    background:rgba(201,114,43,.06);
}

.analysis-card img{
    width:100%;
    height:210px;
    object-fit:cover;
    margin-bottom:18px;
    filter:brightness(.82);
}

.analysis-card small{
    color:#c9722b;
}

.analysis-card h4{
    margin:8px 0 16px;
    font-size:14px;
    letter-spacing:1px;
}

.analysis-card p{
    color:#cfc6bd;
    font-size:14px;
    line-height:1.7;
}
.atmospheres{
    background:#0d0b09;
    color:white;
    padding:110px 80px;
    border-top:1px solid rgba(255,255,255,.08);
}

.atmospheres-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:40px;
    margin-bottom:42px;
}

.atmospheres-header span{
    color:#c9722b;
    font-size:13px;
    letter-spacing:2px;
}

.atmospheres-header h2{
    font-family:'Cormorant Garamond', serif;
    font-size:56px;
    line-height:1.05;
    font-weight:400;
    margin-top:20px;
}

.section-link{
    color:#c9722b;
    text-decoration:none;
    letter-spacing:2px;
    font-size:13px;
    white-space:nowrap;
    margin-bottom:10px;
}

.atmosphere-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.atmosphere-card{
    position:relative;
    height:430px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.1);
    background:#15110e;
}

.atmosphere-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:brightness(.78);
    transition:transform .7s ease, filter .7s ease;
}

.atmosphere-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.78),
        rgba(0,0,0,.15),
        rgba(0,0,0,.05)
    );
}

.atmosphere-content{
    position:absolute;
    left:24px;
    right:24px;
    bottom:24px;
    z-index:2;
}

.atmosphere-content h3{
    font-family:'Cormorant Garamond', serif;
    font-size:32px;
    line-height:1;
    font-weight:400;
    margin-bottom:18px;
}

.atmosphere-content p{
    color:#d5cdc4;
    font-size:14px;
    line-height:1.6;
    max-width:260px;
}

.atmosphere-content span{
    position:absolute;
    right:0;
    bottom:0;

    width:38px;
    height:38px;
    border:1px solid rgba(255,255,255,.45);
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
}

.atmosphere-card:hover img{
    transform:scale(1.06);
    filter:brightness(.95);
}

.atmosphere-card:hover .atmosphere-content span{
    border-color:#c9722b;
    color:#c9722b;
}
.services{
    background:#0d0b09;
    color:white;
    padding:105px 80px;
    border-top:1px solid rgba(255,255,255,.08);
}

.services-header{
    margin-bottom:55px;
}

.services-header span{
    color:#c9722b;
    font-size:13px;
    letter-spacing:2px;
}

.services-header h2{
    font-family:'Cormorant Garamond', serif;
    font-size:56px;
    line-height:1.05;
    font-weight:400;
    margin-top:20px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:28px;
}

.service-item{
    border-top:1px solid rgba(255,255,255,.14);
    padding-top:28px;
    transition:.35s;
}

.service-icon{
    color:#c9722b;
    font-size:34px;
    margin-bottom:24px;
    width:32px;
    height:32px;

}

.service-item h4{
    font-size:13px;
    letter-spacing:1.5px;
    margin-bottom:18px;
}

.service-item p{
    color:#cfc6bd;
    font-size:14px;
    line-height:1.7;
}

.service-item:hover{
    transform:translateY(-6px);
}

.service-item:hover h4{
    color:#c9722b;
}
.questions{
    background:#0d0b09;
    color:white;
    padding:110px 80px;
    border-top:1px solid rgba(255,255,255,.08);
}

.questions-top{
    min-height:340px;
    display:flex;
    align-items:flex-start;
    background:
        linear-gradient(to right, rgba(13,11,9,.95), rgba(13,11,9,.75), rgba(13,11,9,.2)),
        url("images/approach-main.png");
    background-size:cover;
    background-position:center right;
    padding:70px 0 40px;
    margin-bottom:42px;
}

.questions-top span{
    color:#c9722b;
    font-size:13px;
    letter-spacing:2px;
}

.questions-top h2{
    font-family:'Cormorant Garamond', serif;
    font-size:64px;
    line-height:1.05;
    font-weight:400;
    margin:24px 0;
}

.questions-top p{
    max-width:620px;
    color:#cfc6bd;
    font-size:16px;
    line-height:1.8;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.faq-item{
    border:1px solid rgba(255,255,255,.1);
    background:rgba(255,255,255,.025);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:white;
    cursor:pointer;

    display:grid;
    grid-template-columns:70px 1fr 40px;
    align-items:center;

    padding:24px 28px;
    text-align:left;
}

.faq-number{
    color:#c9722b;
    font-size:15px;
    letter-spacing:1px;
}

.faq-title{
    font-family:'Cormorant Garamond', serif;
    font-size:28px;
    font-weight:400;
}

.faq-icon{
    color:#c9722b;
    font-size:30px;
    text-align:right;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.faq-answer p{
    margin:0 28px 28px 98px;
    padding:32px 0 32px 34px;

    max-width:780px;

    border-left:4px solid #c9722b;

    color:#cfc6bd;
    font-size:16px;
    line-height:1.9;

    background:linear-gradient(to right, rgba(201,114,43,.08), transparent);
}

.questions-note{
    margin-top:30px;

    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.025);

    padding:34px 40px;

    display:grid;
    grid-template-columns:80px 1fr 60px;
    align-items:center;
    gap:34px;
}

.note-mark{
    color:#c9722b;
    font-family:'Cormorant Garamond', serif;
    font-size:54px;
    border-right:1px solid rgba(255,255,255,.15);
}

.questions-note p{
    font-family:'Cormorant Garamond', serif;
    font-size:32px;
    line-height:1.2;
}

.questions-note em{
    color:#c9722b;
    font-style:normal;
}

.note-symbol{
    color:#c9722b;
    font-size:32px;
    text-align:right;
}
.contact{
    background:#0d0b09;
    color:white;
    padding:130px 80px;
    border-top:1px solid rgba(255,255,255,.08);
}

.contact-inner{
    max-width:900px;
}

.contact span{
    color:#c9722b;
    font-size:13px;
    letter-spacing:2px;
}

.contact h2{
    font-family:'Cormorant Garamond', serif;
    font-size:72px;
    line-height:1.05;
    font-weight:400;
    margin:24px 0;
}

.contact{
    position:relative;
    min-height:120vh;
    background:url("images/contact-bg.png") center/cover no-repeat;
    padding:140px 80px 70px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.72) 42%,
        rgba(0,0,0,.28) 100%
    );
    z-index:0;
}

.contact *{
    position:relative;
    z-index:1;
}

.contact h2{
    color:white;
}

.contact p,
.contact-mail,
.contact-footer p{
    color:#d8d0c8;
}

.contact-button{
    color:#c9722b;
    border:1px solid #c9722b;
    background:transparent;
}

.contact-button:hover{
    background:#c9722b;
    color:#0d0b09;
}
.contact-actions{
    display:flex;
    align-items:center;
    gap:40px;
    margin-top:15px;
}

.contact-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:280px;
    height:64px;

    border:1px solid #c9722b;
    background:transparent;

    color:#c9722b;
    text-decoration:none;

    font-size:13px;
    letter-spacing:2px;

    transition:.35s ease;
}

.contact-button:hover{
    background:#c9722b;
    color:#0d0b09;
}

.contact-mail{
    color:#d8d0c8;
    text-decoration:none;
    font-size:13px;
    letter-spacing:2px;
}

.contact-mail:hover{
    color:#c9722b;
}

.contact-footer{
    
    display:flex;
    align-items:flex-start;
    justify-content:space-between;

    position:absolute;
    left:80px;
    right:80px;
    bottom:55px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;

    border-top:1px solid rgba(255,255,255,.10);
    padding-top:28px;
}

.contact-footer span{
    display:block;

    color:#c9722b;

    font-size:12px;
    letter-spacing:3px;

    margin-bottom:12px;
    
}

.contact-footer p{
    margin:0;

    color:#d8d0c8;

    font-size:16px;
    line-height:1.7;
}
.contact-content{
    max-width:760px;
        transform:translateY(40px);
}
.contact-info{
    display:flex;
    gap:80px;
}
.contact-mail{
    color:#c9722b;
    white-space:nowrap;
    min-width:420px;
}
.contact-footer{
    grid-template-columns:1.4fr 1fr 1fr 1fr;
}
html{
    scroll-behavior:smooth;
}

.menu a.active{
    color:#c9722b !important;
}

.menu a{
    transition:.3s ease;
}

.menu a:hover{
    color:#c9722b;
}
.approach-text h3{
    font-size:40px;
    line-height:1.25;
    font-weight:400;
    margin-top:34px;
    margin-bottom:34px;
}

.approach-text h3 em{
    color:inherit;
    font-style:normal;
}

.approach-text p{
    max-width:520px;
    font-size:17px;
    line-height:1.9;
    color:#d8d0c8;
}

.small-line{
    margin:34px 0;
}
.analysis-intro{
    max-width:620px;
    margin-top:18px;
    margin-bottom:46px;

    color:#bfb7ae;
    font-size:17px;
    line-height:1.8;
}

.analysis-card h4{
    line-height:1.35;
    max-width:280px;
}

.analysis-card p{
    line-height:1.8;
    color:#cfc7bf;
}
.analysis-card{
    transition:.4s ease;
}

.analysis-card:hover{
    transform:translateY(-6px);
    border-color:rgba(214,140,59,.35);
}
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}


.faq-icon{
    color:#c9722b;
    font-size:30px;
    text-align:right;
    display:block;
    transition:transform .35s ease;
    transform-origin:center;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}
.faq-item:hover{
    border-color:rgba(219,142,73,.35);
}
#hero-title,
#hero-text{
    transition:opacity .8s ease, transform .8s ease;
}

#hero-title.fade-out,
#hero-text.fade-out{
    opacity:0;
    transform:translateY(18px);
}


.mobile-bottom-nav{
    display:none;
}

@media (max-width:768px){

    body{
        overflow-x:hidden;
    }

    .navbar{
        height:64px;
        padding:18px 22px;
        background:rgba(8,8,8,.72);
        backdrop-filter:blur(12px);
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .logo{
        font-size:13px;
        letter-spacing:2.8px;
    }

    .menu{
        display:none;
    }

    .language{
        font-size:10px;
        letter-spacing:2px;
    }

    .mobile-bottom-nav{
        position:fixed;
        left:16px;
        right:16px;
        bottom:16px;
        z-index:9999;

        height:58px;
        display:flex;
        align-items:center;
        justify-content:space-around;

        background:rgba(8,8,8,.82);
        backdrop-filter:blur(14px);
        border:1px solid rgba(255,255,255,.12);
        border-radius:999px;
    }

    .mobile-bottom-nav a{
        color:#d8d0c8;
        text-decoration:none;
        font-size:19px;
    }

    .mobile-bottom-nav a.active{
        color:#c9722b;
    }

    .hero{
        height:100vh;
        min-height:720px;
    }

    .slide{
        background-size:cover;
        background-position:center;
    }

    .hero-content{
        top:120px;
        left:0;
        padding-left:24px;
        padding-right:24px;
        padding-bottom:0;
        margin-top:0;
        max-width:100%;
    }

    .hero-line{
        width:58px;
        margin-bottom:24px;
    }

    .subtitle{
        font-size:11px;
        letter-spacing:3px;
        margin-bottom:24px;
    }

    .hero-content h1{
        font-size:46px;
        line-height:1.05;
        margin-bottom:26px;
        max-width:340px;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.7;
        max-width:320px;
        margin-bottom:24px;
    }

    .cta-link{
        font-size:11px;
        letter-spacing:2px;
        margin-top:18px;
    }

    .slider-dots{
        right:20px;
        gap:13px;
    }

    .dot{
        width:8px;
        height:8px;
    }

    .bottom-bar,
    .scroll-indicator{
        display:none;
    }

    .approach,
    .services,
    .atmospheres,
    .questions,
    .contact{
        padding:82px 24px;
    }

    .approach-hero{
        grid-template-columns:1fr;
        gap:42px;
        margin-bottom:74px;
    }

    .approach-text h2,
    .analysis-section h2,
    .services-header h2,
    .atmospheres-header h2{
        font-size:42px;
        line-height:1.05;
    }

    .approach-text h3{
        font-size:28px;
        line-height:1.25;
    }

    .approach-text p,
    .analysis-intro{
        font-size:14px;
        line-height:1.8;
        max-width:100%;
    }

    .approach-image img{
        height:360px;
    }

    .analysis-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .analysis-card{
        padding:16px;
    }

    .analysis-card img{
        height:210px;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:34px;
    }

    .service-item{
        padding-top:24px;
    }

    .atmospheres-header{
        display:block;
        margin-bottom:34px;
    }

    .section-link{
        display:none;
    }

    .atmosphere-grid{
        display:flex;
        overflow-x:auto;
        gap:16px;
        padding-bottom:18px;
        scroll-snap-type:x mandatory;
    }

    .atmosphere-grid::-webkit-scrollbar{
        display:none;
    }

    .atmosphere-card{
        min-width:82vw;
        height:520px;
        scroll-snap-align:start;
    }

    .atmosphere-content h3{
        font-size:30px;
    }

    .questions-top{
        min-height:auto;
        padding:70px 0;
        margin-bottom:34px;
        background:
            linear-gradient(to right, rgba(13,11,9,.96), rgba(13,11,9,.82)),
            url("images/approach-main.png");
        background-size:cover;
        background-position:center;
    }

    .questions-top h2{
        font-size:42px;
    }

    .questions-top p{
        font-size:14px;
        max-width:100%;
    }

    .faq-question{
        grid-template-columns:42px 1fr 28px;
        padding:22px 18px;
    }

    .faq-title{
        font-size:22px;
        line-height:1.2;
    }

    .faq-icon{
        font-size:26px;
    }

    .faq-answer p{
        margin:0 18px 24px 60px;
        padding:22px 0 22px 22px;
        font-size:14px;
        line-height:1.8;
    }

    .contact{
        min-height:100vh;
        padding:100px 24px 120px;
        justify-content:flex-start;
        background-position:center;
    }

    .contact-content{
        transform:none;
        max-width:100%;
    }

    .contact h2{
        font-size:44px;
        line-height:1.08;
    }

    .contact p{
        font-size:14px;
        line-height:1.7;
    }

    .contact-actions{
        flex-direction:column;
        align-items:flex-start;
        gap:22px;
        margin-top:34px;
    }

    .contact-button{
        width:100%;
        min-width:0;
        height:58px;
        font-size:11px;
    }

    .contact-mail{
        min-width:0;
        white-space:normal;
        font-size:11px;
    }

    .contact-footer{
        position:relative;
        left:auto;
        right:auto;
        bottom:auto;

        grid-template-columns:1fr;
        gap:26px;

        margin-top:70px;
        padding-top:28px;
    }

    .contact-footer p{
        font-size:14px;
    }

    .custom-cursor{
        display:none;
    }
        html, body{
        width:100%;
        overflow-x:hidden;
    }

    section{
        max-width:100vw;
        overflow:hidden;
    }

    .navbar{
        width:100vw;
    }

    .hero{
        height:100vh;
        min-height:760px;
        overflow:hidden;
    }

    .hero-content{
        top:120px;
        padding-left:24px;
        padding-right:24px;
        max-width:100vw;
    }

    .hero-content h1{
        font-size:44px;
        line-height:1.05;
        max-width:340px;
    }

    .hero-content p{
        font-size:14px;
        max-width:320px;
    }

    .slide{
        background-size:cover;
        background-position:center center;
    }

    .slide:nth-child(1){
        background-position:center center;
    }

    .slide:nth-child(2){
        background-position:center center;
    }

    .slide:nth-child(3){
        background-position:center center;
    }

    .slide:nth-child(4){
        background-position:center center;
    }

    .slider-dots{
        right:16px;
    }

    .analysis-grid{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .atmosphere-grid{
        display:flex;
        overflow-x:auto;
        overflow-y:hidden;
        gap:16px;
        padding-bottom:18px;
        scroll-snap-type:x mandatory;
    }

    .atmosphere-card{
        flex:0 0 84vw;
        height:520px;
        scroll-snap-align:start;
    }

    .contact{
        overflow:hidden;
        padding:100px 24px 120px;
    }

    .contact h2{
        font-size:42px;
    }

    .contact-actions{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
    }

    .contact-button{
        width:100%;
        min-width:0;
        max-width:100%;
    }

    .contact-mail{
        min-width:0;
        max-width:100%;
        white-space:normal;
    }

    .contact-footer{
        position:relative;
        left:auto;
        right:auto;
        bottom:auto;
        width:100%;
        grid-template-columns:1fr;
        gap:26px;
    }

    .mobile-bottom-nav{
        left:14px;
        right:14px;
        width:auto;
        max-width:calc(100vw - 28px);
    }

        .overlay{
        background:linear-gradient(
            90deg,
            rgba(0,0,0,.62) 0%,
            rgba(0,0,0,.38) 48%,
            rgba(0,0,0,.18) 100%
        );
        z-index:1;
    }

    .hero-content{
        z-index:3;
    }

    .slide:nth-child(1){
        background-position:58% center;
    }

    .slide:nth-child(2){
        background-position:52% center;
    }

    .slide:nth-child(3){
        background-position:58% center;
    }

    .slide:nth-child(4){
        background-position:48% center;
    }

    .hero-content h1{
        font-size:42px;
        max-width:330px;
    }
    .slide:nth-child(1){
    background-image:url("images/images/mobile/hero-amber-mobile.png");
    background-position:center center;
}

.slide:nth-child(2){
    background-image:url("images/images/mobile/hero-character-mobile.png");
    background-position:center center;
}

.slide:nth-child(3){
    background-image:url("images/images/mobile/hero-memory-mobile.png");
    background-position:center center;
}

.slide:nth-child(4){
    background-image:url("images/images/mobile/hero-silence-mobile.png");
    background-position:center center;
}


    .approach{
        padding:78px 24px 88px;
    }

    .approach-hero{
        gap:36px;
        margin-bottom:64px;
    }

    .approach-text h2{
        font-size:38px;
        line-height:1.08;
        margin:18px 0 28px;
    }

    .approach-text h3{
        font-size:26px;
        line-height:1.28;
        margin:0 0 26px;
    }

    .approach-text p{
        font-size:14px;
        line-height:1.8;
        max-width:330px;
    }

    .small-line{
        width:58px;
        margin:28px 0 32px;
    }

    .approach-image img{
        height:340px;
        object-position:center;
        filter:brightness(.78);
    }
    .approach-image{
    position:relative;
}

.approach-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.45),
        rgba(0,0,0,0)
    );
    pointer-events:none;
}
    .analysis-card{
        display:flex;
        flex-direction:column;
        padding:0;
        overflow:hidden;
        background:rgba(255,255,255,.025);
    }

    .analysis-card small{
        order:1;
        display:block;
        padding:22px 20px 16px;
        font-size:12px;
        letter-spacing:1px;
        margin-bottom:12px;
    }

    .analysis-card h4{
        order:2;
        padding:0 20px 28px;
        margin:0;
        font-size:18px;
        line-height:1.35;
        letter-spacing:1px;
    }

    .analysis-card img{
        order:3;
        width:100%;
        height:260px;
        margin:0;
        object-fit:cover;
        filter:brightness(.78);
        margin-top: 8px;
    }

    .analysis-card p{
        order:4;
        padding:22px 20px 26px;
        margin:0;
        font-size:15px;
        line-height:1.8;
    }
    .contact{
    min-height:100vh;
    padding:110px 24px 120px;
    justify-content:flex-start;
    }

    .contact h2{
        font-size:40px;
        line-height:1.08;
        margin-bottom:24px;
    }

    .contact p{
        font-size:14px;
        line-height:1.8;
        max-width:330px;
    }

    .contact-micro{
        margin-top:26px;
        color:#c9722b !important;
        font-size:13px !important;
        letter-spacing:1.5px;
    }

    .contact-actions{
        margin-top:42px;
        width:100%;
        gap:22px;
    }

    .contact-button{
        width:100%;
        min-width:0;
        max-width:100%;
        height:64px;

        display:flex;
        align-items:center;
        justify-content:center;

        font-size:12px;
        letter-spacing:2.4px;
        white-space:nowrap;
    }

    .contact-footer{
        margin-top:54px;
        grid-template-columns:1fr;
        gap:26px;
    }

    .contact-footer span{
        font-size:11px;
        letter-spacing:3px;
    }

    .contact-footer p{
        font-size:14px;
    }
        .contact{
        overflow:hidden;
    }

    .contact-actions{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:stretch;
    }

    .contact-button{
        width:100% !important;
        min-width:0 !important;
        max-width:100% !important;
        padding:0 18px;
        box-sizing:border-box;

        justify-content:center;
        overflow:hidden;

        font-size:11px;
        letter-spacing:2px;
    }

    .contact-footer{
        width:100% !important;
        display:grid;
        grid-template-columns:1fr !important;
        gap:26px;
        overflow:hidden;
    }

    .contact-mail,
    .contact-footer p{
        min-width:0 !important;
        max-width:100% !important;
        width:100% !important;
        white-space:normal !important;
        overflow-wrap:anywhere;
        word-break:break-word;
    }
    @media (max-width:768px){

    .contact-footer{
        display:flex !important;
        flex-direction:column !important;
        align-items:flex-start;
        gap:32px;
        margin-top:40px;
    }

    .contact-footer > div{
        width:100%;
    }

    .contact-footer span{
        display:block;
        margin-bottom:12px;

        font-size:11px;
        letter-spacing:3px;

        color:#c9722b;
    }

    .contact-footer p{
        font-size:18px;
        line-height:1.8;

        white-space:normal;
        word-break:break-word;
    }
}
@media (max-width:768px){

    .contact-info{
        display:flex;
        flex-direction:column;

        align-items:flex-start;
        gap:32px;

        margin-top:40px;
    }

    .contact-info div{
        width:100%;
    }

    .contact-info span{
        display:block;

        margin-bottom:12px;

        color:#c9722b;

        font-size:11px;
        letter-spacing:3px;
    }

    .contact-info p{
        margin:0;

        font-size:18px;
        line-height:1.7;

        word-break:break-word;
    }
}
}

@media (max-width:768px){

    body,
    a,
    button{
        cursor:auto !important;
    }

    .custom-cursor{
        display:none !important;
    }

    html,
    body{
        width:100%;
        overflow-x:hidden;
    }

    .navbar{
        left:0;
        right:0;
        width:100%;
        padding:18px 22px;
    }

    .hero-content{
        left:0;
        padding-left:24px;
        padding-right:24px;
        max-width:100%;
    }
}
@media (min-width:769px){

    body,
    a,
    button{
        cursor:url("images/cursor-v.png") 8 8, auto !important;
    }

    .custom-cursor{
        display:none !important;
    }
}