


/*====================================================
HERO
====================================================*/

.hero{

    padding:60px 0 60px;
	background: #dcdcdc;

}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:center;

}

.project-label{

    display:inline-block;

    padding:7px 18px;

    background:#111;
    color:#fff;

    border-radius:50px;

    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;

    margin-bottom:25px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:1.05;
    margin-bottom:15px;

}

.hero h2{

    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    font-weight:500;
    color:#777;
    margin-bottom:25px;

}

.subtitle{

    font-size:18px;
    color:#555;
    margin-bottom:40px;

}


/*====================================================
INFO BOX
====================================================*/

.hero-info{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

}

.info-box{

    padding:25px;

    background:#fff;

    border-radius:16px;

    border:1px solid #ececec;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.info-box h4{

    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#999;
    margin-bottom:12px;

}

.info-box p{

    font-size:15px;
    color:#444;

}


/*====================================================
HERO IMAGE
====================================================*/

.hero-image{

    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
	width: 75%;

}

.hero-image img{

    transition:.6s;

}

.hero-image:hover img{

    transform:scale(1.05);

}


/*====================================================
INTRO
====================================================*/

.intro{

    padding:70px 0;

}

.intro-card{

    background:#fff;

    padding:60px;

    border-radius:20px;

    box-shadow:0 15px 45px rgba(0,0,0,.05);

    border:1px solid #ececec;

}

.intro-card h3{

    font-family:'Cormorant Garamond',serif;
    font-size:44px;
    margin-bottom:25px;

}

.intro-card p{

    color:#555;
    margin-bottom:20px;
    font-size:17px;

}


/*====================================================
FEATURE SECTION
====================================================*/

.feature-section{

    padding:90px 0;

}

.feature-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.feature-image{

    overflow:hidden;
    border-radius:18px;
	width: 75%;

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.feature-image img{

    transition:.5s;

}

.feature-image:hover img{

    transform:scale(1.08);

}

.feature-content h3{

    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    margin-bottom:20px;

}

.feature-content p{

    color:#555;
    margin-bottom:20px;
    font-size:17px;

}

.quote-box{

    margin-top:15px;

    padding:30px;

    border-left:5px solid #111;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    border-radius:12px;

}

.quote-box p{

    font-style:italic;
    font-size:18px;
    color:#333;

}


/*====================================================
GALLERY SECTION
====================================================*/

.gallery-section{
    padding:10px 0;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-title span{
    display:inline-block;
    color:#777;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:15px;
}

.section-title h2{
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    margin-bottom:20px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.gallery-item{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    cursor:pointer;
}

.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.gallery-item img{
    aspect-ratio:4/3;
    object-fit:cover;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

.gallery-item.large{
    grid-column:span 2;
}

.gallery-item.wide{
    grid-column:span 2;
}

.caption{
    padding:22px;
}

.caption h4{
    font-size:22px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:8px;
}

.caption p{
    color:#666;
    font-size:15px;
}

/*====================================================
WINTER SECTION
====================================================*/

.winter-section{
    padding:100px 0;
    background:#f4f4f4;
}

.winter-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.winter-image{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.winter-content h3{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    margin-bottom:25px;
}

.winter-content p{
    margin-bottom:18px;
    color:#555;
}

/*====================================================
PROJECT NOTES
====================================================*/

.notes-section{
    padding:10px 0;
}

.notes-card{
    background:#fff;
    border-radius:18px;
    padding:60px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.notes-card h2{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    margin-bottom:25px;
}

.notes-card p{
    color:#555;
    margin-bottom:18px;
}

/*====================================================
INTERIOR SECTION
====================================================*/

.interior-section{
    padding:20px 0;
}

.interior-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}



/*====================================================
LIGHTBOX
====================================================*/

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    flex-direction:column;
    padding:30px;
}

.lightbox.active{
    display:flex;
}

.lightbox img{
    max-width:30%;
    max-height:75vh;
    border-radius:10px;
}

.close-lightbox{
    position:absolute;
    top:25px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}

.lightbox-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
    font-size:22px;
}

.prev{
    left:25px;
}

.next{
    right:25px;
}

.lightbox-caption{
    color:#fff;
    text-align:center;
    margin-top:25px;
}

.lightbox-caption h3{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    margin-bottom:10px;
}

/*====================================================
BACK TO TOP
====================================================*/

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#111;
    color:#fff;
    cursor:pointer;
    display:none;
    font-size:20px;
    z-index:1000;
}

#topBtn.show{
    display:block;
}

/*====================================================
RESPONSIVE
====================================================*/

@media (max-width:992px){

.hero-grid,
.feature-grid,
.winter-grid{
    grid-template-columns:1fr;
}

.gallery-grid,
.interior-grid{
    grid-template-columns:repeat(2,1fr);
}

.details-grid{
    grid-template-columns:repeat(2,1fr);
}

.hero h1{
    font-size:56px;
}

.section-title h2{
    font-size:44px;
}

.next-card{
    padding:60px 40px;
}

}

@media (max-width:768px){

.menu{
    display:none;
}

.hero{
    padding:140px 0 70px;
}

.hero-info{
    grid-template-columns:1fr;
}

.gallery-grid,
.interior-grid,
.details-grid{
    grid-template-columns:1fr;
}

.gallery-item.large,
.gallery-item.wide{
    grid-column:auto;
}

.hero h1{
    font-size:42px;
}

.hero h2{
    font-size:28px;
}

.section-title h2,
.feature-content h3,
.notes-card h2,
.winter-content h3,
.next-card h2{
    font-size:36px;
}

.intro-card,
.notes-card,
.next-card{
    padding:35px 25px;
}

.lightbox img{
    max-width:100%;
}

.lightbox-btn{
    width:45px;
    height:45px;
}

}