.contact-hero {
    padding: 150px 0 20px;
}

.contact-hero h1 {
    font-size: clamp(32px, 4.6vw, 48px);
    margin-bottom: 14px;
    max-width: 560px;
}

.contact-hero p {
    color: var(--ink-muted);
    font-size: 16.5px;
    max-width: 480px;
}

.contact-layout {
    padding: 70px 0 120px;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
}

.contact-card h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.contact-row:first-of-type {
    border-top: none;
    padding-top: 0;
}

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-row .label {
    font-size: 12.5px;
    color: var(--ink-muted);
    margin-bottom: 2px;
}

.contact-row .value {
    font-size: 15px;
    font-weight: 600;
}

.contact-row .value a {
    color: var(--coral-deep);
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}

.field input, .field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    background: #fff;
    color: var(--ink);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field input:focus, .field textarea:focus {
    outline: 2px solid var(--coral);
    outline-offset: 1px;
}

.form-note {
    font-size: 12.5px;
    color: var(--ink-muted);
}

.note-band {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 26px 28px;
    margin-top: 24px;
}

.note-band p {
    font-size: 14px;
    color: var(--ink-muted);
}

.note-band b {
    color: var(--ink);
}

.alert {
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: 14px;
    line-height: 1.5;
}

.alert-success {
    border-color: rgba(47, 158, 136, .35);
    background: rgba(47, 158, 136, .08);
    color: #1F6E5E;
}

.alert-danger {
    border-color: rgba(242, 84, 45, .35);
    background: rgba(242, 84, 45, .06);
    color: var(--coral-deep);
}

@media (max-width: 800px) {
    .contact-layout {
        grid-template-columns:1fr;
    }
}
