﻿/* HERO */
.kp-contact-hero {
    width: 100%;
    height: 75vh;
    min-height: 500px;
    background: #0a0a0a;
    overflow: hidden;
}

.kp-contact-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* MAP */
.kp-contact-map {
    width: 100%;
    background: #000;
    padding: 60px 0;
}

    .kp-contact-map iframe {
        display: block;
        width: 100%;
        height: 480px;
        border: 0;
        filter: grayscale(40%) brightness(0.85);
        transition: filter .3s;
    }

        .kp-contact-map iframe:hover {
            filter: grayscale(0) brightness(1);
        }

/* FORM SECTION */
.kp-contact-form-section {
    background: #000;
    padding: 100px 20px;
}

.kp-contact-form-section__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.kp-contact-form-section__media {
    overflow: hidden;
    border-top-left-radius: 50% 30%;
    border-top-right-radius: 50% 30%;
}

    .kp-contact-form-section__media img {
        width: 100%;
        height: auto;
        display: block;
        filter: grayscale(100%);
    }

.kp-contact-form-section__content {
    color: #ccc;
}

.kp-contact-form-section__title {
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 30px;
}

.kp-contact-form-section__lead {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 50px;
}

    .kp-contact-form-section__lead a {
        color: #c9a87c;
        text-decoration: none;
    }

        .kp-contact-form-section__lead a:hover {
            text-decoration: underline;
        }

/* FORM */
.kp-contact-form__group {
    margin-bottom: 28px;
}

.kp-contact-form__label {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    font-weight: 500;
}

.kp-contact-form__input {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 8px 0;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}

    .kp-contact-form__input:focus {
        border-bottom-color: #c9a87c;
    }

.kp-contact-form__textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.kp-contact-form__error {
    display: block;
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 4px;
}

.kp-contact-form__submit {
    background: transparent;
    border: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 12px 0;
    margin-top: 10px;
    transition: color .2s;
    font-family: inherit;
}

    .kp-contact-form__submit:hover {
        color: #c9a87c;
    }

/* ALERTS */
.kp-contact-alert {
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    border-radius: 4px;
}

.kp-contact-alert--success {
    background: rgba(60, 160, 90, 0.15);
    border-left: 3px solid #3ca05a;
    color: #a3e8b9;
}

.kp-contact-alert--error {
    background: rgba(220, 60, 60, 0.12);
    border-left: 3px solid #dc3c3c;
    color: #ff8585;
}

    .kp-contact-alert--error:empty {
        display: none;
    }

/* INFO BLOCK */
.kp-contact-info {
    background: #000;
    padding: 60px 20px 100px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.kp-contact-info__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.kp-contact-info__col {
    color: #ccc;
}

.kp-contact-info__heading {
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.kp-contact-info__divider {
    color: #c9a87c;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 0.1em;
}

.kp-contact-info__sub {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.kp-contact-info__text {
    color: #b8b8b8;
    line-height: 1.9;
    font-size: 0.95rem;
    margin: 0 0 12px;
}

    .kp-contact-info__text a {
        color: #b8b8b8;
        text-decoration: none;
        transition: color .2s;
    }

        .kp-contact-info__text a:hover {
            color: #c9a87c;
        }

/* MOBILE */
@media (max-width: 768px) {
    .kp-contact-hero {
        height: 50vh;
        min-height: 350px;
    }

    .kp-contact-map {
        height: 320px;
    }

    .kp-contact-form-section {
        padding: 60px 16px;
    }

    .kp-contact-form-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kp-contact-form-section__media {
        max-width: 480px;
        margin: 0 auto;
    }

    .kp-contact-info {
        padding: 50px 16px 80px;
    }

    .kp-contact-info__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
