/* ── PAGE SCROLL ── */
.page-contact {
    height: auto;
    overflow: auto;
}

.page-contact main {
    overflow: visible;
}

/* ── CONTACT CONTENT ── */
.contact-content {
    padding: 180px 36px 120px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 680px;
}

.contact-heading {
    font-size: clamp(24px, 4vw, 56px);
    font-weight: 300;
    font-stretch: 125%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

/* ── FORM ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.5;
}

.form-group input,
.form-group textarea {
    -webkit-appearance: none;
    appearance: none;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #1a1a1a;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #1a1a1a;
    border-radius: 0;
    padding: 10px 0;
    outline: none;
    width: 100%;
    resize: none;
    box-shadow: none;
}

.form-group textarea {
    line-height: 1.7;
}

.form-submit {
    -webkit-appearance: none;
    appearance: none;
    align-self: flex-start;
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a1a1a;
    background-color: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    padding: 14px 36px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.form-submit:hover {
    opacity: 0.5;
}

/* ── SOCIALS ── */
.contact-socials {
    display: flex;
    gap: 60px;
}

.contact-socials a {
    text-decoration: none;
    color: inherit;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.contact-socials a:hover {
    opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .contact-content {
        padding: 80px 5% 100px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: 60px 5% 80px;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 40px 5% 60px;
        gap: 28px;
    }

    .contact-form {
        gap: 32px;
    }
}
