*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    background:#0b0f14;
    color:#fff;
    line-height:1.7;
    overflow-x:hidden;

    background-image:
        radial-gradient(circle at top left,
        rgba(214,163,84,0.08),
        transparent 25%),

        radial-gradient(circle at bottom right,
        rgba(214,163,84,0.05),
        transparent 20%);
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(92%, 1280px);
    margin:auto;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    backdrop-filter:blur(16px);

    background:rgba(8,10,14,0.55);

    border-bottom:
        1px solid rgba(255,255,255,0.05);

    transition:0.3s;
}

.nav-wrapper{
    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:15px;
    letter-spacing:4px;
    font-weight:700;
}

.header-cta{
    text-decoration:none;
    background:#d6a354;
    color:#111;

    padding:14px 22px;

    border-radius:14px;

    font-weight:700;

    transition:0.3s;
}

.header-cta:hover{
    transform:translateY(-2px);
}

/* HERO */

.hero{
    min-height:100vh;

    background:
        url('../img/hero.jpg')
        center center/cover;

    position:relative;

    display:flex;
    align-items:center;

    overflow:hidden;
}

.hero::before{
    content:'';

    position:absolute;

    width:900px;
    height:900px;

    background:
        radial-gradient(
            circle,
            rgba(214,163,84,0.18),
            transparent 70%
        );

    top:-300px;
    right:-300px;

    z-index:1;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,0.82),
            rgba(0,0,0,0.45)
        );
}

.hero-content{
    position:relative;
    z-index:3;
}

.hero-text{
    max-width:760px;
}

.badge{
    display:inline-block;

    background:#d6a354;
    color:#111;

    padding:10px 18px;

    border-radius:999px;

    font-size:14px;
    font-weight:700;

    margin-bottom:30px;
}

.hero h1{
    font-size:clamp(64px, 8vw, 120px);

    line-height:0.92;

    letter-spacing:-5px;

    margin-bottom:35px;

    font-weight:800;
}

.hero p{
    color:#d5d8df;

    font-size:20px;

    max-width:620px;

    line-height:1.9;

    margin-bottom:50px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:16px 28px;

    border-radius:16px;

    text-decoration:none;

    font-weight:700;

    transition:0.3s;
}

.btn-primary{
    background:
        linear-gradient(
            135deg,
            #d6a354,
            #f0c06d
        );

    color:#111;

    box-shadow:
        0 20px 40px
        rgba(214,163,84,0.25);
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:
        1px solid rgba(255,255,255,0.12);

    color:#fff;
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.05);
}

/* SECTIONS */

.section{
    padding:140px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:80px;
}

.section-heading.left{
    text-align:left;
}

.section-heading span{
    color:#d6a354;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

    font-weight:700;
}

.section-heading h2{
    font-size:clamp(42px, 5vw, 72px);

    margin-top:18px;

    line-height:1;

    letter-spacing:-3px;
}

/* STATS */

.stats{
    margin-top:-80px;
    position:relative;
    z-index:10;
}

.stats-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;
}

.stat-box{
    background:rgba(20,24,30,0.72);

    backdrop-filter:blur(14px);

    padding:45px;

    border-radius:32px;

    border:
        1px solid rgba(255,255,255,0.06);

    text-align:center;
}

.stat-box h3{
    font-size:56px;
    color:#d6a354;
}

/* SERVICES */

.services-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:28px;
}

.service-card{
    background:rgba(20,24,30,0.72);

    backdrop-filter:blur(14px);

    padding:48px 42px;

    border-radius:32px;

    transition:0.4s;

    border:
        1px solid rgba(255,255,255,0.06);

    position:relative;

    overflow:hidden;
}

.service-card::before{
    content:'';

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(214,163,84,0.08),
            transparent 50%
        );

    opacity:0;

    transition:0.4s;
}

.service-card:hover::before{
    opacity:1;
}

.service-card:hover{
    transform:translateY(-10px);

    border-color:
        rgba(214,163,84,0.4);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.35);
}

.service-icon{
    font-size:42px;
    margin-bottom:20px;
}

.service-card h3{
    font-size:28px;
    margin-bottom:14px;
}

/* ABOUT */

.dark-section{
    background:#12161c;
}

.about-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.about-image{
    border-radius:36px;
}

.feature-list{
    display:grid;
    gap:18px;

    margin-top:40px;
}

/* GALLERY */

.gallery-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));

    gap:24px;
}

.gallery-grid img{
    height:420px;

    object-fit:cover;

    border-radius:32px;

    transition:0.45s;

    filter:brightness(0.92);
}

.gallery-grid img:hover{
    transform:scale(1.04);

    filter:brightness(1);
}

/* CTA */

.cta-section{
    padding-top:0;
}

.cta-box{
    background:
        linear-gradient(
            135deg,
            #d6a354,
            #b58237
        );

    padding:120px 90px;

    border-radius:42px;

    text-align:center;

    color:#111;

    box-shadow:
        0 30px 100px
        rgba(214,163,84,0.18);
}

.cta-box h2{
    font-size:clamp(42px,5vw,72px);

    line-height:1;

    margin-bottom:20px;

    letter-spacing:-3px;
}

/* CONTACT */

.contact-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));

    gap:24px;
}

.contact-card{
    background:rgba(20,24,30,0.72);

    backdrop-filter:blur(14px);

    padding:34px;

    border-radius:28px;

    border:
        1px solid rgba(255,255,255,0.05);
}

.contact-cta{
    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

/* FOOTER */

.footer{
    padding:40px 0;

    border-top:
        1px solid rgba(255,255,255,0.06);
}

.footer-wrapper{
    display:flex;

    justify-content:space-between;

    gap:20px;

    flex-wrap:wrap;
}

/* MOBILE */

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero h1{
        font-size:58px;
    }

    .section{
        padding:100px 0;
    }

    .cta-box{
        padding:70px 35px;
    }

    .cta-box h2{
        font-size:42px;
    }

}