/* =====================================================
   CONTACT PAGE — NEW DESIGN
===================================================== */


/* =====================================================
   HERO
===================================================== */

.contact-hero {
    background: #111;
    color: #fff;
}

.contact-hero-inner {
    min-height: 510px;

    display: grid;
    grid-template-columns: 1fr 390px;

    align-items: stretch;

    gap: 80px;
}

.contact-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 90px 0;
}

.contact-kicker {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    color: #999;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.contact-kicker span {
    width: 35px;
    height: 2px;

    background: #ef2b2d;
}

.contact-hero h1 {
    max-width: 650px;

    margin: 0;

    color: #fff;

    font-size: clamp(55px, 7vw, 92px);
    line-height: .92;

    font-weight: 800;
    letter-spacing: -.065em;
}

.contact-hero h1 strong {
    color: #ef2b2d;
}

.contact-hero-copy > p {
    max-width: 570px;

    margin: 28px 0 0;

    color: #999;

    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   QUICK PANEL
===================================================== */

.contact-quick-panel {
    align-self: stretch;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 50px 0 50px 45px;

    border-left: 1px solid #333;
}

.quick-panel-heading {
    margin-bottom: 25px;

    color: #666;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.quick-contact-item {
    padding: 20px 0;

    border-bottom: 1px solid #333;
}

.quick-contact-item:first-of-type {
    border-top: 1px solid #333;
}

.quick-contact-item span {
    display: block;

    margin-bottom: 8px;

    color: #777;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: .13em;
}

.quick-contact-item a {
    color: #fff;

    font-size: 16px;
    font-weight: 600;

    transition: color .25s ease;
}

.quick-contact-item a:hover {
    color: #ef2b2d;
}


/* =====================================================
   LOCATIONS
===================================================== */

.locations-section {
    padding: 110px 0 120px;

    background: #fff;
}

.locations-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 70px;

    margin-bottom: 70px;
}

.small-label {
    color: #ef2b2d;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.locations-heading h2 {
    margin: 18px 0 0;

    color: #111;

    font-size: clamp(42px, 5vw, 66px);
    line-height: .95;

    font-weight: 800;
    letter-spacing: -.055em;
}

.locations-heading h2 strong {
    color: #ef2b2d;
}

.locations-heading > p {
    max-width: 330px;

    margin: 0;

    color: #777;

    font-size: 12px;
    line-height: 1.8;
}


/* =====================================================
   LOCATION BLOCK
===================================================== */

.location-block {
    display: grid;

    grid-template-columns: 43% 57%;

    min-height: 500px;

    border-top: 1px solid #ddd;
}

.location-reverse {
    grid-template-columns: 57% 43%;
}

.location-reverse .location-image {
    order: 2;
}

.location-reverse .location-content {
    order: 1;
}


/* =====================================================
   LOCATION IMAGE
===================================================== */

.location-image {
    position: relative;

    margin: 30px 30px 30px 0;

    overflow: hidden;

    background: #eee;
}

.location-reverse .location-image {
    margin: 30px 0 30px 30px;
}

.location-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    transition: transform .7s ease;
}

.location-block:hover .location-image img {
    transform: scale(1.035);
}


/* =====================================================
   LOCATION CONTENT
===================================================== */

.location-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px 8%;

    border-left: 1px solid #ddd;
}

.location-reverse .location-content {
    border-left: 0;
    border-right: 1px solid #ddd;
}

.location-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 18px;
}

.location-type {
    color: #ef2b2d;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
}

.location-city {
    color: #999;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
}

.location-content h3 {
    margin: 0 0 28px;

    color: #111;

    font-size: clamp(35px, 4vw, 54px);
    line-height: .95;

    font-weight: 800;
    letter-spacing: -.05em;
}

.location-person {
    display: flex;
    flex-direction: column;

    gap: 4px;

    margin-bottom: 28px;
}

.person-name {
    color: #111;

    font-size: 17px;
    font-weight: 700;
}

.person-role {
    color: #777;

    font-size: 10px;
}

.location-address {
    padding-top: 20px;

    border-top: 1px solid #ddd;
}

.location-address > span {
    color: #999;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: .15em;
}

.location-address p {
    margin: 10px 0 0;

    color: #666;

    font-size: 12px;
    line-height: 1.8;
}

.location-phone {
    display: flex;
    align-items: center;

    gap: 16px;

    width: fit-content;

    margin-top: 30px;

    padding: 12px 0;

    border-bottom: 1px solid #111;

    color: #111;

    font-size: 14px;
    font-weight: 700;

    transition: .25s ease;
}

.location-phone span {
    color: #ef2b2d;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: .12em;
}

.location-phone b {
    font-size: 17px;

    transition: transform .25s ease;
}

.location-phone:hover {
    color: #ef2b2d;
}

.location-phone:hover b {
    transform: translateX(5px);
}


/* =====================================================
   ENQUIRY
===================================================== */

.enquiry-section {
    padding: 105px 0;

    background: #f4f5f5;
}

.enquiry-heading {
    margin-bottom: 60px;
}

.enquiry-heading h2 {
    margin: 18px 0 0;

    color: #111;

    font-size: clamp(45px, 5vw, 70px);
    line-height: .9;

    font-weight: 800;
    letter-spacing: -.06em;
}

.enquiry-heading h2 strong {
    color: #ef2b2d;
}


/* =====================================================
   ENQUIRY AREA
===================================================== */

.enquiry-area {
    display: grid;

    grid-template-columns: 32% 68%;

    background: #fff;

    border: 1px solid #ddd;
}

.enquiry-note {
    padding: 50px;

    background: #111;

    color: #fff;
}

.enquiry-note p {
    max-width: 280px;

    margin: 0;

    color: #aaa;

    font-size: 13px;
    line-height: 1.8;
}

.enquiry-note-line {
    width: 40px;
    height: 2px;

    margin: 40px 0 25px;

    background: #ef2b2d;
}

.enquiry-note > span {
    display: block;

    margin-bottom: 12px;

    color: #777;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
}


/* =====================================================
   FORM
===================================================== */

.contact-form {
    padding: 50px;

    display: flex;
    flex-direction: column;

    gap: 25px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-field label {
    color: #333;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 13px 0;

    border: 0;
    border-bottom: 1px solid #ccc;

    outline: none;

    background: transparent;

    color: #111;

    font-family: inherit;
    font-size: 13px;

    transition: border-color .25s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-bottom-color: #111;
}

.form-field textarea {
    resize: vertical;

    min-height: 100px;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: 5px;

    padding: 17px 20px;

    border: 0;

    background: #ef2b2d;

    color: #fff;

    font-family: inherit;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;

    cursor: pointer;

    transition: .25s ease;
}

.submit-button span {
    font-size: 18px;

    transition: transform .25s ease;
}

.submit-button:hover {
    background: #111;
}

.submit-button:hover span {
    transform: translateX(5px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .contact-hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-quick-panel {
        padding: 35px 0 55px;

        border-left: 0;
        border-top: 1px solid #333;
    }

    .locations-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 25px;
    }

    .location-block,
    .location-reverse {
        grid-template-columns: 1fr;
    }

    .location-reverse .location-image {
        order: initial;
    }

    .location-reverse .location-content {
        order: initial;
    }

    .location-image,
    .location-reverse .location-image {
        height: 430px;

        margin: 25px 0 0;
    }

    .location-content,
    .location-reverse .location-content {
        padding: 45px 0 55px;

        border: 0;
    }

    .enquiry-area {
        grid-template-columns: 1fr;
    }

    .enquiry-note {
        padding: 40px;
    }

}


@media (max-width: 650px) {

    .contact-hero-copy {
        padding: 75px 0 50px;
    }

    .contact-hero h1 {
        font-size: 55px;
    }

    .locations-section {
        padding: 75px 0;
    }

    .locations-heading {
        margin-bottom: 40px;
    }

    .locations-heading h2 {
        font-size: 45px;
    }

    .location-image,
    .location-reverse .location-image {
        height: 380px;
    }

    .location-content,
    .location-reverse .location-content {
        padding: 40px 0 50px;
    }

    .location-content h3 {
        font-size: 42px;
    }

    .enquiry-section {
        padding: 75px 0;
    }

    .enquiry-heading h2 {
        font-size: 45px;
    }

    .enquiry-note {
        padding: 30px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

}

.contact-page .location-block,
.contact-page .location-reverse {
    display: block;
    min-height: 0;
}

.contact-page .location-image {
    display: none;
}

.contact-page .location-content,
.contact-page .location-reverse .location-content {
    padding: 55px 8%;
    border-left: 0;
    border-right: 0;
}

.contact-page .location-block,
.contact-page .location-reverse {
    display: grid;
    min-height: 500px;
}

.contact-page .location-reverse {
    grid-template-columns: 57% 43%;
}

.contact-page .location-image,
.contact-page .location-reverse .location-image {
    display: block;
    height: auto;
    min-height: 440px;
    margin: 30px 30px 30px 0;
}

.contact-page .location-reverse .location-image {
    order: 2;
    margin: 30px 0 30px 30px;
}

.contact-page .location-image iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 440px;
    border: 0;
}