body:has(.contact) footer {
    display: none;
}

body:has(.contact) {
    overflow: hidden;
}

.contact {
    min-height: 100vh;
    max-height: 100vh;
    padding-top: clamp(1.6rem, 5vh, 3.9rem);
    align-items: start;
    overflow: hidden;
}

.contact-form {
    display: grid;
    justify-items: stretch;
    text-align: left;
}

.contact-logo {
    display: block;
    width: clamp(3.8rem, 6vh, 4.8rem);
    height: auto;
    justify-self: center;
    margin-bottom: clamp(0.6rem, 1.5vh, 1.1rem);
}

.contact-title {
    margin-bottom: clamp(1.1rem, 2.5vh, 2rem);
    text-align: center;
}

.contact .form-field {
    margin-bottom: clamp(0.9rem, 2vh, 1.5rem);
}

.contact-textarea {
    min-height: clamp(8.5rem, 24vh, 12.8rem);
    padding: clamp(2.8rem, 8vh, 4.5rem) 1rem 1rem;
    resize: vertical;
    border-radius: 20px;
}

.contact-actions {
    display: flex;
    justify-content: center;
    margin-top: clamp(0.1rem, 1vh, 0.65rem);
}

.contact-actions .btn {
    min-width: 15.5rem;
}

@media (max-width: 520px) {
    .contact {
        padding-top: 1.25rem;
    }

    .contact-logo {
        width: 3.5rem;
        margin-bottom: 1rem;
    }

    .contact-title {
        margin-bottom: 1rem;
    }

    .contact-textarea {
        min-height: 8.5rem;
        padding-top: 3.2rem;
    }

    .contact-actions {
        margin-top: 0.25rem;
    }
}
