/* =====================================================
   ABOUT PAGE
===================================================== */

.about-page-content {
    background: #050505;
    color: #ffffff;
    overflow: hidden;
    padding-top: 110px;
}

.about-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =====================================================
   COMMON
===================================================== */

.about-eyebrow {
    display: block;
    margin-bottom: 18px;

    color: #ff6b00;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-page-content h1,
.about-page-content h2,
.about-page-content h3,
.about-page-content p {
    margin-top: 0;
}


/* =====================================================
   HERO
===================================================== */

.about-hero {
    padding: 80px 0 110px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-hero-image {
    position: relative;
    border: 1px solid #ff6b00;
    border-radius: 7px;
    overflow: hidden;
    aspect-ratio: 1 / .76;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-hero-content {
    max-width: 520px;
}

.about-hero-content h1 {
    margin-bottom: 24px;

    font-size: clamp(38px, 4vw, 64px);
    line-height: .98;
    font-weight: 700;
    letter-spacing: -2px;
}

.about-hero-content h1 span {
    display: block;
    color: #ff6b00;
}

.about-hero-content p {
    max-width: 480px;
    margin-bottom: 28px;

    color: #888888;
    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   BUTTON
===================================================== */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 12px 20px;

    background: #ff6b00;
    color: #ffffff;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-decoration: none;

    transition: .25s ease;
}

.about-btn span {
    font-size: 14px;
}

.about-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
}


/* =====================================================
   STORY
===================================================== */

.about-story {
    padding: 30px 0 120px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px;
}

.about-story-title h2 {
    max-width: 300px;

    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.about-story-title h2 span {
    display: block;
    color: #ff6b00;
}

.about-story-content {
    max-width: 700px;
}

.about-story-content p {
    margin-bottom: 20px;

    color: #777777;
    font-size: 13px;
    line-height: 1.9;
}

.about-text-link {
    display: inline-flex;
    gap: 10px;

    margin-top: 12px;

    color: #ff6b00;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .7px;
}


/* =====================================================
   GLOBAL PRESENCE
===================================================== */

.global-presence {
    padding: 30px 0 110px;
}

.global-heading {
    max-width: 620px;
    margin-bottom: 35px;
}

.global-heading h2 {
    margin-bottom: 16px;

    font-size: clamp(32px, 3vw, 48px);
    line-height: 1;
    letter-spacing: -1.5px;
}

.global-heading h2 span {
    color: #ff6b00;
}

.global-heading p {
    color: #777777;
    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   WORLD MAP
===================================================== */

.global-map {
    position: relative;

    width: 100%;
    height: 290px;

    margin-bottom: 12px;

    background: #0b0b0b;
    border: 1px solid #171717;
    border-radius: 6px;

    overflow: hidden;
}

.global-map > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    opacity: .65;
}

.map-location {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 7px;

    color: #ff6b00;

    font-size: 8px;
    font-weight: 700;
}

.map-dot {
    width: 7px;
    height: 7px;

    display: block;

    background: #ff6b00;
    border-radius: 50%;

    box-shadow: 0 0 0 4px rgba(255, 107, 0, .12);
}

.location-usa {
    left: 24%;
    top: 44%;
}

.location-middle-east {
    left: 57%;
    top: 47%;
}

.location-asia {
    left: 69%;
    top: 51%;
}


/* =====================================================
   LOCATION CARDS
===================================================== */

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.location-card {
    background: #0a0a0a;
    border: 1px solid #1b1b1b;

    border-radius: 5px;
    overflow: hidden;

    transition: .3s ease;
}

.location-card:hover {
    border-color: #333333;
    transform: translateY(-4px);
}

.location-card-image {
    position: relative;

    height: 150px;

    overflow: hidden;
}

.location-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: .4s ease;
}

.location-card:hover .location-card-image img {
    transform: scale(1.04);
}

.location-number {
    position: absolute;

    top: 12px;
    left: 12px;

    color: #ff6b00;

    font-size: 11px;
    font-weight: 700;
}

.location-card-content {
    padding: 20px;
}

.location-card-content h3 {
    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 700;
}

.location-card-content p {
    min-height: 68px;

    color: #777777;

    font-size: 10px;
    line-height: 1.7;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 10px;

    color: #ff6b00;

    font-size: 8px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .5px;
}


/* =====================================================
   GLOBAL BUTTON
===================================================== */

.global-button-wrap {
    display: flex;
    justify-content: center;

    margin-top: 28px;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border: 1px solid #ff6b00;
    border-radius: 30px;

    color: #ff6b00;

    font-size: 9px;
    font-weight: 700;

    text-decoration: none;

    transition: .25s ease;
}

.outline-btn:hover {
    background: #ff6b00;
    color: #ffffff;
}


/* =====================================================
   CTA
===================================================== */

.about-cta {
    padding: 100px 0 120px;

    border-top: 1px solid #151515;
}

.about-cta-inner {
    max-width: 720px;
    margin: 0 auto;

    text-align: center;
}

.about-cta-inner h2 {
    margin-bottom: 20px;

    font-size: clamp(36px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -2px;
}

.about-cta-inner h2 span {
    display: block;
    color: #ff6b00;
}

.about-cta-inner p {
    max-width: 540px;
    margin: 0 auto 28px;

    color: #777777;
    font-size: 12px;
    line-height: 1.8;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .about-hero {
        padding: 60px 0 80px;
    }

    .about-hero-grid {
        gap: 40px;
    }

    .about-story-grid {
        gap: 50px;
    }

    .global-map {
        height: 240px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .about-container {
        width: min(100% - 30px, 600px);
    }


    /* HERO */

    .about-hero {
        padding: 40px 0 70px;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-hero-image {
        order: 1;
    }

    .about-hero-content {
        order: 2;
    }

    .about-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }


    /* STORY */

    .about-story {
        padding: 20px 0 70px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-story-title h2 {
        max-width: 100%;
        font-size: 36px;
    }


    /* GLOBAL */

    .global-presence {
        padding: 20px 0 70px;
    }

    .global-heading h2 {
        font-size: 36px;
    }

    .global-map {
        height: 180px;
    }

    .map-location small {
        font-size: 6px;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-card-image {
        height: 190px;
    }

    .location-card-content p {
        min-height: auto;
    }


    /* CTA */

    .about-cta {
        padding: 70px 0 80px;
    }

    .about-cta-inner h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

}