/* Heimdall Studio v0.20.0
   Contact page cleanup:
   - remove Get in touch column
   - move Send a message into the former left-hand position
   - deliberately leave the right-hand side empty
   - remove Privacy section
*/

.contact-section .contact-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: clamp(2rem, 4vw, 5rem) !important;
    align-items: start !important;
}

/* The form is now the only child, so explicitly keep it in column one. */
.contact-section .contact-form-card {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

/* The second grid column intentionally remains empty on desktop. */
.contact-principles-section {
    display: none !important;
}

@media (max-width: 900px) {
    .contact-section .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-section .contact-form-card {
        grid-column: 1 !important;
    }
}
