@font-face {
    font-family: 'TypeG';
    src: url('../assets/fonts/TypeG.otf');
    font-weight: normal;
}
@font-face {
    font-family: 'TypeG';
    src: url('../assets/fonts/TypeG-Bold.otf');
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'neue-haas-grotesk-display', sans-serif;
    box-sizing: border-box !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: none !important;
    background: none !important;
}

.lazy {
    /*opacity: 0;*/
    transition: opacity .5s ease;
}
.lazy.loaded {
    opacity: 1;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: auto;
}

header {
    position: fixed;
    width: inherit; /* body - 100% */
    height: inherit; /* body - 100% */
    pointer-events: none;

    z-index: 10;
}

ul {
    margin: 0 !important;
    padding: 0 !important;
}

li {
    display: inline-block;
    list-style: none;
}

a {
    margin: 0 !important;
    padding: 0 !important;
}

button {
    margin: 0 !important;
    padding: 0 !important;
    border: none;
    background: none;
    outline: 0;
    pointer-events: auto;
    cursor: pointer;
}
button:focus {
    outline: 0 !important;
}

.resize-anim-disable * {
    transition: none !important;
    animation: none !important;
}

/* ---------- ---------- Main */
#main {
    width: inherit;
    height: inherit;
    background-color: var(--color-background) !important;
    overflow-x: hidden;
    overflow-y: scroll;
}

/*
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////

GLOBAL ELEMENTS

/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/

/* ---------- ---------- Typography ---------- ---------- */
h1 {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'TypeG' !important;
    font-size: 180px !important;
    font-weight: bold !important;
    line-height: .9 !important;
    color: var(--color-font) !important;
}

h2 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 48px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    color: var(--color-font) !important;
}
.alt-h2 {
    font-family: 'TypeG' !important;
    font-size: 72px !important;
    font-weight: bold !important;
}

h3 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    color: var(--color-font) !important;
}

h4 {
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    color: var(--color-font) !important;
}

h5 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: var(--color-font) !important;
}

p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    color: var(--color-font) !important;
}

/* ---------- ---------- Header Divider */
.header-divider {
    width: 90px;
    height: 0;
    margin: 30px 0;
    border-bottom: 2px solid var(--color-accent);
}
@media screen and (max-width: 1080px) {
    .header-divider {
        margin: 15px 0;
    }
}

.header-divider-mini {
    width: 60px;
    height: 0;
    margin: 10px 0 10px 0;
    border-bottom: 2px solid var(--color-accent);
}
@media screen and (max-width: 720px) {
    .header-divider-mini {
        margin: 10px 0 0 0;
    }
}
@media screen and (max-width: 640px) {
    .header-divider-mini {
        width: 30px;
    }
}

/* ---------- ---------- Lists */

/* ---------- Vertical List */
.vertical-list {
    width: 100%;
    height: auto;
    margin: 0 0 15px 0 !important;
}
.vertical-list:last-child {
    margin: 0 !important;
}

.vertical-list ul li {
    display: block;
    padding: 0 !important;
    list-style: none;
}
.vertical-list ul li:last-child {
    margin: 0 !important;
}

.vertical-list span {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 0;
    color: var(--color-font);
}
@media screen and (max-width: 1080px) {
    .vertical-list span {
        font-size: 16px;
    }
}

/* ---------- Horizontal List */
.horizontal-list {
    width: 100%;
    height: auto;
    margin: 0 30px 0 0 !important;
}
.horizontal-list:last-child {
    margin: 0 !important;
}

.horizontal-list ul li {
    display: inline;
    margin: 0 30px 0 0 !important;
    padding: 0 !important;
    list-style: none;
}
.horizontal-list ul li:last-child {
    margin: 0 !important;
}

.horizontal-list span {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 0;
    color: var(--color-font);
}
@media screen and (max-width: 1080px) {
    .horizontal-list span {
        font-size: 16px;
    }
}
@media screen and (max-width: 720px) {
    .horizontal-list span {
        font-size: 12px;
    }
}

/* ---------- ---------- Theme Styles ---------- ---------- */
.light-mode {
    --color-font: rgba(0, 0, 0, 1);
    --color-accent: rgba(0, 0, 0, 1);
    --color-background: rgba(239, 239, 239, 1);
    --color-background-alpha: rgba(239, 239, 239, .6);
    --color-fade-top: linear-gradient(180deg, rgba(239, 239, 239, 1) 0%, rgba(239, 239, 239, 0) 100%);
    --color-fade-bottom: linear-gradient(0deg, rgba(239, 239, 239, 1) 0%, rgba(239, 239, 239, 0) 100%);
    --color-details-fade-top: linear-gradient(180deg, rgba(239, 239, 239, 1) 0%, rgba(239, 239, 239, 0) 100%);
    --color-details-fade-bottom: linear-gradient(0deg, rgba(239, 239, 239, 1) 0%, rgba(239, 239, 239, 0) 100%);
    --image-outline-light: 2px solid var(--color-accent);
    --image-outline-dark: 0 solid var(--color-accent);
}

.dark-mode {
    --color-font: rgba(255, 255, 255, 1);
    --color-accent: rgba(255, 255, 255, 1);
    --color-background: rgba(0, 0, 0, 1);
    --color-background-alpha: rgba(0, 0, 0, .6);
    --color-fade-top: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    --color-fade-bottom: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    --color-details-fade-top: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    --color-details-fade-bottom: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    --image-outline-light: 0 solid var(--color-accent);
    --image-outline-dark: 2px solid var(--color-accent);
}

/* ---------- ---------- Overlays ---------- ---------- */

/* ---------- Scroll Activator */
.scroll {
    opacity: .2;
    scroll-snap-align: center;
    transition: .2s ease;
}
.scroll.active {
    opacity: 1;
}

/* ---------- Frame Fade */
.frame-fade {
    position: fixed;
    width: inherit;
    height: 100%;
    pointer-events: none;

    z-index: 8;
}

.frame-fade-top,
.frame-fade-bottom {
    position: absolute;
    width: inherit;
    height: 15vh;
}
@media screen and (max-width: 1080px) {
    .frame-fade-top,
    .frame-fade-bottom {
        height: 20vh;
    }
}

.frame-fade-top {
    top: 0;
    background: var(--color-fade-top);
}

.frame-fade-bottom {
    bottom: 0;
    background: var(--color-fade-bottom);
}

/* ---------- ---------- Gallery ---------- ---------- */
.gallery {
    width: inherit; /* 100% */
    height: auto;
    margin: 0 0 20vh 0;
    padding: 0 30px;
}
@media screen and (max-width: 640px) {
    .gallery {
        padding: 0 15px;
    }
}

.explore-gallery {
    width: 100%;
    height: auto;
    padding-top: 20vh;
}

.gallery-block {
    display: grid;
    height: inherit;
    margin-bottom: 30px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 30px;
}
.gallery-block:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 640px) {
    .gallery-block {
        margin-bottom: 15px;
        grid-gap: 15px;
    }
}

/* ---------- Explore Details */
.gallery-details {
    position: absolute;
    width: auto;
    height: auto;
    bottom: 0;
    margin: 22.5px;
    border-radius: 15px;
    backdrop-filter: blur(30px);
    background: var(--color-background-alpha);
    transition: .12s ease;
    z-index: 9;
}
@media screen and (max-width: 640px) {
    .gallery-details {
        margin: 5px;
        border-radius: 10px;
    }
}

.gallery-image:hover .gallery-details {
    bottom: 15px;
}
@media screen and (max-width: 640px) {
    .gallery-image:hover .gallery-details {
        bottom: 7.5px;
    }
}

.gallery-details-container {
    width: inherit; /* .gallery-details: auto */
    height: inherit; /* .gallery-details: auto */
    padding: 15px;
}
@media screen and (max-width: 720px) {
    .gallery-details-container {
        padding: 10px;
    }
}
@media screen and (max-width: 640px) {
    .gallery-details-container {
        padding: 7.5px;
    }
}
.gallery-details-container h2 {
    margin-bottom: 5px !important;
}
@media screen and (max-width: 720px) {
    .gallery-details-container h2 {
        font-size: 5vw !important;
    }
    .gallery-details-container h3 {
        font-size: 18px !important;
    }
}
@media screen and (max-width: 640px) {
    .gallery-details-container h3 {
        font-size: 15px !important;
    }
}

/* ---------- Gallery Image */
.gallery-image {
    position: relative;
    display: block;
    width: inherit; /* 100% */
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-image.outline-light {
    border: var(--image-outline-light);
}
.gallery-image.outline-dark {
    border: var(--image-outline-dark);
}
@media screen and (max-width: 640px) {
    .gallery-image {
        border-radius: 15px;
    }
}

.gallery-image img,
.gallery-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease all;
}
.gallery-image:hover img,
.gallery-image:hover video {
    transform: scale(1.1);
}

/* ---------- Gallery Image Lightbox */
#lightbox {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    backdrop-filter: blur(30px);
    background: var(--color-background-alpha);
    z-index: 999;
}
@media screen and (max-width: 640px) {
    #lightbox {
        padding: 15px;
    }
}

#lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox img,
#lightbox video {
    max-width: 80%;
    max-height: 80%;
    border-radius: 30px;
}
@media screen and (max-width: 640px) {
    #lightbox img,
    #lightbox video {
        max-width: 100%;
        max-height: 100%;
        border-radius: 15px;
    }
}

/* ---------- Gallery Grids */

/* One Full */
.one-full {
    height: 60vh;
}
.one-full .gallery-image {
    grid-column: span 12;
    grid-row: span 2;
}
@media screen and (max-width: 1080px) {
    .one-full {
        height: 50vw;
    }
}

/* One Half */
.one-half {
    height: 60vh;
}
.one-half .gallery-image {
    grid-column: span 6;
    grid-row: span 2;
}
@media screen and (max-width: 1080px) {
    .one-half {
        height: 40vw;
    }
}
@media screen and (max-width: 640px) {
    .one-half {
        height: 85vw;
    }
    .one-half .gallery-image {
        grid-column: span 12;
        grid-row: span 1;
    }
}

.one-half-alt {
    height: 60vh;
}
.one-half-alt .gallery-image {
    grid-column: span 6;
    grid-row: span 2;
}
@media screen and (max-width: 1080px) {
    .one-half-alt {
        height: 40vw;
    }
}

/* One Third */
.one-third {
    height: 50vh;
}
.one-third .gallery-image {
    grid-column: span 4;
    grid-row: span 2;
}
@media screen and (max-width: 1080px) {
    .one-third {
        height: 60vw;
    }
    .one-third .gallery-image:nth-child(1) {
        grid-column: span 6;
    }
    .one-third .gallery-image:nth-child(2),
    .one-third .gallery-image:nth-child(3) {
        grid-column: span 6;
        grid-row: span 1;
    }
}
@media screen and (max-width: 640px) {
    .one-third {
        height: 90vw;
        grid-template-rows: repeat(3, 1fr);
    }
    .one-third .gallery-image:nth-child(1),
    .one-third .gallery-image:nth-child(2),
    .one-third .gallery-image:nth-child(3) {
        grid-column: span 12;
        grid-row: auto;
    }
}

/* One Quarter */
.one-quarter {
    height: 20vw;
    grid-auto-flow: dense;
}
.one-quarter .gallery-image {
    grid-column: span 3;
    grid-row: span 2;
}
@media screen and (max-width: 1280px) {
    .one-quarter {
        height: 40vw;
    }
    .one-quarter .gallery-image:nth-child(1),
    .one-quarter .gallery-image:nth-child(2) {
        grid-column: span 4;
    }
    .one-quarter .gallery-image:nth-child(3),
    .one-quarter .gallery-image:nth-child(4) {
        grid-column: span 4;
        grid-row: span 1;
    }
}
@media screen and (max-width: 840px) {
    .one-quarter {
        height: 80vw;
    }
    .one-quarter .gallery-image:nth-child(1),
    .one-quarter .gallery-image:nth-child(2),
    .one-quarter .gallery-image:nth-child(3),
    .one-quarter .gallery-image:nth-child(4) {
        grid-column: span 6;
        grid-row: span 1;
    }
}

/* Two Thirds */
.two-thirds-right,
.two-thirds-left {
    height: 50vh;
}
.two-thirds-right .gallery-image:nth-child(1),
.two-thirds-left .gallery-image:nth-child(2) {
    grid-column: span 4;
    grid-row: span 2;
}
.two-thirds-right .gallery-image:nth-child(2),
.two-thirds-left .gallery-image:nth-child(1) {
    grid-column: span 8;
    grid-row: span 2;
}
@media screen and (max-width: 1080px) {
    .two-thirds-right,
    .two-thirds-left {
        height: 35vw;
    }
    .two-thirds-right .gallery-image:nth-child(1),
    .two-thirds-right .gallery-image:nth-child(2),
    .two-thirds-left .gallery-image:nth-child(2),
    .two-thirds-left .gallery-image:nth-child(1) {
        grid-column: span 6;
        grid-row: span 2;
    }
}
@media screen and (max-width: 640px) {
    .two-thirds-right,
    .two-thirds-left {
        height: 60vw;
    }
    .two-thirds-right .gallery-image:nth-child(1),
    .two-thirds-right .gallery-image:nth-child(2),
    .two-thirds-left .gallery-image:nth-child(2),
    .two-thirds-left .gallery-image:nth-child(1) {
        grid-column: span 12;
        grid-row: span 1;
    }
}

/* Two Quarters */
.two-quarters-right,
.two-quarters-left {
    height: 30vw;
}
.two-quarters-right .gallery-image:nth-child(1),
.two-quarters-right .gallery-image:nth-child(2),
.two-quarters-left .gallery-image:nth-child(2),
.two-quarters-left .gallery-image:nth-child(3) {
    grid-column: span 3;
    grid-row: span 2;
}
.two-quarters-right .gallery-image:nth-child(3),
.two-quarters-left .gallery-image:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
}
@media screen and (max-width: 840px) {
    .two-quarters-right,
    .two-quarters-left {
        height: 85vw;
    }
    .two-quarters-right .gallery-image:nth-child(1),
    .two-quarters-right .gallery-image:nth-child(2),
    .two-quarters-left .gallery-image:nth-child(2),
    .two-quarters-left .gallery-image:nth-child(3) {
        grid-column: span 6;
        grid-row: span 1;
}
    .two-quarters-right .gallery-image:nth-child(3),
    .two-quarters-left .gallery-image:nth-child(1) {
        grid-column: span 12;
        grid-row: span 1;
    }
}

/* Three Quarters */
.three-quarters-right,
.three-quarters-left {
    height: 35vw;
}
.three-quarters-right .gallery-image:nth-child(1),
.three-quarters-left .gallery-image:nth-child(2) {
    grid-column: span 3;
    grid-row: span 2;
}
.three-quarters-right .gallery-image:nth-child(2),
.three-quarters-left .gallery-image:nth-child(1) {
    grid-column: span 9;
    grid-row: span 2;
}
@media screen and (max-width: 1080px) {
    .three-quarters-right,
    .three-quarters-left {
        height: 40vw;
    }
    .three-quarters-right .gallery-image:nth-child(1),
    .three-quarters-right .gallery-image:nth-child(2),
    .three-quarters-left .gallery-image:nth-child(1),
    .three-quarters-left .gallery-image:nth-child(2) {
        grid-column: span 6;
        grid-row: span 2;
    }
}

/* ---------- Masonry Gallery */
.masonry-gallery {
    display: block;
    position: relative;
}

.masonry-item {
    position: absolute;
    width: calc(33.333% - 15px);
    margin: 0 0 15px 0;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}
@media (max-width: 1080px) {
    .masonry-item {
        width: calc(50% - 15px);
    }
}
@media (max-width: 720px) {
    .masonry-item {
        width: 100%;
    }
}

.masonry-item img,
.masonry-item video {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: .2s ease;
}
.masonry-item:hover img {
    transform: scale(1.1);
}

/* ---------- Frames Gallery */
.frames-gallery {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 20vh 0;
    padding: 0 30px;
}
@media screen and (max-width: 640px) {
    .frames-gallery {
        padding: 0 15px;
    }
}
.frames-gallery .text {
    display: none;
}

.frames-filters {
    display: flex;
    position: relative;
    width: 80%;
    margin: 0 auto 90px auto;
    padding: 10;
    top: 30px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 5;
}
.frames-filters select, .frames-filters button {
    min-width: 130px;
    padding: 10px 10px;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-font);
    text-align: center;
    border: none;
    background: none;
    opacity: 1;
    transition: .2s ease;
    cursor: pointer;
}
.frames-filters select:hover {
    opacity: .5;
}
.frames-filters select:disabled {
    opacity: 0.25;
    pointer-events: none;
}

.frames-gallery-images {
    position: relative;
    width: 100%;
    column-count: 3;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-gap: 10px;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
}
@media (max-width: 820px) {
    .frames-gallery-images {
        column-count: 2;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-gap: 5px;
        -webkit-column-gap: 5px;
        -moz-column-gap: 5px;
    }
}

.frames-gallery-item {
    display: inline-block;
    width: auto;
    margin: 0 0 10px 0;
    border-radius: 15px;
    background: none;
    vertical-align: top;
    break-inside: avoid;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    overflow: hidden;
    cursor: pointer;
}
@media (max-width: 820px) {
    .frames-gallery-item {
        margin: 0 0 5px 0;
    }
}
.frames-gallery-item img,
.frames-gallery-item video {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
    transform: scale(1);
    transition: .2s ease;
}
.frames-gallery-item:hover img {
    transform: scale(1.1) !important;
}

/* Frames Lighrtbox */
.frames-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.frames-lightbox img {
    display: block;
    max-width: 100%;
    max-height: 72vh;
    margin: 0 auto;
    border-radius: 6px;
}

.frames-lightbox-content {
    position: relative;
    width: min(92vw, 1200px);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-font);
    text-align: center;
}

.frames-meta {
    display: grid;
    margin: 10px 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 1;
}
@media (max-width: 820px) {
    .frames-meta {
        font-size: 0.6rem;
    }
}
.frames-meta.frames-bottom {
    grid-template-columns: repeat(4, 1fr);
}
.frames-meta > div {
    padding: 10px;
    border: none;
    background: none;
}

.frames-nav {
    position: absolute;
    top: 50%;
    padding: 0 15px;
    font-size: 2rem;
    color: #fff;
    border: none;
    background: none;
    transform: translateY(50%);
    cursor: pointer;
    user-select: none;
    z-index: 999;
}
@media (max-width: 820px) {
    .frames-nav {
        width: 60px;
        top: unset;
        bottom: 20%;
    }
}

.frames-prev,
.frames-next {
    cursor: pointer;
    transform: scale(1);
    transition: .2s ease;
}
.frames-prev:hover,
.frames-next:hover {
    transform: scale(1.1);
}

.frames-nav.frames-prev {
    left: 15px;
}

.frames-nav.frames-next {
    right: 15px;
}

.frames-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: #fff;
    border: none;
    background: none;
    cursor: pointer;
    transform: scale(1);
    transition: .2s ease;
}
.frames-close:hover {
    transform: scale(1.1);
}

/*
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////

HEADER

/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/

/* ---------- ---------- Logo */
#logo {
    position: absolute;
    width: auto;
    height: auto;
    padding: 60px 0 0 60px;
    filter: invert(0);

    z-index: 10;
}
.light-mode #logo {
    filter: invert(0);
}
.dark-mode #logo {
    filter: invert(1);
}
@media screen and (max-width: 640px) {
    #logo {
        padding: 30px 0 0 30px;
    }
}

.logo-wrapper {
    width: inherit;
    height: inherit;
}

.logo-wrapper img {
    width: 30px;
}

/* ---------- ---------- Theme Button */
#theme-btn {
    position: absolute;
    width: 30px;
    height: 30px;
    margin: 60px 60px 0 0 !important;
    right: 0;
    border: 2px solid var(--color-accent);
    border-radius: 15px;
    pointer-events: auto;
    cursor: pointer;
    transition: .1s ease;

    z-index: 10;
}
#theme-btn:hover {
    border: 15px solid var(--color-accent);
}
@media screen and (max-width: 640px) {
    #theme-btn {
        margin: 30px 30px 0 0 !important;
    }
}

/* ---------- ---------- Copyright */
#copyright {
    position: absolute;
    width: auto;
    height: auto;
    padding: 0 60px 60px 0;
    bottom: 0;
    right: 0;

    z-index: 10;
}
@media screen and (max-width: 1080px) {
    #copyright {
        width: 100%;
        padding: 0 0 45px 0;
        text-align: center
    }
}
@media screen and (max-width: 640px) {
    #copyright {
        padding: 0 0 30px 0;
    }
}
#copyright span {
    width: inherit;
    height: inherit;
    font-size: 16px;
    line-height: 1;
    color: var(--color-font) !important;
}
#copyright:before {
    content: "© 2025 G. Stuart";
    font-size: 16px;
    line-height: 1;
    color: var(--color-font) !important;
}

/* ---------- ---------- Scroll Indicator */
#scroll-indicator {
    position: absolute;
    width: auto;
    height: auto;
    bottom: 0;
    right: 75px;

    z-index: 9;
}
@media screen and (max-width: 640px) {
    #scroll-indicator {
        width: auto;
        right: 45px;
    }
}

.scroll-indicator-wrapper {
    width: 30px;
    height: 60px;
    margin-left: -15px;
    margin-right: -25px;
    bottom: 120px;
    border: 2px solid var(--color-accent);
    border-radius: 15px;
}
@media screen and (max-width: 1080px) {
    .scroll-indicator-wrapper {
        bottom: 60px !important;
    }
}
@media screen and (max-width: 640px) {
    .scroll-indicator-wrapper {
        bottom: 30px !important;
    }
}
.scroll-indicator-wrapper:before {
    content: '';
    width: 10px;
    height: 10px;
    margin-left: -5px;
    top: 10px;
    border-radius: 5px;
    background: var(--color-accent);
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll;
}
@keyframes scroll {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}
.scroll-indicator-wrapper, .scroll-indicator-wrapper:before {
    position: absolute;
    left: 50%;
}

/* ---------- ---------- Gradient Mesh */
#gradient-canvas {
    width: 100%;
    height: 100%;
    --gradient-color-1: #f84572;
    --gradient-color-2: #23e0f9;
    --gradient-color-3: #ff5100;
    --gradient-color-4: #ffb300;

    z-index: 0;
}
#gradient-canvas.disable {
    opacity: 0;
}

.grain-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
    mix-blend-mode: color-dodge;
    object-fit: cover;
}

/* ---------- ---------- Navigation ---------- ---------- */
nav {
    position: absolute;
    width: auto;
    height: auto;
    padding: 60px;
    bottom: 0;
    overflow: hidden;

    z-index: 9;
}
@media screen and (max-width: 1080px) {
    nav {
        width: 100%;
        height: 0;
        padding: 0;
        top: 0;
        border-radius: 0 0 100% 100%;
        backdrop-filter: blur(0);
        transition: .5s ease;
    }
    nav.active {
        height: 100%;
        border-radius: 0;
        backdrop-filter: blur(90px);
    }
}

#nav-menu {
    display: flex;
    width: inherit;
    height: inherit;
    padding: 0;
}
@media screen and (max-width: 1080px) {
    #nav-menu {
        height: 100%;
        padding: 60px;
        background: var(--color-background-alpha)!important;
        pointer-events: auto;
        overflow-y: scroll;
    }
}
#nav-menu ul {
    display: inherit;
    width: auto;
    height: auto;
    margin: 0 !important;
}
@media screen and (max-width: 1080px) {
    #nav-menu ul {
        display: block;
        width: 100%;
        margin: auto !important;
    }
}

#nav-menu ul li {
    display: inline-block;
    width: inherit;
    height: inherit;
    margin-right: 60px !important;
    text-align: center;
}
#nav-menu ul li:last-child {
    margin-right: 0 !important;
}
@media screen and (max-width: 1080px) {
    #nav-menu ul li {
        display: block;
        margin: 0 !important;
        opacity: 0;
        transition: .5s ease;
    }
    #nav-menu ul li:last-child {
        margin: 0 !important;
    }
    nav.active #nav-menu ul li {
        margin: 0 0 4vh 0 !important;
        opacity: 1;
    }
}

/* ---------- ---------- Nav Buttons */
.nav-btn, .nav-btn-active {
    display: flex;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-font) !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none !important;
    transition: .12s ease;
}
.nav-btn-active {
    font-weight: 600;
    pointer-events: none;
}
@media screen and (max-width: 1080px) {
    .nav-btn span {
        font-family: 'TypeG' !important;
        font-weight: normal !important;
        font-size: 6vh;
    }
    .nav-btn-active {
        font-family: 'TypeG' !important;
        font-weight: bold !important;
        font-size: 6vh;
    }
}

.nav-btn-container {
    display: block;
}

.nav-btn-line {
    width: 0;
    height: 2px;
    margin: 2px auto auto auto;
    background: var(--color-accent) !important;
    transition: .1s ease;
}
.nav-btn:hover .nav-btn-line {
    width: 100%;
}
@media screen and (max-width: 1080px) {
    .nav-btn-line {
        margin: 0 auto auto auto;
    }
}

/* ---------- ---------- Hamburger */
#hamburger {
    position: absolute;
    display: none;
    width: 30px;
    height: 30px;
    bottom: 120px;
    left: 50%;
    transform: translate(-50%, 0);
    pointer-events: auto;
    cursor: pointer;

    z-index: 10;
}
@media screen and (max-width: 1080px) {
    #hamburger {
        display: block;
    }
}
@media screen and (max-width: 640px) {
    #hamburger {
        bottom: 90px;
    }
}

.hamburger-icon {
    position: absolute;
    width: 30px;
    height: 2px;
    top: 50%;
    left: 50%;
    background: var(--color-accent);
    transform: translate(-50%, 0);
    transition: .1s ease;
}

#hamburger:hover .hamburger-icon,
#hamburger:hover .hamburger-icon:before,
#hamburger:hover .hamburger-icon:after {
    width: 45px;
    height: 2px;
    transition: .1s ease;
}

.hamburger-icon:before,
.hamburger-icon:after {
    position: absolute;
    width: 30px;
    height: 2px;
    content: '';
    background: var(--color-accent);
    transition: .1s ease;
}
.hamburger-icon:before {
    top: -9px;
}
.hamburger-icon:after {
    top: 9px;
}

#hamburger.active .hamburger-icon {
    background: none;
}
#hamburger.active .hamburger-icon:before {
    top: 0;
    transform: rotate(45deg);
}
#hamburger.active .hamburger-icon:after {
    top: 0;
    transform: rotate(-45deg);
}

/*
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////

HOME

/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/

/* ---------- ---------- Hero */
.home-hero {
    width: inherit;
    height: 100%;
    /*padding: 180px 60px 150px 60px;*/
    padding: 30px;

    z-index: 10;
}
@media screen and (max-width: 640px) {
    .home-hero {
        /*padding: 180px 60px 180px 60px;*/
        padding: 15px;
    }
}

.home-hero-container {
    position: relative;
    width: inherit;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}
.home-hero-container.border {
    border: 2px solid var(--color-accent);
}

.hero-header {
    position: absolute;
    display: flex;
    max-width: 1020px;
    min-width: auto;
    height: 100%;
    padding: 120px 60px;
    flex-direction: column;
    justify-content: flex-end;
}
@media screen and (max-width: 1080px) {
    .hero-header {
        padding: 180px 60px;
    }
}
@media screen and (max-width: 640px) {
    .hero-header {
        padding: 150px 30px;
    }
}

.hero-header h1 {
    font-size: 180px !important;
    line-height: .9 !important;
    color: var(--color-font);
    /*mix-blend-mode: overlay;*/
}
.hero-header h1.blend-normal {
    mix-blend-mode: normal;
}
@media screen and (max-width: 1080px) {
    .hero-header h1 {
        font-size: 15vw !important;
    }
}
@media screen and (max-width: 640px) {
    .hero-header h1 {
        font-size: 21vw !important;
    }
}
/*@media screen and (max-width: 640px) and (max-height: 840px) {
    .hero-header h1 {
        font-size: 9vh !important;
    }
}*/

/*
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////

ABOUT

/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/
.about {
    width: inherit; /* 100% */
    height: inherit; /* 100% */
}

/* ---------- ---------- About Image */
.about-image {
    position: absolute;
    width: 60%;
    height: inherit; /* 100% */
    right: 0;
    pointer-events: none;
}
@media screen and (max-width: 1080px) {
    .about-image {
        width: 50%;
    }
}
@media screen and (max-width: 840px) {
    .about-image {
        position: relative;
        width: 100%;
    }
}

.about-image-wrapper {
    position: relative;
    width: auto;
    height: inherit;
    margin: auto;
}
.about-image-wrapper img {
    position: absolute;
    display: block;
    width: inherit;
    height: 80%;
    top: 50%;
    left: 50%;
    object-fit: cover;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-size: contain;
}
@media screen and (max-width: 1080px) {
    .about-image-wrapper img {
        height: auto;
        width: 110%;
    }
}
@media screen and (max-width: 840px) {
    .about-image-wrapper img {
        height: auto;
        width: 70%;
        min-width: 360px;
    }
}

.image-portrait {
    background-image: url('assets/images/gs_portrait_dark.png');
}

.light-mode .about-image-light {
    visibility: show;
}
.light-mode .about-image-dark {
    visibility: hidden;
}
.dark-mode .about-image-dark {
    visibility: show;
}
.dark-mode .about-image-light {
    visibility: hidden;
}

/* ---------- ---------- About Details */
.about-details {
    width: 50%;
    max-width: 960px;
    min-width: 480px;
    height: inherit;
    padding: 150px 60px 120px 60px;
    overflow: hidden;

    z-index: 1;
}
@media screen and (max-width: 840px) {
    .about-details {
        width: 100%;
        height: auto;
        max-width: auto;
        min-width: auto;
        padding: 0 30px 150px 30px;
    }
}

.about-details-container {
    width: 100%;
    height: 100%;
    padding: 60px 15px 60px 0;
    overflow-y: scroll;
    mask-image: linear-gradient(to bottom, transparent, 5%, white, 15%, white, 85%, white, 95%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, 5%, white, 15%, white, 85%, white, 95%, transparent);
}
@media screen and (max-width: 840px) {
    .about-details-container {
        mask-image: none;
        overflow: auto;
    }
}

/* Copy */
.about-copy {
    width: inherit;
    height: auto;
    margin: 0 0 60px 0;
}

/* Brands */
.about-brands {
    width: inherit;
    height: auto;
    padding: 0;
}

.about-brands-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
}
@media screen and (max-width: 1080px) {
    .about-brands-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and (max-width: 640px) {
    .about-brands-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 360px) {
    .about-brands-container {
        grid-template-columns: 1fr;
    }
}

.about-brands-item {
    margin: auto;
    filter: invert(0);
}
.dark-mode .about-brands-item {
    filter: invert(1);
}
.about-brands-item img {
    width: 100%;
    max-width: 150px;
    padding: 15px;
}
@media screen and (max-width: 640px) {
    .about-brands-item img {
        max-width: 120px;
    }
}

/*
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////

PROJECTS

/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/
.projects {
    width: inherit;
    height: inherit;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* ---------- ---------- Project Item */
.project-item {
    position: relative;
    display: flex;
    width: inherit;
    height: 65vh;
}
.project-item:first-child {
    margin-top: 20vh;
}
.project-item:last-child {
    margin-bottom: 20vh;
}
@media screen and (max-width: 1080px) {
    .project-item {
        height: 60vh;
        flex-direction: column;
    }
}

/* ---------- Project Details */
.project-details {
    position: inherit;
    display: inherit;
    width: 50%;
    height: 100%;
    padding: 0 60px 0 110px;
    pointer-events: none;
}
@media screen and (max-width: 1080px) {
    .project-details {
        position: absolute;
        width: auto;
        height: auto;
        padding: 30px 135px 30px 0;
        bottom: 0;
        opacity: 0;
        transform: translateX(-120px);
        -webkit-transform: translateX(-120px);
        -ms-transform: translateX(-120px);
        transition: .2 ease;
        order: 2;

        z-index: 1;
    }
    .project-item.active .project-details {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
    }
}
@media screen and (max-width: 640px) {
    .project-details {
        padding: 30px 75px 30px 0;
    }
}

.project-details-container {
    width: 100%;
    height: auto;
    margin: auto;
    opacity: 0;
    transition: .5s ease;
}
.project-item.active .project-details-container {
    opacity: 1;
}
@media screen and (max-width: 1080px) {
    .project-details-container {
        max-width: 720px;
        padding: 30px 30px 30px 60px;
        border-radius: 0 30px 30px 0;
        background: var(--color-background-alpha);
        backdrop-filter: blur(60px);
    }
}
@media screen and (max-width: 640px) {
    .project-details-container {
        padding: 30px;
    }
}

.project-details h1 {
    font-family: 'TypeG' !important;
    font-weight: bold !important;
    margin-bottom: 15px !important;
}
@media screen and (max-width: 1080px) {
    .project-details h1 {
        font-size: 108px !important;
    }
    .project-details h2 {
        margin-bottom: 15px !important;
        font-size: 32px !important;
    }
}
@media screen and (max-width: 720px) {
    .project-details h1 {
        font-size: 15vw !important;
    }
    .project-details h2 {
        font-size: 5vw !important;
    }
}

/* Tags */
.project-tags {
    width: auto;
    height: auto;
}

.project-tags ul li {
    margin: 0 30px 0 0 !important;
    padding: 0 !important;
    list-style: none;
}
.project-tags ul li:last-child {
    margin: 0 !important;
}

.project-tags span {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 0;
    color: var(--color-font);
}

/* ---------- Project Thumbnail */
.project-thumbnail {
    position: inherit; /* relative */
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.project-item.active .project-thumbnail {
    cursor: pointer;
}
.project-item:first-child .project-thumbnail {
    border-radius: 30px 0 0 0;
}
.project-item:last-child .project-thumbnail {
    border-radius: 0 0 0 30px;
}
@media screen and (max-width: 1080px) {
    .project-thumbnail {
        width: 100%;
        order: 1;
    }
    .project-item:first-child .project-thumbnail,
    .project-item:last-child .project-thumbnail {
        border-radius: 0;
    }
}

.project-thumbnail img,
.project-thumbnail video {
    width: 100%;
    height: inherit; /* 100% */
    object-fit: cover;
    transition: .2s ease all;
}
.project-item.active .project-thumbnail:hover img,
.project-item.active .project-thumbnail:hover video {
    transform: scale(1.1);
}

.project-selector {
    position: absolute;
    width: 0;
    height: 100%;
    padding: 30px 0 30px 0;
    right: 0;
    transition: .1s ease;
    -webkit-transition: .1s ease;
    -ms-transition: .1s ease;

    z-index: 1;
}
.project-item.active .project-thumbnail:hover .project-selector {
    width: 120px;
}
@media screen and (max-width: 640px) {
    .project-item.active .project-thumbnail:hover .project-selector {
        width: 60px;
    }
}

.project-selector-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 30px 0 0 30px;
    text-align: center;
    backdrop-filter: blur(60px);
    background: var(--color-background-alpha);
}

.project-selector span {
    margin: auto;
    font-size: 48px;
    font-weight: 400;
    line-height: 0;
    color: var(--color-font);
}

/*
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////

CASE STUDY

/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/
.case-study {
    width: inherit; /* 100% */
    height: inherit; /* 100% */
    overflow-y: scroll;
    /*scroll-snap-type: y mandatory;*/
    scroll-behavior: smooth;
}
@media screen and (max-width: 1080px) {
    .case-study {
        scroll-snap-type: none;
    }
}

/* ---------- ---------- Hero ---------- ---------- */
.case-study-hero {
    width: inherit; /* 100% */
    height: auto;
    padding: 30vh 60px 150px 60px;
}
@media screen and (max-width: 1080px) {
    .case-study-hero {
        padding: 180px 60px;
    }
}
@media screen and (max-width: 640px) {
    .case-study-hero {
        padding: 240px 30px;
    }
}

.case-study-hero-container {
    width: 100%;
    height: inherit; /* auto */
}

/* ---------- ---------- Header */
.case-study-header {
    display: block;
    width: inherit; /* 100% */
    height: inherit; /* auto */
    margin-bottom: 60px;
}

.case-study-header h1 {
    margin-bottom: 15px !important;
}
@media screen and (max-width: 640px) {
    .case-study-header h1 {
        font-size: 30vw !important;
    }
}

/* ---------- ---------- Details */
.case-study-details {
    display: flex;
    width: inherit; /* 100% */
    height: inherit; /* auto */
}
@media screen and (max-width: 840px) {
    .case-study-details {
        display: block;
    }
}

/* ---------- Tags */
.case-study-tags {
    display: inherit; /* flex */
    width: 50%;
    height: inherit; /* auto */
}
@media screen and (max-width: 840px) {
    .case-study-tags {
        display: flex;
        width: inherit; /* 100% */
        margin-bottom: 30px;
    }
}

.case-study-tags-block {
    width: inherit; /* 50% */
    height: inherit; /* auto */
    padding: 0 30px 0 0;
}

/*  ---------- Description */
.case-study-description {
    display: block;
    width: 50%;
    height: inherit; /* auto */
}
@media screen and (max-width: 840px) {
    .case-study-description {
        width: inherit; /* 100% */
    }
}

/* ---------- ---------- Concepts ---------- ---------- */
.concepts-hero {
    width: inherit; /* 100% */
    height: auto;
    padding: 0 60px 60px 60px;
}
@media screen and (max-width: 1080px) {
    .concepts-hero {
        padding: 0 60px 60px 60px;
    }
}
@media screen and (max-width: 640px) {
    .concepts-hero {
        padding: 0 30px 30px 30px;
    }
}

.concepts-hero-container {
    width: 100%;
    height: inherit; /* auto */
}

/* ---------- ---------- Header */
.conceptual-header {
    display: block;
    width: inherit; /* 100% */
    height: inherit; /* auto */
}

/* ---------- ---------- Gallery ---------- ---------- */
.case-study-gallery {
    width: inherit; /* 100% */
    height: auto;
    padding: 0 30px 150px 30px;
}
@media screen and (max-width: 1080px) {
    .case-study-gallery {
        padding: 0 30px 210px 30px;
    }
}
@media screen and (max-width: 640px) {
    .case-study-gallery {
        padding: 0 15px 210px 15px;
    }
}

.case-study-gallery-block {
    display: grid;
    margin-bottom: 30px;
}
.case-study-gallery-block:last-child {
    margin-bottom: 0;
}

.case-study-gallery-image,
.case-study-gallery-image a {
    position: relative;
    display: block;
    width: inherit; /* 100% */
    height: 60vh;
    border-radius: 30px;
    overflow: hidden;
}

.case-study-gallery-image img {
    position: absolute;
    display: block;
    width: 100%;
    height: inherit;
    top: 50%;
    left: 50%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-size: contain;
    transition: .1s ease;
    -webkit-transition: .1s ease;
    -ms-transition: .1s ease;
}

/*
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////

CONNECT

/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/
.connect {
    display: flex;
    width: inherit;
    height: 100%;
    padding: 30px;

    z-index: 10;
}

.connect-container {
    position: relative;;
    width: auto;
    height: auto;
    margin: auto;
}
@media screen and (max-width: 540px) {
    .connect-container {
        width: 200px;
    }
}

.connect-btn {
    text-align: center;
}

.connect-btn h1 {
    transform: translateY(0);
    transition: .2s ease;
}
.connect-btn:hover h1  {
    transform: translateY(-30px);
}

.connect-btn-line {
    width: 0;
    height: 2px;
    margin: 2px auto auto auto;
    background: var(--color-accent) !important;
    transition: .2s ease;
}
.connect-btn:hover .connect-btn-line {
    width: 100%;
}

/*
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////

COMING SOON

/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
*/

/* ---------- ---------- Portfolio Preview ---------- ---------- */
.portfolio-preview {
    width: 100%;
    height: auto;
}




.blur-img {
    backdrop-filter: blur(60px);
}