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