/* =========================================================
   VIAREXIS
   MAIN STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: #020b11;
    color: #f4f0e8;

    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

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

    display: flex;
    align-items: center;

    padding: 0 5vw;

    background: rgba(2, 11, 17, 0.97);

    border-bottom: 1px solid rgba(209, 163, 75, 0.45);
}

.brand {
    flex-shrink: 0;

    font-size: 17px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-header nav {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: auto;
    margin-right: 28px;

    font-size: 10px;
    text-transform: uppercase;
}

.site-header nav a {
    opacity: 0.9;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.site-header nav a:hover {
    color: #d1a34b;
    opacity: 1;
}

.lang {
    flex-shrink: 0;

    font-size: 10px;
    text-transform: uppercase;
}


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

.hero {
    width: 100%;

    margin: 0;
    padding: 0;

    background: #020b11;

    overflow: hidden;
}

.hero img {
    display: block;

    width: 100%;
    max-width: none;

    height: auto;

    margin: 0;
    padding: 0;
}


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

.experience-strip {
    width: 100%;

    background: #071b2a;

    border-top: 1px solid #b88937;
    border-bottom: 1px solid #b88937;
}

.experience-title {
    padding: 16px 20px 4px;

    text-align: center;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;
    letter-spacing: 0.04em;

    text-transform: uppercase;
}

.experience-grid {
    width: 100%;
    max-width: 1500px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin: 0 auto;

    padding: 20px 5vw 26px;
}

.experience-grid article {
    min-height: 110px;

    padding: 10px 28px;

    text-align: center;

    border-right: 1px solid rgba(209, 163, 75, 0.25);
}

.experience-grid article:last-child {
    border-right: 0;
}

.experience-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    margin: 0 auto 11px;

    border: 1px solid #d1a34b;
    border-radius: 50%;

    color: #d1a34b;

    font-size: 17px;
}

.experience-grid h3 {
    margin: 4px 0 6px;

    color: #d1a34b;

    font-size: 10px;
    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.experience-grid p {
    margin: 0;

    color: #d2d7da;

    font-size: 10px;
}


/* =========================================================
   CONCEPT + WORLD SHOWCASE
========================================================= */

.showcase-section {
    width: 100%;

    padding: 55px 6vw;

    background: #eee8dc;
    color: #111;
}

.showcase-inner {
    width: 100%;
    max-width: 1500px;

    display: grid;

    grid-template-columns:
        minmax(300px, 0.9fr)
        minmax(0, 2.5fr);

    gap: 55px;

    align-items: center;

    margin: 0 auto;
}


/* =========================================================
   SHOWCASE INTRO
========================================================= */

.showcase-intro {
    padding: 20px 0;
}

.eyebrow {
    margin: 0 0 16px;

    color: #b88937;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}

.showcase-intro h1 {
    margin: 0 0 26px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 4vw, 64px);

    font-weight: 400;

    line-height: 1.08;
}

.showcase-intro p:not(.eyebrow) {
    max-width: 450px;

    margin: 0 0 20px;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   WORLD CARDS
========================================================= */

.showcase-worlds {
    display: grid;

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

    gap: 10px;

    width: 100%;
}

.showcase-world {
    overflow: hidden;

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

    border: 1px solid rgba(129, 91, 35, 0.42);
    border-radius: 4px;

    text-align: center;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.showcase-world:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.14);
}

.showcase-world img {
    width: 100%;
    height: 190px;

    object-fit: cover;

    border-bottom:
        1px solid rgba(129, 91, 35, 0.25);
}

.showcase-world h3 {
    margin: 12px 12px 7px;

    font-size: 13px;

    line-height: 1.35;

    font-weight: 600;
}

.showcase-world p {
    margin: 0;

    padding: 0 14px 16px;

    color: #292929;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   CONNECTED UNIVERSE
========================================================= */

.connected-universe {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    background: #020b11;

    overflow: hidden;
}

.connected-universe img {
    display: block;

    width: 100% !important;
    max-width: none !important;

    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;
}


/* =========================================================
   FEATURES
========================================================= */

.features-section {
    width: 100%;

    padding: 25px 5vw 28px;

    background: #071b2a;

    border-top:
        1px solid rgba(209, 163, 75, 0.30);

    border-bottom:
        1px solid rgba(209, 163, 75, 0.30);
}

.features {
    width: 100%;
    max-width: 1500px;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    margin: 0 auto;
}

.features article {
    min-height: 90px;

    padding: 5px 25px;

    text-align: center;

    border-right:
        1px solid rgba(209, 163, 75, 0.20);
}

.features article:last-child {
    border-right: 0;
}

.feature-symbol {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    margin: 0 auto 8px;

    border:
        1px solid rgba(209, 163, 75, 0.8);

    border-radius: 50%;

    color: #d1a34b;

    font-size: 14px;
}

.features h3 {
    margin: 0 0 6px;

    color: #d1a34b;

    font-size: 10px;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}

.features p {
    margin: 0;

    color: #d7d7d7;

    font-size: 10px;

    line-height: 1.45;
}


/* =========================================================
   STUDIO
========================================================= */

.studio {
    width: 100%;

    padding: 45px 7vw;

    background: #eee8dc;
    color: #111;
}

.studio-inner {
    width: 100%;
    max-width: 1400px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, 0.8fr);

    gap: 80px;

    align-items: center;

    margin: 0 auto;
}

.studio-heading h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(35px, 3.4vw, 55px);

    font-weight: 400;

    line-height: 1.05;
}

.studio-copy p {
    max-width: 550px;

    margin: 0;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CINEMATIC IMAGE
========================================================= */

.final-visual {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    background: #000;

    overflow: hidden;
}

.final-visual img {
    display: block;

    width: 100% !important;
    max-width: none !important;

    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;

    display: flex;

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

    gap: 30px;

    padding: 18px 5vw;

    background: #01070b;

    border-top:
        1px solid rgba(209, 163, 75, 0.40);

    color: #aaa;

    font-size: 10px;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1500px) {

    .showcase-world img {
        height: 220px;
    }

}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1200px) {

    .site-header nav {
        gap: 16px;

        font-size: 9px;
    }

    .showcase-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .showcase-intro {
        max-width: 700px;
    }

    .showcase-worlds {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px;
    }

    .showcase-world img {
        height: 240px;
    }

}


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

@media (max-width: 900px) {

    .site-header {
        min-height: 58px;
    }

    .site-header nav {
        display: none;
    }

    .experience-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .experience-grid article:nth-child(2) {
        border-right: 0;
    }

    .experience-grid article:nth-child(1),
    .experience-grid article:nth-child(2) {
        border-bottom:
            1px solid rgba(209, 163, 75, 0.20);
    }

    .features {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .features article {
        border-right: 0;

        border-bottom:
            1px solid rgba(209, 163, 75, 0.15);

        padding: 18px;
    }

    .features article:last-child {
        border-bottom: 0;
    }

    .studio-inner {
        grid-template-columns: 1fr;

        gap: 30px;
    }

}


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

@media (max-width: 650px) {

    .site-header {
        padding: 0 5vw;
    }

    .brand {
        font-size: 14px;
    }

    .lang {
        margin-left: auto;
    }


    /* EXPERIENCE */

    .experience-grid {
        grid-template-columns: 1fr;

        padding-left: 7vw;
        padding-right: 7vw;
    }

    .experience-grid article {
        border-right: 0;

        border-bottom:
            1px solid rgba(209, 163, 75, 0.20);
    }

    .experience-grid article:last-child {
        border-bottom: 0;
    }


    /* SHOWCASE */

    .showcase-section {
        padding:
            50px 6vw;
    }

    .showcase-intro h1 {
        font-size: 40px;
    }

    .showcase-worlds {
        grid-template-columns: 1fr;
    }

    .showcase-world img {
        height: auto;
    }


    /* FEATURES */

    .features {
        grid-template-columns: 1fr;
    }


    /* STUDIO */

    .studio {
        padding:
            50px 7vw;
    }

    .studio-heading h2 {
        font-size: 36px;
    }


    /* FOOTER */

    .site-footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 7px;

        padding:
            20px 6vw;
    }

}