﻿/* ==============================================
   Contact Page Styles
   ============================================== */

/* â”€â”€â”€ Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-section {
    background-color: #000;
    padding: 45px 20px;
    width: 100%;
    overflow: clip;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 78px;
    width: 100%;
}

/* â”€â”€â”€ Hero Title â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-hero-title {
    font-family: 'owners-xxnarrow', 'Owners TRIAL', sans-serif;
    font-weight: 900;
    font-size: 120px;
    line-height: 0.75;
    color: #f5f5ed;
    letter-spacing: -4.4px;
    white-space: nowrap;
    margin-bottom: 3rem;

}

#contact-title,
#contact-team-title {
    font-family: 'Owners XWide Regular', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 28px;
    color: #f5f5ed;
    letter-spacing: -0.32px;
    width: 100%;
    margin: 0;
    text-align: center;
}

.contact-hero-title p {
    margin: 0;
}

/* â”€â”€â”€ Services Lists â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-services {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.contact-service-group {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.contact-service-group__label {
    font-family: 'owners', 'Owners TRIAL', sans-serif;
    font-weight: 700;
    font-size: 14.615px;
    line-height: 13px;
    color: #f5f5ed;
    letter-spacing: -0.15px;
    width: 172px;
    flex-shrink: 0;
    white-space: unset;
}

.contact-service-group__label p {
    margin: 0;
}

.contact-service-group__list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
    min-width: 0;
}

.contact-service-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-service-item__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f5ed;
    font-size: 18px;
}

.contact-service-item__text {
    font-family: 'owners-narrow', 'Owners TRIAL', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: normal;
    color: #f5f5ed;
    letter-spacing: -0.22px;
    margin: 0;
}

/* â”€â”€â”€ Right Column â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
}

.contact-right__heading {
    font-family: 'owners', 'Owners TRIAL', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 28px;
    color: #f5f5ed;
    letter-spacing: -0.32px;
    width: 100%;
    margin: 0;
}

.contact-right__image-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 9px;
    overflow: hidden;
    position: relative;
}

.contact-right__image-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#contact-subtitle {
    font-family: 'Owners TRIALXWide XBlack', sans-serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 0.85;
    color: #f5f5ed;
    letter-spacing: -1px;
    margin: 10px 0;
}

.content-sub-title p {
    font-family: 'Owners_Narrow_Regular', sans-serif;
    font-size: 15px;
    line-height: 0.85;
    color: #f5f5ed;
    letter-spacing: 0.3px;
    margin: 0;
    text-align: center;
    line-height: 17px;
}

/* â”€â”€â”€ Desktop (lg+) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (min-width: 1024px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-hero-title {
        font-size: 220px;
    }

    .contact-grid>* {
        flex: 1 0 0;
        min-width: 0;
    }

    .contact-right {
        align-self: stretch;
    }

    .contact-right__image-wrap {
        aspect-ratio: 9/16;
        flex: 1;
        min-height: 400px;
    }
}

/* â”€â”€â”€ Tablet â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 80px;
        letter-spacing: -2px;
    }

    .contact-service-group {
        flex-direction: column;
        gap: 14px;
    }

    .contact-service-group__label {
        width: 100%;
    }

    .contact-right__heading {
        font-size: 26px;
        line-height: 1.2;
    }
}

/* â”€â”€â”€ Mobile â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 480px) {
    .contact-section {
        padding: 30px 16px;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-hero-title {
        font-size: 52px;
        letter-spacing: -1.5px;
        white-space: normal;
    }

    .contact-service-item__text {
        font-size: 18px;
    }

    .contact-right__heading {
        font-size: 22px;
    }
}