*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#000;
}

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.45) 35%,
    rgba(0,0,0,.15) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;

    max-width:700px;

    margin-left:100px;
    margin-right:30px;

    color:white;
}

.hero-tag{
    display:inline-block;

    padding:12px 20px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    font-size:14px;

    margin-bottom:28px;
}

.hero h1{
    font-family:'Playfair Display',serif;

    font-size:68px;

    line-height:1.02;

    margin-bottom:24px;
}

.hero p{
    font-size:22px;

    line-height:1.7;

    max-width:580px;

    margin-bottom:32px;
}

.hero-facts{
    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:38px;
}

.hero-facts span{
    padding:12px 18px;

    border-radius:30px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    font-size:15px;
}

.hero-button{
    display:inline-block;

    background:#c88a2d;

    color:white;

    text-decoration:none;

    padding:18px 34px;

    border-radius:14px;

    font-weight:600;

    transition:.25s;
}

.hero-button:hover{
    transform:translateY(-2px);
}

.hero-note{
    margin-top:18px;

    color:rgba(255,255,255,.82);

    font-size:15px;

    max-width:420px;

    line-height:1.6;
}

@media(max-width:768px){

    .hero-content{
        margin:40px 24px;
    }

    .hero h1{
        font-size:44px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-facts{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-button{
        width:100%;
        text-align:center;
    }

}