/* =========================================================
   ABOUT US PAGE
========================================================= */

/* HERO */

.story-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 680px;
    overflow: hidden;
    color: #ffffff;
}

.story-hero-background {
    position: absolute;
    inset: 0;
}

.story-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 18, 34, 0.96) 0%,
            rgba(10, 18, 34, 0.78) 50%,
            rgba(10, 18, 34, 0.32) 100%
        );
}

.story-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 100px;
}

.story-eyebrow,
.story-section-label {
    display: inline-block;
    color: #d4a33d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.story-hero h1 {
    max-width: 850px;
    margin: 18px 0 22px;

    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.story-hero p {
    max-width: 700px;
    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.8;
}


/* HERO BUTTONS */

.story-hero-actions,
.story-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.story-primary-button,
.story-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 12px 23px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 900;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.story-primary-button {
    background: #b78727;
    color: #ffffff;
}

.story-primary-button:hover {
    background: #cf9d38;
    color: #ffffff;
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(183, 135, 39, 0.3);
}

.story-secondary-button {
    border:
        1px solid rgba(255, 255, 255, 0.42);

    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;
    backdrop-filter: blur(10px);
}

.story-secondary-button:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #172033;
    transform: translateY(-2px);
}


/* GENERAL SECTIONS */

.story-section {
    padding: 100px 20px;
    background: #ffffff;
}

.story-light-section {
    background: #f6f8fb;
}

.story-two-column {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap: 75px;
    align-items: center;
}


/* INTRODUCTION IMAGES */

.story-image-stack {
    position: relative;
    min-height: 620px;
}

.story-main-image {
    position: absolute;
    inset: 0 90px 70px 0;

    overflow: hidden;

    border-radius: 26px;

    box-shadow:
        0 28px 70px
        rgba(16, 24, 40, 0.16);
}

.story-main-image img,
.story-small-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-small-image {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 44%;
    height: 250px;

    overflow: hidden;

    border: 9px solid #ffffff;
    border-radius: 20px;

    box-shadow:
        0 20px 45px
        rgba(16, 24, 40, 0.18);
}

.story-image-badge {
    position: absolute;
    left: 24px;
    bottom: 32px;
    z-index: 3;

    width: 250px;
    padding: 20px;

    border-radius: 15px;

    background:
        rgba(23, 32, 51, 0.96);

    box-shadow:
        0 18px 40px
        rgba(16, 24, 40, 0.25);
}

.story-image-badge strong,
.story-image-badge span {
    display: block;
}

.story-image-badge strong {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 17px;
}

.story-image-badge span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.5;
}


/* TEXT */

.story-copy h2,
.story-section-heading h2,
.story-promise-content h2,
.story-cta-content h2 {
    margin: 14px 0 20px;
    color: #172033;

    font-size:
        clamp(34px, 4.5vw, 54px);

    line-height: 1.1;
    letter-spacing: -0.025em;
}

.story-copy > p,
.story-section-heading p,
.story-promise-content p,
.story-cta-content p {
    color: #667085;
    font-size: 14px;
    line-height: 1.85;
}

.story-copy .story-lead {
    color: #344054;
    font-size: 17px;
    font-weight: 600;
}

.story-section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}


/* MISSION AND VISION */

.story-mission-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}

.story-mission-card {
    position: relative;
    overflow: hidden;

    min-height: 330px;
    padding: 36px;

    border: 1px solid #e4e7ec;
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 16px 40px
        rgba(16, 24, 40, 0.06);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.story-mission-card:hover {
    border-color:
        rgba(183, 135, 39, 0.38);

    transform: translateY(-6px);

    box-shadow:
        0 24px 48px
        rgba(16, 24, 40, 0.1);
}

.story-mission-card::after {
    content: "";

    position: absolute;
    right: -70px;
    bottom: -90px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        rgba(183, 135, 39, 0.08);
}

.story-card-number {
    position: absolute;
    top: 28px;
    right: 30px;

    color: #d0d5dd;
    font-size: 32px;
    font-weight: 900;
}

.story-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin-bottom: 24px;

    border-radius: 15px;
    background: #f5ead3;

    font-size: 25px;
}

.story-mission-card h3 {
    margin: 0 0 14px;
    color: #172033;
    font-size: 24px;
}

.story-mission-card p {
    position: relative;
    z-index: 1;

    margin: 0;

    color: #667085;
    font-size: 14px;
    line-height: 1.8;
}


/* SERVICES */

.story-services-layout {
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
}

.story-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 16px;

    color: #b78727;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.story-text-link span {
    transition: transform 0.2s ease;
}

.story-text-link:hover span {
    transform: translateX(5px);
}

.story-service-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}

.story-service-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 22px;

    border: 1px solid #e4e7ec;
    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 12px 30px
        rgba(16, 24, 40, 0.05);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.story-service-item:hover {
    border-color:
        rgba(183, 135, 39, 0.42);

    transform: translateY(-4px);

    box-shadow:
        0 18px 36px
        rgba(16, 24, 40, 0.09);
}

.story-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    border-radius: 12px;
    background: #f5ead3;

    font-size: 20px;
}

.story-service-item h3 {
    margin: 0 0 6px;
    color: #172033;
    font-size: 15px;
}

.story-service-item p {
    margin: 0;
    color: #667085;
    font-size: 12px;
    line-height: 1.6;
}


/* VALUES */

.story-values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.story-value-card {
    padding: 26px;

    border: 1px solid #e4e7ec;
    border-radius: 17px;

    background: #ffffff;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.story-value-card:hover {
    border-color:
        rgba(183, 135, 39, 0.4);

    transform: translateY(-5px);

    box-shadow:
        0 16px 35px
        rgba(16, 24, 40, 0.08);
}

.story-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    margin-bottom: 20px;

    border-radius: 13px;

    background: #f5ead3;
    color: #b78727;

    font-size: 21px;
    font-weight: 900;
}

.story-value-card h3 {
    margin: 0 0 10px;
    color: #172033;
    font-size: 17px;
}

.story-value-card p {
    margin: 0;
    color: #667085;
    font-size: 12px;
    line-height: 1.7;
}


/* PROMISE */

.story-promise-card {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(260px, 0.8fr);

    gap: 50px;
    align-items: center;

    padding: 55px;

    border-radius: 24px;
    background: #172033;

    box-shadow:
        0 28px 65px
        rgba(16, 24, 40, 0.18);
}

.story-promise-content h2 {
    color: #ffffff;
}

.story-promise-content p {
    color: rgba(255, 255, 255, 0.72);
}

.story-promise-list {
    display: grid;
    gap: 12px;
}

.story-promise-list span {
    display: flex;
    align-items: center;

    min-height: 58px;
    padding: 13px 17px;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.07);

    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.story-promise-list span::before {
    content: "✓";

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 29px;

    width: 29px;
    height: 29px;
    margin-right: 11px;

    border-radius: 50%;

    background: #b78727;
    color: #ffffff;
}


/* FINAL CALL TO ACTION */

.story-cta-section {
    padding: 95px 20px;

    background:
        linear-gradient(
            135deg,
            rgba(10, 18, 34, 0.96),
            rgba(23, 32, 51, 0.92)
        ),
        url("../images/hero/world-travel.jpg")
        center / cover no-repeat;

    color: #ffffff;
    text-align: center;
}

.story-cta-content {
    max-width: 780px;
    margin: 0 auto;
}

.story-cta-content h2 {
    color: #ffffff;
}

.story-cta-content p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
}

.story-cta-actions {
    justify-content: center;
}


/* TABLET */

@media (max-width: 1050px) {
    .story-two-column,
    .story-services-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-image-stack {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }

    .story-values-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .story-promise-card {
        grid-template-columns: 1fr;
    }
}


/* MOBILE */

@media (max-width: 760px) {
    .story-hero {
        min-height: 610px;
    }

    .story-hero-content {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .story-hero h1 {
        font-size: 43px;
    }

    .story-hero p {
        font-size: 15px;
    }

    .story-section {
        padding: 75px 16px;
    }

    .story-mission-grid,
    .story-service-list,
    .story-values-grid {
        grid-template-columns: 1fr;
    }

    .story-image-stack {
        min-height: 500px;
    }

    .story-main-image {
        inset: 0 40px 65px 0;
    }

    .story-small-image {
        width: 48%;
        height: 190px;
    }

    .story-image-badge {
        left: 14px;
        bottom: 20px;
        width: 220px;
    }

    .story-promise-card {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .story-hero-actions,
    .story-cta-actions {
        flex-direction: column;
    }

    .story-primary-button,
    .story-secondary-button {
        width: 100%;
    }
}