@charset "UTF-8";


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;

    width: 100%;
    min-height: 100%;

    background: #000;
    color: #fff;

    font-family: "Manrope", sans-serif;
}

* {
    box-sizing: border-box;
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-nav {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 72px;

    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #000;

    z-index: 1000;
}


/* =========================================================
   NAV BRAND
========================================================= */

.nav-brand {

    display: flex;

    align-items: center;

    gap: 20px;

    min-width: 0;

    height: 72px;
}


/* =========================================================
   SUP TOURING
========================================================= */

.site-logo {

    display: block;

    color: #fff;

    text-decoration: none;

    font-size: 16px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -0.04em;

    white-space: nowrap;
}


/* =========================================================
   PNG LOGO
========================================================= */

/*
   IMPORTANT:

   Your PNG contains transparent space around
   the actual artwork.

   The large dimensions below give us room
   to enlarge it without increasing the nav height.
*/

.brand-logo {

    display: block;

    width: 150px;

    height: 60px;

    object-fit: contain;

    object-position: center;

    flex-shrink: 0;

    border-radius: 4px;

    /*
       This is the main size control.
    */

    transform: scale(1.55);

    transform-origin: center center;
}


/* =========================================================
   NAV LINKS
========================================================= */

.site-links {

    display: flex;

    align-items: center;

    gap: 32px;
}

.site-links a {

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    line-height: 1;

    font-weight: 600;

    white-space: nowrap;

    transition:
        opacity 0.2s ease;
}

.site-links a:hover {

    opacity: 0.5;
}


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

.experience {

    position: relative;

    width: 100%;

    height: 100vh;

    min-height: 650px;

    padding: 40px;

    overflow: hidden;

    background: #000;
}


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

.experience-video {

    position: absolute;

    top: 40px;
    left: 40px;

    width:
        calc(100% - 80px);

    height:
        calc(100% - 80px);

    object-fit: cover;

    background: #111;

    z-index: 0;
}


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

.experience-overlay {

    position: absolute;

    top: 40px;
    left: 40px;

    width:
        calc(100% - 80px);

    height:
        calc(100% - 80px);

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.05) 45%,
            rgba(0, 0, 0, 0.45)
        );

    pointer-events: none;
}


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

.experience-content {

    position: absolute;

    top: 40px;
    left: 40px;

    width:
        calc(100% - 80px);

    height:
        calc(100% - 80px);

    padding:
        105px
        32px
        32px;

    display: flex;

    align-items: flex-start;

    z-index: 2;

    pointer-events: none;
}


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

.experience-title {

    text-align: left;
}

.experience h1 {

    margin: 0;

    max-width: 650px;

    font-size:
        clamp(36px, 4vw, 58px);

    line-height: 0.98;

    font-weight: 800;

    letter-spacing: -0.055em;
}


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

.experience-title p {

    margin:
        14px
        0
        0;

    font-size: 15px;

    line-height: 1.4;

    font-weight: 500;
}


/* =========================================================
   SOUND BUTTON
========================================================= */

.sound-button {

    margin-top: 22px;

    padding:
        10px
        16px;

    background: transparent;

    border:
        1px
        solid
        rgba(255, 255, 255, 0.85);

    color: #fff;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 11px;

    line-height: 1;

    font-weight: 700;

    cursor: pointer;

    pointer-events: auto;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.sound-button:hover {

    background:
        rgba(255, 255, 255, 0.15);

    border-color: #fff;
}


/* =========================================================
   VIDEO CONTROLS
========================================================= */

.video-controls {

    position: absolute;

    left: 50%;

    bottom: 55px;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    z-index: 10;
}


/* =========================================================
   VIDEO ARROWS
========================================================= */

.video-arrow {

    width: 34px;

    height: 34px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(0, 0, 0, 0.35);

    border:
        1px
        solid
        rgba(255, 255, 255, 0.75);

    color: #fff;

    font-family:
        Arial,
        sans-serif;

    font-size: 17px;

    line-height: 1;

    cursor: pointer;

    border-radius: 50%;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.video-arrow:hover {

    background:
        rgba(255, 255, 255, 0.2);

    transform:
        scale(1.05);
}

.video-arrow:active {

    transform:
        scale(0.95);
}


/* =========================================================
   VIDEO INDICATOR
========================================================= */

.video-indicator {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    min-width: 100px;
}


/* =========================================================
   VIDEO DOT
========================================================= */

.video-dot {

    display: block;

    width: 6px;

    height: 6px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease;
}


/* =========================================================
   ACTIVE VIDEO DOT
========================================================= */

.video-dot.active {

    width: 20px;

    border-radius: 10px;

    background: #fff;
}


/* =========================================================
   FEATURED GEAR
========================================================= */

.gear-section {

    width: 100%;

    padding:
        100px
        40px
        130px;

    background: #000;

    overflow: hidden;
}


/* =========================================================
   GEAR HEADER
========================================================= */

.gear-header {

    margin-bottom: 38px;
}

.gear-header h2 {

    margin: 0;

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

    line-height: 1;

    font-weight: 800;

    letter-spacing: -0.055em;
}

.gear-header p {

    margin:
        12px
        0
        0;

    max-width: 650px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 13px;

    line-height: 1.5;

    font-weight: 500;
}


/* =========================================================
   GEAR GRID
========================================================= */

.gear-grid {

    width: 100%;

    display: grid;

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

    gap: 20px;
}


/* =========================================================
   GEAR CARD
========================================================= */

.gear-card {

    min-width: 0;

    user-select: none;
}


/* =========================================================
   GEAR IMAGE
========================================================= */

.gear-card-image {

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #111;
}

.gear-card-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.gear-card:hover
.gear-card-image img {

    transform:
        scale(1.025);
}


/* =========================================================
   GEAR COPY
========================================================= */

.gear-card-info {

    padding-top: 16px;
}

.gear-card-info h3 {

    margin: 0;

    font-size: 14px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.015em;
}

.gear-card-info p {

    margin:
        7px
        0
        0;

    max-width: 430px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 12px;

    line-height: 1.5;

    font-weight: 500;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    width: 100%;

    min-height: 60vh;

    padding:
        120px
        40px;

    background: #000;
}

.about-content {

    max-width: 720px;
}

.about-content h2 {

    margin: 0;

    font-size:
        clamp(36px, 4.5vw, 64px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -0.06em;
}

.about-content p {

    margin:
        22px
        0
        0;

    max-width: 560px;

    font-size: 16px;

    line-height: 1.55;

    font-weight: 500;
}


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

@media (max-width: 900px) {

    .site-nav {

        padding:
            0
            28px;
    }


    .nav-brand {

        gap: 16px;
    }


    .brand-logo {

        width: 120px;

        height: 50px;

        transform:
            scale(1.45);
    }


    .experience {

        padding: 28px;
    }


    .experience-video,
    .experience-overlay {

        top: 28px;

        left: 28px;

        width:
            calc(100% - 56px);

        height:
            calc(100% - 56px);
    }


    .experience-content {

        top: 28px;

        left: 28px;

        width:
            calc(100% - 56px);

        height:
            calc(100% - 56px);

        padding:
            100px
            32px
            32px;
    }


    .experience h1 {

        font-size:
            clamp(34px, 4.5vw, 52px);
    }


    .gear-section {

        padding:
            80px
            28px
            100px;
    }


    .gear-grid {

        gap: 16px;
    }

}


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

@media (max-width: 768px) {

    .site-nav {

        height: 60px;

        padding:
            0
            20px;
    }


    .nav-brand {

        height: 60px;

        gap: 10px;
    }


    .site-logo {

        font-size: 14px;
    }


    .brand-logo {

        width: 90px;

        height: 38px;

        transform:
            scale(1.35);
    }


    .site-links {

        gap: 14px;
    }


    .site-links a {

        font-size: 9px;
    }


    /* HERO */

    .experience {

        height: 100svh;

        min-height: 600px;

        padding: 20px;
    }


    .experience-video,
    .experience-overlay {

        top: 20px;

        left: 20px;

        width:
            calc(100% - 40px);

        height:
            calc(100% - 40px);
    }


    .experience-content {

        top: 20px;

        left: 20px;

        width:
            calc(100% - 40px);

        height:
            calc(100% - 40px);

        padding:
            85px
            24px
            24px;
    }


    .experience h1 {

        max-width: 90%;

        font-size:
            clamp(32px, 9vw, 46px);

        line-height: 1;
    }


    .experience-title p {

        margin-top: 11px;

        font-size: 11px;

        max-width: 260px;
    }


    .sound-button {

        margin-top: 18px;

        padding:
            9px
            14px;

        font-size: 10px;
    }


    /* VIDEO CONTROLS */

    .video-controls {

        bottom: 42px;

        gap: 12px;
    }


    .video-arrow {

        width: 32px;

        height: 32px;

        font-size: 15px;
    }


    .video-indicator {

        min-width: 82px;

        gap: 5px;
    }


    .video-dot {

        width: 5px;

        height: 5px;
    }


    .video-dot.active {

        width: 17px;
    }


    /* GEAR */

    .gear-section {

        padding:
            70px
            20px
            90px;
    }


    .gear-header {

        margin-bottom: 28px;
    }


    .gear-header h2 {

        font-size: 30px;
    }


    .gear-header p {

        font-size: 11px;

        max-width: 340px;
    }


    .gear-grid {

        display: flex;

        gap: 14px;

        width:
            calc(100% + 20px);

        overflow-x: auto;

        padding-right: 20px;

        scrollbar-width: none;

        -webkit-overflow-scrolling:
            touch;
    }


    .gear-grid::-webkit-scrollbar {

        display: none;
    }


    .gear-card {

        flex:
            0 0 82%;
    }


    /* ABOUT */

    .about-section {

        min-height: 50vh;

        padding:
            90px
            24px;
    }


    .about-content h2 {

        font-size: 38px;
    }


    .about-content p {

        font-size: 14px;
    }

}


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

@media (max-width: 480px) {

    .site-nav {

        padding:
            0
            16px;
    }


    .nav-brand {

        gap: 8px;
    }


    .site-logo {

        font-size: 13px;
    }


    .brand-logo {

        width: 72px;

        height: 32px;

        transform:
            scale(1.25);
    }


    .site-links {

        gap: 8px;
    }


    .site-links a {

        font-size: 8px;
    }


    .experience-content {

        padding:
            85px
            20px
            20px;
    }


    .experience h1 {

        font-size: 34px;
    }


    .gear-card {

        flex:
            0 0 86%;
    }

}