/* ==========================================
   RESPONSIVE CSS
========================================== */
/* ==========================================
   MOBILE NAVIGATION
========================================== */

.mobile-toggle{
    display:none;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:0;

    width:320px;
    max-width:85vw;
    height:100dvh;

    background:var(--white);

    display:flex;
    flex-direction:column;

    padding:32px;

    overflow-y:auto;

    transform:translateX(100%);
    transition:transform .35s ease;

    z-index:99999;

    box-shadow:-10px 0 30px rgba(0,0,0,.15);
}

.mobile-menu.active{
    transform:translateX(0);
}

.mobile-overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:99998;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-close{

    align-self:flex-end;

    border:none;
    background:none;

    color:var(--black);

    font-size:28px;
    cursor:pointer;

}

.mobile-menu ul{
    list-style:none;
    padding:0;
    margin:40px 0;
}

.mobile-menu li{
    margin-bottom:22px;
}

.mobile-menu a{
    text-decoration:none;
    color:var(--black);
    font-size:20px;
    font-weight:600;
}

.mobile-menu a:hover{

    color:var(--text);

}

.mobile-btn{
    margin-top:auto;

    display:block;

    padding:16px 20px;

    text-align:center;

    text-decoration:none;

    border-radius:10px;

    background:#ffffff;

    color:#111111 !important;

    border:1px solid #2a2a2a;

    font-weight:600;
}

html.dark .mobile-btn{
    background:#ffffff;
    color:#111111 !important;
    border-color:#ffffff;
}

.mobile-btn:hover{
    background:#000000;
}

/* ==========================================
   1200px
========================================== */

@media (max-width:1200px){

}


/* ==========================================
   992px
========================================== */

@media (max-width:992px){
    
    .hero-content{
    width:100%;
    margin-right:0;
    }
        
    .hero-grid{
            gap:40px;
    }

    /* ==========================
       Header
    ========================== */

    .desktop-menu,
    .header-btn{
        display:none;
    }

    .mobile-toggle{
        display:block;
        font-size:30px;
        background:none;
        border:none;
        cursor:pointer;
        color:var(--black);
    }

    .logo img{
        width:150px;
    }

    .site-header{
        padding:18px 0;
    }
    
    
}   /* <-- ADD THIS */


/* ==========================================
   768px
========================================== */

@media (max-width:768px){

    /* ==========================
       HOME HERO
    ========================== */

    .hero{
        padding:60px 0 80px;
    }
    
    .hero-tag{
    font-size:12px;
    }
    
    .hero-content{
        max-width:100%;
    }
    
    .hero p{
        max-width:100%;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }

    .hero-content{
        width:100%;
        margin-right:0;
    }
    
    .hero-image{
        justify-content:center;
    }
    
    .hero-mockup{
        width:100%;
        max-width:620px;
    }

    .hero h1{
        font-size:52px;
        line-height:1.1;
    }

    .hero p{
        font-size:18px;
        line-height:1.8;
    }

    .hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:16px;
    }
    
    .hero-buttons a{
        width:100%;
        max-width:320px;
        justify-content:center;
    }

    .hero-placeholder{
    height:auto;
    }
    
    /* ==========================
   ABOUT PAGE
========================== */

.story{
    padding:70px 0;
}

.story-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.story-image{
    order:2;
}

.story-content{
    order:1;
    text-align:center;
}

.story-content h2{
    font-size:38px;
}

.story-content p{
    font-size:17px;
    line-height:1.8;
}

/* ==========================
   ABOUT - STATS
========================== */

.stats{
    padding:70px 0;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:34px;
}

.stat-box{
    padding:18px;
}

.stat-box h3{
    font-size:48px;
    margin-bottom:8px;
}

.stat-box p{
    font-size:16px;
    line-height:1.5;
}
    
    /* ==========================
   FEATURED WORK
========================== */

.featured-work{
    padding:70px 0;
}

.section-title{
    margin-bottom:40px;
}

.section-title h2{
    font-size:38px;
}

.section-title p{
    font-size:17px;
}

.portfolio-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:40px;
}

.portfolio-item h3{
    font-size:18px;
    margin:18px 18px 8px;
}

.portfolio-item p{
    margin:0 18px 18px;
    font-size:14px;
}

/* ==========================
   METHOD
========================== */

.method{
    padding:70px 0;
}

.method-grid{
    grid-template-columns:repeat(2,1fr);
    gap:28px 22px;
    margin-top:40px;
}

.method-item{
    text-align:center;
}

.method-item:last-child{
    grid-column:1 / -1;
    max-width:260px;
    margin:0 auto;
}

.number{
    width:60px;
    height:60px;
    margin:0 auto 18px;
    font-size:20px;
}

.method-item h3{
    font-size:22px;
    margin-bottom:12px;
}

.method-item p{
    font-size:15px;
    line-height:1.7;
}

/* ==========================
   WHY CHOOSE US
========================== */

.why-us{
    padding:70px 0;
}

.why-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.why-left{
    text-align:center;
}

.why-left h2{
    font-size:38px;
    margin:16px 0 20px;
}

.why-left p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
}

.why-right{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.feature-box{
    padding:28px;
}

.feature-box h3{
    font-size:20px;
    margin-bottom:12px;
}

.feature-box p{
    font-size:15px;
    line-height:1.7;
}

/* ==========================
   CREATIVE SERVICES
========================== */

.services{
    padding:70px 0;
}

.services-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:40px;
}

.service-card{
    padding:28px 24px;
}

.service-icon{
    width:62px;
    height:62px;
    font-size:24px;
    margin-bottom:20px;
}

.service-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.service-card p{
    font-size:14px;
    line-height:1.75;
}


/* ==========================
   FEATURED PROJECTS
========================== */

.featured-project,
.featured-project.reverse{
    grid-template-columns:1fr;
    gap:36px;
    margin-bottom:90px;
}

.featured-project.reverse .project-image,
.featured-project.reverse .project-info{
    order:unset;
}

.project-image{
    height:420px;
}

.project-info{
    text-align:center;
}

.project-info h2{
    font-size:44px;
    margin-bottom:18px;
}

.project-info p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:28px;
}

.project-info .btn-secondary{
    margin:0 auto;
}


/* ==========================
   PORTFOLIO GALLERY
========================== */

.portfolio-gallery{
    padding:70px 0;
}

.gallery-heading{
    max-width:100%;
    margin-bottom:42px;
}

.gallery-heading h2{
    font-size:38px;
    line-height:1.15;
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.gallery-item img{
    height:260px;
}

.gallery-content{
    padding:16px 6px 0;
}

.gallery-item h3{
    font-size:18px;
    margin-bottom:6px;
}

.gallery-item p{
    font-size:14px;
}

/* ==========================
   PORTFOLIO CASE STUDY
========================== */

.case-study{
    padding:80px 0;
}

.case-study .container{
    grid-template-columns:1fr;
    gap:40px;
}

.case-study-content{
    text-align:center;
}

.case-study-content h2{
    font-size:42px;
    line-height:1.15;
    margin-bottom:18px;
}

.case-study-content p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:28px;
}

.case-study-content ul,
.case-study-content li{
    text-align:left;
    max-width:320px;
    margin-left:auto;
    margin-right:auto;
}

.case-study-image{
    height:420px;
    max-width:520px;
    margin:0 auto;
}
    
/* ==========================
   FOOTER
========================== */

.footer{
    padding:60px 0 30px;
}

.footer-grid{
    grid-template-columns:1fr;
    gap:34px;
}

.footer-logo{
    height:48px;
    margin-bottom:18px;
}

.footer-col{
    min-width:0;
    text-align:center;
}

.footer-col h4{
    margin-bottom:16px;
    font-size:18px;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col p,
.footer-col a{
    overflow-wrap:anywhere;
    word-break:break-word;
    line-height:1.8;
}

.social-links{
    justify-content:center;
    margin-top:8px;
}

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    flex-direction:column;
    gap:16px;
    text-align:center;
}

.footer-legal{
    flex-direction:column;
    gap:8px;
}
    }


/* ==========================================
   576px
========================================== */

@media (max-width:576px){
    
    .site-header{
        padding:14px 0;
    }

    .logo img{
        width:130px;
    }

    .mobile-toggle{
        font-size:26px;
    }

    /* ==========================
       HOME / SERVICES / ABOUT HERO
    ========================== */

    .hero{
        padding:32px 0 40px;
    }
    
    .hero-content{
    width:100%;
    margin-right:0;
    text-align:center;
    }
    
    .hero-tag{
        display:block;
        margin-bottom:10px;
    }
    
    .hero p{
        max-width:100%;
    }
    
    .hero-image{
        margin:0 auto;
    }

    .hero-grid{
        gap:36px;
    }

    .hero h1{
        font-size:2.15rem;
        line-height:1.1;
        letter-spacing:-0.5px;
        margin-bottom:14px;
    }

    .hero p{
        font-size:15px;
        line-height:1.75;
        margin-bottom:22px;
    }

    .hero-buttons{
        gap:12px;
    }

    .hero-buttons a{
        width:100%;
        max-width:340px;
        padding:15px 22px;
    }

    .hero-mockup{
        width:100%;
        max-width:470px;
    }
    
    
    
    /* ==========================
   ABOUT PAGE
========================== */

.story{
    padding:60px 0;
}

.story-grid{
    gap:36px;
}

.story-content{
    text-align:center;
}

.story-content h2{
    font-size:32px;
    line-height:1.2;
    margin-bottom:18px;
}

.story-content p{
    font-size:15px;
    line-height:1.75;
}

.story-image .hero-placeholder{
    min-height:220px;
}

/* ==========================
   ABOUT - STATS
========================== */

.stats{
    padding:60px 0;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-top:28px;
}

.stat-box{
    padding:12px 8px;
}

.stat-box h3{
    font-size:42px;
    margin-bottom:6px;
}

.stat-box p{
    font-size:14px;
    line-height:1.45;
}

/* ==========================
   FEATURED WORK
========================== */

.featured-work{
    padding:60px 0;
}

.portfolio-grid{
    grid-template-columns:1fr;
    gap:14px;
}

.portfolio-item{
    max-width:420px;
    margin:0 auto;
}

.section-title{
    margin-bottom:32px;
}

.section-title span{
    font-size:11px;
}

.section-title h2{
    font-size:32px;
    line-height:1.2;
}

.section-title p{
    font-size:15px;
    line-height:1.75;
}

.portfolio-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.portfolio-item{
    border-radius:14px;
}

.portfolio-item h3{
    font-size:16px;
    margin:14px 14px 6px;
}

.portfolio-item p{
    margin:0 14px 16px;
    font-size:13px;
    line-height:1.6;
}

/* ==========================
   METHOD
========================== */

.method{
    padding:60px 0;
}

.method-grid{
    grid-template-columns:1fr;
    gap:24px;
    margin-top:36px;
}

.method-item{
    text-align:center;
}

.method-item:last-child{
    max-width:100%;
}

.number{
    width:54px;
    height:54px;
    font-size:18px;
    margin-bottom:16px;
}

.method-item h3{
    font-size:18px;
    margin-bottom:10px;
}

.method-item p{
    font-size:13px;
    line-height:1.65;
}

/* ==========================
   WHY CHOOSE US
========================== */

.why-us{
    padding:60px 0;
}

.why-grid{
    grid-template-columns:1fr;
    gap:34px;
}

.why-left{
    text-align:center;
}

.why-left h2{
    font-size:34px;
    line-height:1.15;
    margin:14px 0 18px;
}

.why-left p{
    max-width:520px;
    margin:0 auto 24px;
    font-size:15px;
    line-height:1.75;
}

.why-right{
    grid-template-columns:1fr;
    gap:20px;
    max-width:420px;
    margin:0 auto;
}

.feature-box{
    padding:30px 24px;
    border-radius:16px;
}

.feature-box h3{
    font-size:19px;
    margin-bottom:12px;
}

.feature-box p{
    font-size:14px;
    line-height:1.8;
}

/* ==========================
   CREATIVE SERVICES
========================== */

.services{
    padding:60px 0;
}

.services-grid{
    grid-template-columns:1fr;
    gap:14px;
    margin-top:32px;
}

.service-card{
    padding:22px 18px;
    border-radius:16px;
}

.service-icon{
    width:54px;
    height:54px;
    font-size:20px;
    margin-bottom:16px;
}

.service-card h3{
    font-size:18px;
    line-height:1.3;
    margin-bottom:10px;
}

.service-card p{
    font-size:13px;
    line-height:1.65;
}

/* ==========================
   FEATURED PROJECTS
========================== */

.featured-project,
.featured-project.reverse{
    grid-template-columns:1fr;
    gap:28px;
    margin-bottom:70px;
}

.featured-project.reverse .project-image,
.featured-project.reverse .project-info{
    order:unset;
}

.project-image{
    height:320px;
    border-radius:16px;
}

.project-info{
    text-align:center;
}

.project-info span{
    font-size:11px;
}

.project-info h2{
    font-size:34px;
    line-height:1.15;
    margin-bottom:14px;
}

.project-info p{
    font-size:15px;
    line-height:1.75;
    margin-bottom:22px;
}

.project-info .btn-secondary{
    margin:0 auto;
}

/* ==========================
   PORTFOLIO GALLERY
========================== */

.portfolio-gallery{
    padding:60px 0;
}

.gallery-heading{
    margin-bottom:32px;
}

.gallery-heading span{
    font-size:11px;
}

.gallery-heading h2{
    font-size:32px;
    line-height:1.18;
}

.gallery-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.gallery-item img{
    height:240px;
    border-radius:14px;
}

.gallery-content{
    padding:14px 4px 0;
}

.gallery-item h3{
    font-size:18px;
    line-height:1.3;
    margin-bottom:6px;
}

.gallery-item p{
    font-size:14px;
    line-height:1.6;
}

/* ==========================
   PORTFOLIO CASE STUDY
========================== */

.case-study{
    padding:60px 0;
}

.case-study .container{
    grid-template-columns:1fr;
    gap:30px;
}

.case-study-content{
    text-align:center;
}

.case-study-content span{
    font-size:11px;
}

.case-study-content h2{
    font-size:32px;
    line-height:1.15;
    margin-bottom:14px;
}

.case-study-content p{
    font-size:15px;
    line-height:1.75;
    margin-bottom:22px;
}

.case-study-content ul,
.case-study-content li{
    text-align:left;
    max-width:260px;
    margin-left:auto;
    margin-right:auto;
}

.case-study-image{
    height:280px;
    border-radius:16px;
    margin:0 auto;
}

/* ==========================
   FOOTER
========================== */

.footer{
    padding:50px 0 24px;
}

.footer-grid{
    grid-template-columns:1fr;
    gap:36px;
}

.footer-logo{
    height:42px;
    margin:0 auto 18px;
}

.footer-col:last-child{
    margin-bottom:0;
}

.footer-col h4{
    font-size:17px;
    margin-bottom:14px;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col p,
.footer-col a{
    font-size:14px;
    line-height:1.75;
}

.social-links{
    gap:14px;
}

.social-links a{
    width:38px;
    height:38px;
}

.footer-bottom{
    margin-top:40px;
    gap:14px;
}

.footer-bottom p{
    font-size:13px;
}

.footer-legal{
    gap:6px;
}

.footer-legal a{
    font-size:13px;
}

/* ==========================
   CTA
========================== */

.cta{
    padding:80px 0;
}

.cta h2{
    font-size:42px;
    line-height:1.15;
}

.cta p{
    font-size:16px;
    line-height:1.75;
    margin-bottom:30px;
}

.cta .btn-dark{
    width:100%;
    max-width:260px;
    justify-content:center;
}

}