/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#111;
}

/* IMAGE */

img{
    width:100%;
    display:block;
}

/* LINK */

a{
    text-decoration:none;
    color:inherit;
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section{

    padding:20px;

    background:#f5f5f5;
}

/* HERO IMAGE */

.hero-image{

    width:100%;

    height:760px;

    overflow:hidden;
}

.hero-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* HERO BOTTOM */

.hero-bottom{

    padding:45px 50px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:#f5f5f5;
}

/* TITLE */

.hero-title h1{

    font-size:72px;

    font-weight:400;

    line-height:1.1;

    color:#111;
}

/* BUTTON */

.view-btn{

    background:#1c1c1c;

    color:#fff;

    padding:20px 40px;

    font-size:16px;

    transition:0.4s ease;
}

.view-btn:hover{

    background:#000;
}

/* =========================================
   TOP NAV
========================================= */

.top-nav{

    background:#ffffff;

    padding:32px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid #eee;

    border-bottom:1px solid #eee;
}

/* LEFT */

.nav-left{

    display:flex;

    align-items:center;

    gap:70px;
}

/* TITLE */

.project-title h2{

    font-size:30px;

    font-weight:400;

    margin-bottom:8px;
}

.project-title span{

    font-size:14px;

    color:#777;

    letter-spacing:1px;
}

/* LINKS */

.project-links{

    display:flex;

    gap:40px;
}

.project-links a{

    font-size:16px;

    color:#555;

    transition:0.3s ease;
}

.project-links a:hover{

    color:#111;
}

/* RIGHT */

.nav-right{

    display:flex;

    gap:28px;
}

.nav-right a{

    font-size:18px;

    color:#111;

    transition:0.3s ease;
}

.nav-right a:hover{

    transform:translateY(-3px);
}

/* =========================================
   GALLERY
========================================= */

.gallery-section{

    padding:12px;
}

/* GRID */

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(5, 1fr);

    gap:12px;
}

/* ITEM */

.gallery-item{

    overflow:hidden;

    background:#fff;

    position:relative;

    aspect-ratio:1 / 1;
}

/* IMAGE */

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:0.6s ease;

    cursor:pointer;
}

/* HOVER */

.gallery-item:hover img{

    transform:scale(1.05);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .gallery-grid{

        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .gallery-grid{

        grid-template-columns:1fr;
    }

    .gallery-item{

        aspect-ratio:auto;
    }

    .gallery-item img{

        height:auto;
    }
}















/* =========================================
   LIGHTBOX
========================================= */

.lightbox{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:rgba(0,0,0,0.96);

    display:flex;

    align-items:center;
    justify-content:center;

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:0.4s ease;
}

/* ACTIVE */

.lightbox.active{

    opacity:1;
    visibility:visible;
}

/* IMAGE */

.lightbox-image{

    max-width:82%;
    max-height:88vh;

    object-fit:contain;

    animation:zoomIn 0.4s ease;
}

/* CLOSE BUTTON */

.close-lightbox{

    position:absolute;

    top:20px;
    right:30px;

    color:#ffffff;

    font-size:42px;

    cursor:pointer;

    z-index:10;

    transition:0.3s ease;
}

.close-lightbox:hover{

    transform:rotate(90deg);
}

/* ARROWS */

.lightbox-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    background:none;

    border:none;

    color:#ffffff;

    font-size:60px;

    cursor:pointer;

    padding:20px;

    transition:0.3s ease;
}

/* LEFT */

.prev-btn{

    left:20px;
}

/* RIGHT */

.next-btn{

    right:20px;
}

/* HOVER */

.lightbox-btn:hover{

    transform:translateY(-50%) scale(1.1);
}

/* COUNTER */

.lightbox-counter{

    position:absolute;

    top:20px;
    left:30px;

    color:#ffffff;

    font-size:18px;

    letter-spacing:1px;
}

/* CLICK CURSOR */

.gallery-item img{

    cursor:pointer;
}

/* ANIMATION */

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(0.9);
    }

    to{

        opacity:1;

        transform:scale(1);
    }
}

/* MOBILE */

@media(max-width:768px){

    .lightbox-image{

        max-width:95%;
    }

    .lightbox-btn{

        font-size:42px;
    }

    .close-lightbox{

        font-size:34px;
    }
}



















/* =========================================
   FOOTER
========================================= */

.site-footer{

    background:#050505;

    color:#ffffff;

    margin-top:80px;

    overflow:hidden;
}

/* =========================================
   CONTAINER
========================================= */

.footer-container{

    width:min(1450px, calc(100% - 120px));

    margin:auto;

    padding:90px 0 70px;

    display:grid;

    grid-template-columns:
    1.4fr
    0.8fr
    1fr;

    gap:120px;
}

/* =========================================
   BRAND
========================================= */

.footer-brand small{

    display:block;

    color:#b8956a;

    font-size:11px;

    letter-spacing:4px;

    margin-bottom:18px;
}

.footer-brand h2{

    font-size:84px;

    line-height:0.95;

    font-weight:700;

    margin-bottom:36px;

    letter-spacing:-4px;
}

.footer-brand p{

    max-width:540px;

    color:rgba(255,255,255,0.72);

    line-height:2;

    font-size:17px;

    margin-bottom:55px;
}

/* =========================================
   STATS
========================================= */

.footer-stats{

    display:flex;

    gap:22px;

    margin-top:55px;
}

/* CARD */

.stat-box{

    width:180px;

    min-height:155px;

    padding:34px 22px;

    border:1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    background:rgba(255,255,255,0.01);

    backdrop-filter:blur(8px);

    transition:0.45s cubic-bezier(.19,1,.22,1);

    position:relative;

    overflow:hidden;
}

/* GLOW EFFECT */

.stat-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
    135deg,
    rgba(184,149,106,0.12),
    transparent 55%);

    opacity:0;

    transition:0.45s ease;
}

/* HOVER */

.stat-box:hover{

    transform:
    translateY(-10px)
    scale(1.02);

    border-color:#b8956a;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.35),
    0 0 0 1px rgba(184,149,106,0.2);

    background:rgba(255,255,255,0.02);
}

.stat-box:hover::before{

    opacity:1;
}

/* TITLE */

.stat-box h3{

    font-size:26px;

    line-height:1.1;

    margin-bottom:18px;

    color:#d4a35f;

    font-weight:700;

    letter-spacing:-1px;
}

/* TEXT */

.stat-box span{

    display:block;

    color:rgba(255,255,255,0.7);

    font-size:14px;

    line-height:1.9;

    letter-spacing:1px;
}

/* =========================================
   TITLES
========================================= */

.footer-links h4,
.footer-contact h4{

    font-size:13px;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#b8956a;

    margin-bottom:35px;
}

/* =========================================
   LINKS
========================================= */

.footer-links ul{

    list-style:none;
}

.footer-links ul li{

    margin-bottom:22px;
}

.footer-links ul li a{

    color:rgba(255,255,255,0.82);

    text-decoration:none;

    font-size:18px;

    transition:0.35s ease;
}

.footer-links ul li a:hover{

    color:#b8956a;

    padding-left:8px;
}

/* =========================================
   CONTACT
========================================= */

.footer-contact p{

    color:rgba(255,255,255,0.75);

    margin-bottom:18px;

    font-size:18px;

    line-height:1.8;
}

/* =========================================
   SOCIALS
========================================= */

.footer-socials{

    display:flex;

    gap:14px;

    margin-top:40px;
}

.footer-socials a{

    width:54px;

    height:54px;

    border:1px solid rgba(255,255,255,0.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    text-decoration:none;

    font-size:16px;

    transition:0.4s ease;
}

.footer-socials a:hover{

    background:#b8956a;

    border-color:#b8956a;

    transform:translateY(-5px);
}

/* =========================================
   BOTTOM
========================================= */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,0.06);

    padding:30px 0;

    text-align:center;
}

.footer-bottom p{

    color:rgba(255,255,255,0.45);

    font-size:14px;

    letter-spacing:1px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .footer-container{

        grid-template-columns:1fr;

        gap:70px;
    }
}

@media(max-width:768px){

    .footer-container{

        width:calc(100% - 40px);

        padding:70px 0 50px;
    }

    .footer-brand h2{

        font-size:54px;
    }

    .footer-brand p{

        font-size:15px;
    }

    .footer-stats{

        flex-direction:column;
    }

    .stat-box{

        width:100%;
    }

    .footer-links ul li a,
    .footer-contact p{

        font-size:16px;
    }

    .footer-socials a{

        width:46px;

        height:46px;
    }
}




















/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 9999;
    background: #080808;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.35s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

/* =========================================
   CONTAINER
========================================= */

.nav-container {
    width: min(1200px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* =========================================
   LOGO
========================================= */

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-bg {
    width: 48px;
    height: 48px;
    background: #faf5e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.logo-bg img {
    width: 36px;
    height: auto;
    object-fit: contain;
}

/* =========================================
   MENU
========================================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu li { white-space: nowrap; }

.nav-menu li a {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #b28b52;
    transition: width 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active { color: #b28b52; }

.nav-menu li a:hover::after,
.nav-menu li a.active::after { width: 100%; }

/* =========================================
   SOCIAL
========================================= */

.social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.social-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #b28b52;
    transform: translateY(-2px);
}

/* =========================================
   HAMBURGER
========================================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    z-index: 10001;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================
   OVERLAY BACKDROP
========================================= */

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.nav-overlay.active { display: block; }

/* =========================================
   BODY FIX
========================================= */

body { padding-top: 72px; }

/* =========================================
   MOBILE  ≤ 992px
========================================= */

@media (max-width: 992px) {
    .social-icons { display: none; }
    .hamburger    { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100dvh;
        background: #0a0a0a;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 48px;
        gap: 0;
        z-index: 10000;
        overflow-y: auto;
        overflow-x: hidden;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        transition: right 0.42s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    .nav-menu.active {
        right: 0;
        pointer-events: all;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-menu li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-menu li a {
        display: block;
        padding: 18px 0;
        font-size: 13px;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.72);
        transition: color 0.25s ease, padding-left 0.25s ease;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        color: #b28b52;
        padding-left: 10px;
    }
}

@media (max-width: 576px) {
    body         { padding-top: 60px; }
    .logo-bg     { width: 40px; height: 40px; }
    .logo-bg img { width: 30px; }
    .nav-container { padding: 0 16px; width: 100%; }
    .nav-menu { width: 100%; border-left: none; padding: 88px 28px 48px; }
}