/* ==========================================================
   CALIBRE JOURNAL — CONTACT
========================================================== */

.cj-contact-page {
    min-height: 70vh;

    background: #f6f3ec;
    color: #1d1d1d;
}

.cj-contact-container {
    width: min(calc(100% - 60px), 900px);
    margin: 0 auto;
}


/* ==========================================================
   HERO
========================================================== */

.cj-contact-hero {
    padding: 70px 0 110px;

    text-align: center;
}

.cj-contact-eyebrow {
    display: block;

    margin-bottom: 16px;

    color: #b38b3c;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.cj-contact-hero h1 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 6vw, 76px);
    font-weight: 400;
    line-height: 1;

    letter-spacing: -2px;
}

.cj-contact-intro {
    max-width: 650px;

    margin: 0 auto 50px;

    color: #656565;

    font-size: 16px;
    line-height: 1.65;
}


/* ==========================================================
   CONTACT CARD
========================================================== */

.cj-contact-card {
    max-width: 650px;

    margin: 0 auto;
    padding: 45px 50px;

    border: 1px solid #ded9cf;

    background: #ffffff;
}

.cj-contact-label {
    display: block;

    margin-bottom: 14px;

    color: #b38b3c;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.cj-contact-card h2 {
    margin: 0 0 14px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
}

.cj-contact-card p {
    max-width: 480px;

    margin: 0 auto 28px;

    color: #656565;

    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================
   BUTTON
========================================================== */

.cj-contact-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 22px;

    background: #46523d;
    color: #ffffff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.cj-contact-button:hover {
    background: #35402f;
    color: #ffffff;

    transform: translateY(-1px);
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .cj-contact-container {
        width: calc(100% - 32px);
    }

    .cj-contact-hero {
        padding: 50px 0 70px;
    }

    .cj-contact-hero h1 {
        font-size: 50px;

        letter-spacing: -1px;
    }

    .cj-contact-intro {
        margin-bottom: 35px;
    }

    .cj-contact-card {
        padding: 35px 25px;
    }

}