.site-footer {
    height: 320px;
    background-color: rgb(15, 1, 24);
    color: #fff;
    padding-top: 60px;
}

.site-footer__content {
    width: 100%;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: minmax(auto, 1000px);
    justify-content: center;
}

.site-footer__grid {
    display: grid;
    width: 100%;
    grid-template-columns: auto repeat(3, 240px);
}

.site-footer__menu-col {
    display: grid;
    grid-auto-rows: max-content;
    justify-content: end;
    align-items: end;
    justify-items: end;
}

.site-footer__menu-col--contact {
    display: grid;
    grid-auto-rows: max-content;
    justify-content: end;
    text-align: end;
}

.site-footer__menu-col a {
    display: block;
    color: rgb(158, 146, 165);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.22);
    margin-bottom: 10px;
    padding: 4px 2px;
    outline-color: rgb(108, 93, 169);
}

.site-footer__menu-col a:hover {
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #00ffa9;
}

.site-footer__menu-col--contact a.site-footer__contact-button {
    display: grid;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.05em;
    height: 44px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0 15px;
    align-items: center;
    outline-color: rgb(108, 93, 169);
}

.site-footer__menu-col--contact a:hover.site-footer__contact-button {
    color: #00ffa9;
    border: 1px solid #00ffa9;
}

.site-footer__small-contact {
    padding-top: 10px;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.75);
}

.site-footer__footer-byline {
    padding-top: 50px;
    font-size: 0.7em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    text-align: end;
    letter-spacing: 0.08em;
}

.site-footer__footer-byline--strong {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
}