/* =================================
   CONTACT PAGE
================================= */

.contact-header {
    padding: 65px 7% 55px;
    background: #ede8e3;
}

.contact-header-inner {
    max-width: 1080px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 300px;

    gap: 60px;
    align-items: center;
}


/* =================================
   HEADER
================================= */

.contact-label {
    margin-bottom: 15px;

    color: #b06c83;

    font-size: 10px;
    font-weight: bold;
    letter-spacing: 3px;
}

.contact-header h1 {
    color: #23395d;

    font-family: Georgia, serif;
    font-size: clamp(48px, 5vw, 66px);
    font-weight: normal;

    line-height: 0.95;
    letter-spacing: -2px;
}

.contact-header h1 span {
    color: #b06c83;
    font-style: italic;
}


/* =================================
   INTRO
================================= */

.contact-intro {
    position: relative;

    min-height: 155px;

    padding: 45px 24px 22px;

    display: flex;
    align-items: center;

    background: #f8f5f1;

    border: 1px solid rgba(35, 57, 93, 0.10);
    border-radius: 5px;

    box-shadow: 9px 9px 0 #d99aaa;
}

.intro-number {
    position: absolute;

    top: 16px;
    right: 18px;

    color: #b06c83;

    font-family: Georgia, serif;
    font-size: 11px;
}

.intro-line {
    position: absolute;

    top: 27px;
    left: 24px;

    width: 32px;
    height: 2px;

    background: #23395d;
}

.contact-intro p {
    color: #68748a;

    font-size: 12px;
    line-height: 1.7;
}


/* =================================
   CONTACT SECTION
================================= */

.contact-section {
    max-width: 1080px;
    margin: auto;

    padding: 55px 7% 70px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    background: #ede8e3;
}


/* =================================
   CONTACT INFO
================================= */

.contact-small-title {
    margin-bottom: 15px;

    color: #b06c83;

    font-size: 9px;
    font-weight: bold;
    letter-spacing: 2px;
}

.contact-info h2 {
    max-width: 400px;

    margin-bottom: 18px;

    color: #23395d;

    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: normal;

    line-height: 1;
}

.contact-info h2 em {
    color: #b06c83;
    font-style: italic;
}

.contact-description {
    max-width: 410px;

    margin-bottom: 30px;

    color: #68748a;

    font-size: 11px;
    line-height: 1.8;
}


/* =================================
   CONTACT ITEMS
================================= */

.contact-item {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 15px;

    color: #23395d;

    text-decoration: none;

    font-size: 11px;
}

.contact-item:hover {
    color: #b06c83;
}

.contact-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f8f5f1;

    color: #23395d;

    font-family: Georgia, serif;
    font-size: 13px;

    box-shadow: 0 4px 12px rgba(35, 57, 93, 0.06);
}

.contact-item small {
    display: block;

    margin-bottom: 3px;

    color: #9a8290;

    font-size: 7px;
    font-weight: bold;

    letter-spacing: 1.5px;
}


/* =================================
   FORM
================================= */

.contact-form-box {
    padding: 28px;

    background: #f8f5f1;

    border: 1px solid rgba(35, 57, 93, 0.09);
    border-radius: 6px;

    box-shadow: 10px 10px 0 #a9b8a5;
}

.form-label {
    margin-bottom: 22px;

    color: #23395d;

    font-size: 9px;
    font-weight: bold;

    letter-spacing: 2px;
}

.contact-form-box label {
    display: block;

    margin-bottom: 7px;

    color: #23395d;

    font-size: 10px;
    font-weight: bold;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;

    margin-bottom: 17px;

    padding: 12px 14px;

    border: 1px solid rgba(35, 57, 93, 0.15);
    border-radius: 4px;

    background: #ffffff;

    color: #23395d;

    font-family: Arial, sans-serif;
    font-size: 11px;

    outline: none;

    transition: 0.3s;
}

.contact-form-box input {
    height: 42px;
}

.contact-form-box textarea {
    height: 105px;

    resize: vertical;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #b06c83;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: #a5aab4;
}

.contact-form-box button {
    width: 100%;

    padding: 13px;

    border: none;
    border-radius: 4px;

    background: #23395d;

    color: white;

    font-size: 10px;
    font-weight: bold;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition: 0.3s;
}

.contact-form-box button:hover {
    background: #b06c83;
}


/* =================================
   TABLET
================================= */

@media (max-width: 900px) {

    .contact-header-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-intro {
        max-width: 480px;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}


/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

    .contact-header {
        padding: 50px 7% 45px;
    }

    .contact-header h1 {
        font-size: 45px;
    }

    .contact-intro {
        min-height: 145px;

        padding: 42px 22px 20px;

        box-shadow: 7px 7px 0 #d99aaa;
    }

    .contact-intro p {
        font-size: 11px;
    }

    .contact-section {
        padding: 40px 6% 50px;

        gap: 35px;
    }

    .contact-info h2 {
        font-size: 31px;
    }

    .contact-form-box {
        padding: 23px;

        box-shadow: 7px 7px 0 #a9b8a5;
    }

}


/* =================================
   REDUCED MOTION
================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-form-box input,
    .contact-form-box textarea,
    .contact-form-box button {
        transition: none;
    }

}