/* Contact page redesign */
.contact-page {
    margin-top: 32px;
    margin-bottom: 56px;
}

.contact-hero {
    border-radius: 26px;
    border: 1px solid rgba(16, 35, 42, 0.12);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 241, 237, 0.92) 100%);
    box-shadow: 0 16px 40px rgba(16, 35, 42, 0.07);
    overflow: hidden;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(211, 195, 185, 0.28), transparent 42%),
        radial-gradient(circle at 82% 82%, rgba(61, 77, 85, 0.10), transparent 50%);
    pointer-events: none;
}

.contact-hero__inner {
    position: relative;
    z-index: 1;
    padding: 34px 28px;
    max-width: 980px;
}

.contact-hero__kicker {
    color: #b58863;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-hero__title {
    margin: 12px 0 0;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--navy);
}

.contact-hero__desc {
    margin: 14px 0 0;
    max-width: 70ch;
    color: rgba(22, 22, 22, 0.74);
    font-size: 15px;
    line-height: 1.95;
}

.contact-layout {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.contact-card {
    padding: 24px;
}

.contact-card--sticky {
    position: sticky;
    top: 92px;
}

.contact-aside__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    color: #3D4D55;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.contact-aside__title {
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.contact-aside__desc {
    margin-top: 10px;
    color: rgba(22, 22, 22, 0.74);
    font-size: 14px;
    line-height: 1.9;
}

.contact-aside__block {
    margin-top: 16px;
}

.contact-aside__label {
    color: rgba(61, 77, 85, 0.65);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-aside__email {
    margin-top: 10px;
    display: inline-flex;
    font-weight: 900;
    font-size: 16px;
    color: #3D4D55;
}

.contact-aside__email:hover {
    color: #b58863;
}

.contact-response {
    margin-top: 16px;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(181, 136, 99, 0.30);
    background: rgba(181, 136, 99, 0.10);
    color: rgba(16, 35, 42, 0.82);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 13px;
}

.contact-aside__divider {
    margin: 18px 0;
    height: 1px;
    background: rgba(16, 35, 42, 0.12);
}

.contact-social {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-social .chip {
    gap: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 800;
}

.contact-form__title {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-alert {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(16, 35, 42, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-alert--success {
    color: #28CA42;
    border-color: rgba(40, 202, 66, 0.35);
    background: rgba(40, 202, 66, 0.08);
}

.contact-alert--error {
    color: #FF4D4D;
    border-color: rgba(255, 77, 77, 0.35);
    background: rgba(255, 77, 77, 0.08);
}

.contact-errors {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 77, 77, 0.35);
    background: rgba(255, 77, 77, 0.08);
    margin-bottom: 16px;
}

.contact-errors__title {
    color: #FF4D4D;
    font-weight: 900;
    margin-bottom: 8px;
}

.contact-errors__list {
    margin: 0;
    padding-inline-start: 20px;
    color: #FF4D4D;
    font-size: 13px;
    line-height: 1.9;
}

.contact-tip {
    background: linear-gradient(135deg, rgba(61, 77, 85, 0.04) 0%, rgba(181, 136, 99, 0.06) 100%);
    border: 1px solid rgba(16, 35, 42, 0.12);
    box-shadow: 0 16px 40px rgba(16, 35, 42, 0.06);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-tip__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(16, 35, 42, 0.12);
    background: rgba(255, 255, 255, 0.65);
    color: #3D4D55;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-tip__t {
    font-size: 15px;
    font-weight: 900;
    color: var(--navy);
}

.contact-tip__d {
    margin-top: 8px;
    color: rgba(22, 22, 22, 0.72);
    font-size: 14px;
    line-height: 1.9;
}

@media (max-width: 980px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-card--sticky {
        position: static;
    }
    .contact-hero__inner {
        padding: 28px 22px;
    }
}
