.contact-intro {
    max-width: 720px;
    margin: 0 auto 40px;
    padding: 0 24px;
}

.contact-intro p {
    color: #6b6259;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 8px;
}

.contact-card {
    max-width: 900px;
    margin: 0 auto 96px;
    padding: 24px 40px 56px;
    border: 2px solid #4a3f35;
    border-radius: 28px;
    overflow: hidden;
}

.contact-title {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(4.5rem, 11vw, 12.7rem);
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -0.01em;
    color: #4a3f35;
    white-space: nowrap;
    margin: 0 -100px 32px;
    line-height: 1;
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-form-row {
    display: flex;
    gap: 48px;
}

.contact-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-field label {
    color: #8a8074;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-field input,
.contact-field textarea {
    border: none;
    border-bottom: 2px solid #d8d2c9;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: #4a3f35;
    padding: 0 0 8px;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
}

.contact-field--blue input {
    border-bottom-color: #8fb6cb;
}

.contact-field--orange input {
    border-bottom-color: #e2884f;
}

.contact-field--pink input {
    border-bottom-color: #e0559c;
}

.contact-field--message textarea {
    border: 2px solid #4a3f35;
    border-radius: 20px;
    padding: 20px;
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.contact-submit-btn {
    background: transparent;
    border: 2px solid #e2884f;
    border-radius: 999px;
    color: #4a3f35;
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 48px;
    cursor: pointer;
}

.contact-submit-btn:hover {
    background: #e2884f;
    color: #ffffff;
}

@media (max-width: 640px) {
    .contact-card {
        padding: 16px 20px 40px;
    }

    .contact-form-row {
        flex-direction: column;
        gap: 40px;
    }
}
