/* ==========================================
   LEGEND
========================================== */

.legend{
    position:relative;
    padding:90px 0;
    background:linear-gradient(180deg,#050505 0%,#0a0a0a 100%);
    overflow:hidden;
}

.legend::before{
    content:"";
    position:absolute;
    top:-220px;
    left:-220px;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(212,175,55,.05);
    filter:blur(120px);
}

.legend-grid{
    position:relative;
    display:grid;
    grid-template-columns:1fr .9fr;
    gap:50px;
    align-items:center;
}

.section-heading{
    margin-bottom:40px;
}

.section-heading p{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:.8rem;
    margin-bottom:12px;
}

.section-heading h2{
    font-family:var(--heading);
    font-size:3.2rem;
    line-height:1.05;
    color:#fff;
    max-width:620px;
}

.legend-text p{
    font-size:1rem;
    line-height:1.75;
    color:var(--muted);
    margin-bottom:20px;
}

.legend-text p:last-of-type{
    margin-bottom:28px;
}

.legend-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.legend-image::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    filter:blur(90px);
}

.legend-image img{
    width:100%;
    max-width:430px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 45px rgba(0,0,0,.4);
    transition:.35s ease;
    position:relative;
    z-index:2;
}

.legend-image img:hover{
    transform:translateY(-8px) scale(1.02);
}

.legend .btn{
    margin-top:10px;
}