/* =========================================
   STAYEXOTIC ABOUT PAGE
========================================= */

.about-body {
    margin: 0;

    background: #000;
    color: #fff;

    font-family: Arial, Helvetica, sans-serif;

    overflow-x: hidden;

    animation: aboutPageFade 0.7s ease forwards;
}


/* =========================================
   NAVBAR
========================================= */

.about-navbar {
    width: 100%;
    height: 82px;

    padding: 0 48px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    background: #000;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.12);

    position: relative;

    z-index: 100;
}


.about-logo {
    width: fit-content;
}


.about-logo img {
    width: 120px;
    height: auto;

    display: block;

    filter: invert(1);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.about-logo:hover img {
    transform: scale(1.04);

    opacity: 0.75;
}


.about-nav-links {
    display: flex;

    align-items: center;

    gap: 42px;
}


.about-nav-links a,
.about-nav-right a {
    color: #fff;

    text-decoration: none;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    position: relative;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.about-nav-links a::after,
.about-nav-right a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #fff;

    transition:
        width 0.25s ease;
}


.about-nav-links a:hover,
.about-nav-right a:hover {
    opacity: 0.7;

    transform: translateY(-1px);
}


.about-nav-links a:hover::after,
.about-nav-right a:hover::after {
    width: 100%;
}


.about-nav-right {
    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 30px;
}


/* =========================================
   MAIN
========================================= */

.about-main {
    width: 100%;
}


/* =========================================
   HERO
========================================= */

.about-hero {
    min-height: 90vh;

    padding:
        65px
        48px
        80px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.about-top-line {
    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 9px;

    letter-spacing: 3px;

    opacity: 0;

    animation:
        aboutFadeUp
        0.8s ease
        0.2s forwards;
}


.about-title-wrap {
    margin:
        75px
        0
        70px;
}


.about-title-wrap h1 {
    margin: 0;

    font-size:
        clamp(
            100px,
            15vw,
            235px
        );

    font-weight: 800;

    line-height: 0.72;

    letter-spacing: -10px;

    opacity: 0;

    animation:
        aboutTitleEnter
        1s ease
        0.35s forwards;
}


.about-intro {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: end;

    opacity: 0;

    animation:
        aboutFadeUp
        0.8s ease
        0.7s forwards;
}


.about-intro-main {
    margin: 0;

    font-size:
        clamp(
            22px,
            3vw,
            44px
        );

    line-height: 1;

    letter-spacing: -1px;

    max-width: 450px;
}


.about-intro-copy {
    margin: 0;

    max-width: 520px;

    font-size: 10px;

    line-height: 2;

    letter-spacing: 2px;

    opacity: 0.55;
}


/* =========================================
   STORY SECTION
========================================= */

.about-story {
    padding:
        120px
        48px;

    background: #fff;

    color: #000;

    display: grid;

    grid-template-columns:
        0.7fr
        2fr;

    gap: 80px;
}


.about-story-label {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.about-story-label span {
    font-size: 10px;

    opacity: 0.45;
}


.about-story-label p {
    margin: 0;

    font-size: 9px;

    letter-spacing: 3px;
}


.about-story-content {
    max-width: 900px;
}


.about-story-content h2 {
    margin:
        0
        0
        50px;

    font-size:
        clamp(
            65px,
            8vw,
            135px
        );

    line-height: 0.85;

    letter-spacing: -6px;
}


.about-story-content p {
    max-width: 650px;

    margin:
        0
        0
        25px;

    font-size: 11px;

    line-height: 2;

    letter-spacing: 1.7px;
}


/* =========================================
   VALUES
========================================= */

.about-values {
    padding:
        0
        48px
        120px;

    background: #fff;

    color: #000;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 1px;

    background-color: #ddd;
}


.value-card {
    min-height: 330px;

    padding: 35px;

    background: #fff;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.value-card:hover {
    background: #000;

    color: #fff;
}


.value-card span {
    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0.45;
}


.value-card h3 {
    margin: auto 0 25px;

    font-size:
        clamp(
            30px,
            4vw,
            60px
        );

    letter-spacing: -2px;
}


.value-card p {
    margin: 0;

    max-width: 300px;

    font-size: 9px;

    line-height: 1.8;

    letter-spacing: 2px;

    opacity: 0.55;
}


/* =========================================
   BIG STATEMENT
========================================= */

.about-statement {
    min-height: 90vh;

    padding:
        120px
        48px;

    background: #000;

    color: #fff;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.about-statement p {
    margin:
        0
        0
        35px;

    font-size: 9px;

    letter-spacing: 4px;

    opacity: 0.5;
}


.about-statement h2 {
    margin: 0;

    font-size:
        clamp(
            70px,
            10vw,
            160px
        );

    line-height: 0.82;

    letter-spacing: -7px;
}


.about-statement a {
    width: fit-content;

    margin-top: 50px;

    padding-bottom: 7px;

    color: #fff;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    border-bottom:
        1px solid #fff;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.about-statement a:hover {
    opacity: 0.5;

    transform: translateX(6px);
}


/* =========================================
   BOTTOM
========================================= */

.about-bottom {
    padding:
        30px
        48px;

    border-top:
        1px solid
        rgba(255,255,255,0.12);

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: #000;

    color: #fff;
}


.about-bottom span {
    font-size: 8px;

    letter-spacing: 3px;

    opacity: 0.4;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes aboutPageFade {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes aboutFadeUp {

    from {
        opacity: 0;

        transform:
            translateY(15px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes aboutTitleEnter {

    from {
        opacity: 0;

        transform:
            translateY(30px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .about-navbar {
        padding: 0 25px;
    }


    .about-nav-links {
        gap: 22px;
    }


    .about-nav-right {
        gap: 15px;
    }


    .about-hero {
        padding:
            55px
            25px
            70px;
    }


    .about-story {
        padding:
            100px
            25px;

        gap: 45px;
    }


    .about-values {
        padding:
            0
            25px
            90px;
    }


    .about-statement {
        padding:
            100px
            25px;
    }


    .about-bottom {
        padding:
            28px
            25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .about-navbar {
        height: auto;

        min-height: 90px;

        padding: 18px;

        display: flex;

        flex-wrap: wrap;

        gap: 18px;
    }


    .about-logo {
        margin-right: auto;
    }


    .about-logo img {
        width: 110px;
    }


    .about-nav-links {
        order: 3;

        width: 100%;

        justify-content:
            space-between;

        padding-top: 15px;

        border-top:
            1px solid
            rgba(
                255,
                255,
                255,
                0.12
            );
    }


    .about-hero {
        min-height: auto;

        padding:
            45px
            18px
            70px;
    }


    .about-top-line span:last-child {
        display: none;
    }


    .about-title-wrap {
        margin:
            60px
            0;
    }


    .about-title-wrap h1 {
        font-size: 88px;

        letter-spacing: -6px;
    }


    .about-intro {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .about-story {
        padding:
            80px
            18px;

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .about-story-content h2 {
        font-size: 65px;

        letter-spacing: -4px;
    }


    .about-values {
        padding:
            0
            18px
            70px;

        grid-template-columns: 1fr;

        gap: 1px;
    }


    .value-card {
        min-height: 260px;
    }


    .about-statement {
        min-height: 75vh;

        padding:
            80px
            18px;
    }


    .about-statement h2 {
        font-size: 62px;

        letter-spacing: -4px;
    }


    .about-bottom {
        padding:
            25px
            18px;

        gap: 15px;
    }


    .about-bottom span:nth-child(2) {
        display: none;
    }

}