/*=========================================================
    FOOTER
=========================================================*/

.footer{

    padding:140px 20px 70px;

    background:var(--crema);

    text-align:center;

}

.footer-crest{

    width:220px;

    max-width:70vw;

    margin:0 auto 35px;

    display:block;

    opacity:0;

    transform:
        translateY(40px)
        scale(.92);

    filter:
        drop-shadow(0 14px 20px rgba(0,0,0,.08));

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22,.8,.22,1),
        filter .35s ease;

}

.footer.is-visible .footer-crest{

    opacity:1;

    transform:
        translateY(0)
        scale(1);

}

.footer-crest:hover{

    transform:
        translateY(-4px)
        scale(1.02);

    filter:
        drop-shadow(0 22px 30px rgba(0,0,0,.12));

}

.footer-title{

    font-family:var(--font-title);

    font-size:clamp(2.2rem,5vw,3.6rem);

    color:var(--vino);

    font-weight:500;

}

.footer-title span{

    color:var(--plateado-dark);

    font-size:.75em;

}

.footer-date{

    margin:25px 0;

    letter-spacing:5px;

    text-transform:uppercase;

    color:var(--texto);

}

.footer-message{

    max-width:520px;

    margin:auto;

    line-height:1.9;

    color:var(--texto);

}

.footer-location{

    margin-top:30px;

    color:var(--plateado-dark);

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:.82rem;

}

.footer-year{

    margin-top:10px;

    font-family:var(--font-title);

    font-size:1rem;

    color:var(--vino);

    letter-spacing:5px;

}

.footer-divider{

    width:180px;

    height:1px;

    margin:55px auto;

    background:linear-gradient(

        90deg,

        transparent,

        var(--plateado),

        transparent

    );

}

.footer-made{

    margin-top:45px;

    font-size:.82rem;

    letter-spacing:2px;

    color:var(--plateado-dark);

}

/*=========================================================
    AGRADECIMIENTO
=========================================================*/

.footer-gratitude{

    width:min(620px,100%);

    margin:58px auto 52px;

    text-align:center;

}

.footer-gratitude::before{

    content:"";

    display:block;

    width:120px;
    height:1px;

    margin:0 auto 34px;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(200,204,211,.9),

        transparent

    );

}

.footer-gratitude-eyebrow{

    display:block;

    margin-bottom:20px;

    color:var(--plateado-dark);

    font-family:"Montserrat",sans-serif;

    font-size:.90rem;

    font-weight:400;

    letter-spacing:.32em;

    text-transform:uppercase;

}

.footer-gratitude-text{

    width:min(560px,100%);

    margin:0 auto;

    color:var(--texto);

    font-size:1.2rem;

    line-height:1.9;

}

