@charset "UTF-8";

:root {
    --content-width: 90rem;

    --lightgray: #e3e3e3;
    --padding: 60px;
    --gutters: 1rem;
    --yellow: #FAD802;
    /* --dark: #1a1c1f; */
    --dark: #2C2C2C;
    --dark-alpha: #1a1c1fee;
    --background: var(--dark)
}

.margin-top-lg {
    margin-top: 100px
}

body {
   
    width: 100%;
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    /* text-rendering: optimizeLegibility; */
    color: #fff;
    /* letter-spacing: -.04em; */
    background: var(--background) center/cover no-repeat;
}

/* .noscroll,
body.no-scroll {
    overflow-y: none;
    position: absolute;
    overflow: hidden
} */

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

p a {
    opacity: .7
}

p a:hover {
    opacity: 1;
    text-decoration: underline
}

b,
strong {
    font-variant: normal;
    font-weight: lighter;
    font-family: "DIN Medium"
}

b i,
em b,
em strong,
strong em {
    font-family: "DIN Medium";
    font-weight: lighter;
    font-style: normal
}

hr {
    display: none
}

p:first-child {
    margin-top: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    display: block;
    clear: both;
    line-height: 1.2;
    font-weight: 100;
    color: #fff;
}

h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
    margin: 0;
    padding: 0
}

h2 {
    font-size: vaR(--text-xl);
    margin-bottom: var(--space-sm)
}

p {
    line-height: 1.5em;
    margin-bottom: 30px
}

p:last-child {
    margin-bottom: 0
}

p.lede {
    font-size: 1.2em
}

p.indent {
    text-indent: 2em
}

p.traditional {
    margin-top: 0;
    margin-bottom: 0
}

p .left {
    margin: 1rem 1rem 1rem 0;
    padding: 0
}

p .right {
    margin: 1rem 0 1rem 1rem;
    padding: 0
}

.centered img {
    margin: auto
}

blockquote {
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.2em
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none
}

small {
    font-size: .9em
}
#page-content {
    opacity: 0;
}
.directionlink {
    font-size: .8em;
    margin-top: -1rem;
    position: relative;
    display: block;
    opacity: .5
}

.contact-info .icon {
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-block
}

.contact-info a {
    color: #000
}

.contact-info .icon img {
    padding: 5px
}

#loader-screen {
    position: fixed;
    z-index: 999999;
    display: none;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    overflow: hidden;
}

.fullscreen {
    width: 100vw;
    height: 100vh;
    object-fit: cover
}

.fullscreen svg {
    object-fit: cover
}

#loader-screen.outro.reveal {
    top: 0
}

.load-panel-1 {
    position: absolute;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #141414;
    transition: opacity 1s cubic-bezier(.55, .085, .68, .53);
    animation-delay: 1s;
}

.load-panel-1.reveal {
    opacity: 0;
    pointer-events: none;
}

/* Loading screen content */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loader-logo {
    width: 88%;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInScale 1s ease-out 0.5s forwards;
}

.loader-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.loading-spinner {
    display: none;
    margin-top: 30px;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #FFF3D4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    animation: fadeInSpin 1s ease-out 1.2s forwards, spin 1s linear 1.2s infinite;
}

.color-D7B054 {
    color: #D7B054!important
}

/* Shine effect animation */
@keyframes shine {
    0% {
        background-position: 300% center;
    }
    100% {
        background-position: -300% center;
    }
}

.shine-text a {
    background: linear-gradient(
        90deg,
        /* #D7B054 0%,
        #D7B054 30%,
        #fff 50%,
        #D7B054 70%,
        #D7B054 100% */
        #FFE97F 0%,
        #FFE97F 10%,
        #FFE97F 20%,
        #FFE97F 30%,
        #FFE97F 40%,
        #B76700 50%,
        /* #EB8D13 50%, */
        #FFE97F 60%,
        #FFE97F 70%,
        #FFE97F 80%,
        #FFE97F 90%,
        #FFE97F 100%
    );
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 20s linear infinite;
    animation-play-state: running !important;
    animation-delay: 0s !important;
    color: #FFE97F;
}

@keyframes shine-overlay {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Loading animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSpin {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#loader-screen.hidden {
    height: 0;
    pointer-events: none
}

.project-panel {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: center/cover no-repeat;
    color: #fff;
    cursor: pointer
}

.project-panel .content {
    position: relative;
    top: 100%;
    transform: translateY(-100%)
}

.page-title,
.project-panel h3,
h1.page-title {
    color: #fff;
    font-size: 6vw;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin: 0;
    padding: 0;
    opacity: .8;
    position: relative
}

.shine-text {
    opacity: 1!important;
}

/* Force shine animation to start immediately on page load */
.shine-text a {
    animation-fill-mode: both !important;
    will-change: background-position;
}

.page-title:hover,
.project-panel:hover .page-title {
    opacity: 1
}

.client,
.client-name,
.date {
    font-size: 3vw;
    opacity: .8;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    letter-spacing: .04em;
    margin-top: 15px
}


.article-text caption,
.article-text h1,
.article-text h2,
.article-text h3,
.article-text h4,
.article-text p {
    max-width: 80ch;
    margin-right: auto;
    margin-left: auto
}

.article-text p {
    opacity: .8
}

.article-text figure {
    margin-bottom: var(--space-md);
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.article-text figure img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    grid-gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 3rem 0
}

.gallery figure a {
    border: 0
}

.gallery figure {
    margin: 0;
    padding: 0
}

@media screen and (min-width:40rem) {
    .gallery {
        margin-left: -3rem;
        margin-right: -3rem
    }
}

.inner {
    padding: var(--padding)
}

.page-ontop {
    z-index: 2147483647
}

.home-tpl #mast {
    z-index: 999998
}

.page>* {
    margin: 0 auto
}

.note {
    background-color: var(--background)
}

header .date {
    opacity: .5
}

#mast {
    padding: 20px var(--padding)
}

#identity {
    width: 70px;
    margin: 0;
    padding: 0;
    /* margin-left: auto */
}

#identity a {
    display: block
}

#identity svg {
    max-height: 100px
}

#nav-panel {
    display: block;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh + 60px);
    overflow: hidden;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 9999;
    transform: none;
    transition: opacity .5s ease-in-out, visibility .5s ease-in-out;
    pointer-events: none;
}



#nav-panel.active::before {
    opacity: 1;
    transform: none;
}

/* Ensure smooth fade-out when menu closes */
#nav-panel:not(.active)::before {
    opacity: 0;
    transition-delay: 0s;
}

/* Right panel for menu items */
#nav-panel .menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--dark);
    background: #0F0F0F;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    transition-delay: 0.1s;
}

#nav-panel.active .menu-panel {
    transform: translateX(0);
}

#nav-panel:not(.active) .menu-panel {
    transform: translateX(100%);
    transition-delay: 0s;
}

/* Left panel for logo */
#nav-panel .logo-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    transition-delay: 0.75s;
}

/* Blurred background overlay */
#nav-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(26, 28, 31, 0.8); */
    backdrop-filter: blur(150px);
    -webkit-backdrop-filter: blur(150px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.75s ease-in-out;
    transition-delay: 0.2s;
    transform: none;
}

#nav-panel.active .logo-panel {
    opacity: 1;
}

/* Ensure smooth fade-out when menu closes */
#nav-panel:not(.active) .logo-panel {
    opacity: 0;
    transition-delay: 0s;
    /* transition: none!important; */
}

/* Logo styling */
#nav-panel .nav-logo {
    max-width: 100%;
    width: 100%;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-in-out;
    transition-delay: 0.7s;
    margin-top: -60px;
}

#nav-panel.active .nav-logo {
    opacity: 1;
    transform: scale(1);
}

/* Ensure smooth fade-out when menu closes */
#nav-panel:not(.active) .nav-logo {
    opacity: 0;
    transform: scale(0.8);
    transition-delay: 0s;
}

#nav-panel.active {
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

#nav-panel.hidden {
    opacity: 0;
    visibility: hidden;
    transform: none;
    pointer-events: none;
}

.menu,
.menu ul {
    margin: 0;
    padding: 0
}

#nav-panel.active .inner {
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#nav-panel .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 40px;
}

#nav-panel .menu li {
    position: relative;
    display: block;
    text-align: left;
    font-size: 2.5em;
    text-transform: uppercase;
    line-height: 1.2em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease-in-out;
}

#nav-panel.active .menu li {
    opacity: 1;
    transform: translateX(0);
}
#nav-panel.active .menu li:nth-child(4) {
    /* opacity: 0; */
    color: #303030!important;
    cursor: not-allowed!important;
}

#nav-panel .menu li:nth-child(1) {
    transition-delay: 0.1s;
}

#nav-panel .menu li:nth-child(2) {
    transition-delay: 0.2s;
}

#nav-panel .menu li a {
    color: #fff;
    text-align: left;
    line-height: 1.2em;
    letter-spacing: 0.2em;
    font-weight: 400;
    transition: .3s ease-in-out;
    display: block;
    padding: 10px 0;
    width: fit-content;
}

#nav-panel .menu li a:hover {
    opacity: 1;
    /* color: var(--yellow) */
    color: #fff3d4b2
}

#nav-panel .is-active a,
#nav-panel .menu a.active,
#nav-panel.menu a:hover {
    opacity: 1;
    color: var(--yellow);
    z-index: 1
}

#nav-panel.active .menu li:nth-child(4) a {
    color: #303030!important;
    /* cursor: not-allowed!important; */
    pointer-events: none!important;
    &:after {
        content: url('../images/lock.png');
        width: 1px;
        position: absolute;
        top: calc(50% - 14px);
    }
}

/* Copyright notice in nav panel */
#nav-panel .copyright {
    color: #fff;
    font-size: 0.8em;
    opacity: 0.7;
    text-align: right;
    margin-top: auto;
    padding-top: 0px;
    padding-bottom: 60px;
}



#menu-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 60px;
    background: #fff;
    left: 0;
    transform: rotate(0)
}

#menu-toggle span:nth-child(1) {
    top: 30px
}

#menu-toggle span:nth-child(2) {
    top: 30px;
    float: right;
    position: relative;
    transform: rotate(90deg)
}

#menu-toggle.active span {
    opacity: 1;
    background-color: #fff
}

#menu-toggle.active {
    transform: rotate(45deg);
    z-index: 999999
}

#mast {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    color: #fff
}

main {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    /* min-height: calc(100vh) */
}

hr {
    display: block;
    height: 1px;
    width: 10%;
    padding: 0;
    border: none;
    background-color: #fff
}

.about-main-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.about-tpl {
    color: rgba(0, 0, 0, .8);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #bedee8
}

.about-text p {
    text-align: center
}

.about-text .text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left
}

.about-tpl section h2:first-child {
    margin-top: 0
}

.shaded {
    opacity: .8
}

.menu a[aria-current] {
    border-bottom: 2px solid #000
}

p a {
    color: var(--yellow);
    opacity: 1
}

.about-tpl section {
    margin-bottom: 60px
}

.about-tpl section ul {
    display: grid;
    list-style: none;
    justify-items: center;
    justify-content: space-evenly;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    margin: 0;
    padding: 0
}

.page-title {
    text-align: center;
    font-size: 1em;
    letter-spacing: .04em
}

.project-tpl .client {
    text-transform: uppercase;
    opacity: .5;
    letter-spacing: .03em
}

.project-tpl .overview {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto
}

.hero {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    color: #fff;
    display: flex
}

.hero img {
    max-height: 90vh
}

.gridded {
    display: grid;
    list-style: none;
    grid-template-columns: 1;
    gap: var(--space-2xs);
    margin-bottom: var(--space-2xs);
    padding: 0
}

.gridded figure {
    margin: 0 0 var(--space-sm)
}

.article-feed header img {
    width: 100vw;
    height: 50vw;
    min-height: 50vh;
    max-height: 50vh
}

@media screen and (max-width:48rem) {
    .article-text.container {
        margin: 0;
        padding: 0;
    }

    .feed-article {
        padding-top: var(--space-2xl);
        padding-left: 0;
        padding-right: 0;
    }
}

.contact-text {
    margin-bottom: 15px;
    text-align: left !important;
}

.contact-text p {
    margin-bottom: 2px !important;
}

.contact-text .email-text {
    color: #D7B054;
    border-bottom: 1px solid;
    width: fit-content;
}

@media screen and (min-width:48rem) {
    #mast {
        flex-direction: row;
        justify-content: space-between
    }

    #nav-panel .menu li {
        position: relative;
        display: block;
        text-align: left;
        font-size: 4.5vw;
        text-transform: uppercase
    }

    .gridded {
        display: grid;
        list-style: none;
        justify-items: center;
        justify-content: space-evenly;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        padding: 0
    }

    .article hero {
        width: 100vw;
        height: 50vw;
        min-height: 50vh;
        max-height: 50vh;
        background-position: cover;
        margin-bottom: 100px
    }

    .page-title,
    .project-panel h3,
    h1.page-title {
        color: #fff;
        font-size: 4vw;
        line-height: 1em;
        text-transform: uppercase;
        letter-spacing: .15em;
        margin: 0;
        padding: 0;
        position: relative
    }

    .client,
    .client-name,
    .date {
        font-size: 1.1em;
        opacity: .8;
        text-transform: uppercase;
        margin-top: 15px;
        text-align: center;
        letter-spacing: .04em
    }


    .article-text {}
}

.intro {
    text-align: center;
    margin-top: 120px
}

.project-tpl figure,
.project-tpl figure img {
    width: 100%
}

span.caption {
    position: relative;
    display: block;
    padding: 1rem;
    margin-bottom: 30px
}

figcaption,
span.caption {
    padding: 1rem;
    opacity: .3;
    text-transform: uppercase;
    letter-spacing: .03em;
    text-align: center
}

.project-title {
    position: relative;
    margin-top: 0;
    cursor: pointer;
    transition: all .9s ease;
    letter-spacing: .03em;
    color: #fff;
    text-align: center;
    width: 100%
}

.project-tpl .playbutton {
    position: relative;
    display: block;
    cursor: pointer;
    transition: all .9s ease;
    color: #fff;
    width: 100%;
    height: 80px;
    background-size: .8em;
    background: url(../images/play-btn.svg) center center no-repeat;
    margin-bottom: 40px
}

.playbutton.hidden {
    opacity: 0
}

.overlay-panel {
    background: var(--dark-alpha);
    color: #fff;
    position: fixed;
    top: -250px;
    left: 0;
    width: 100%;
    height: 250px;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
    opacity: 0;
    z-index: 99999;
    transition: all .3s ease
}

.overlay-panel.enabled {
    top: 0;
    min-height: 100vh;
    overflow: visible;
    opacity: 1
}

.overlay-close {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 88889;
    margin: 0;
    cursor: pointer;
    display: block;
    transform: scale(.6) rotate(0);
    transition: .3s ease-in-out;
    opacity: .7
}

.overlay-close:hover {
    opacity: 1
}

.overlay-close span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    left: 0;
    top: 45px;
    transform: rotate(0);
    transition: .4s ease-in-out
}

.overlay-close span:nth-child(1) {
    transform: rotate(45deg)
}

.overlay-close span:nth-child(2) {
    transform: rotate(-45deg)
}

.overlay-panel .inner {
    padding: 40px
}

iframe {
    border: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: block
}

.video {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%
}

.video iframe,
.video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video.wide {
    position: relative;
    padding-bottom: 41.98%;
    height: 0;
    max-width: 100%
}

.video figcaption {
    padding-top: 58.25%;
    pointer-events: none
}

.video.wide figcaption {
    padding-top: 43%
}

.video iframe {
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.canplay {
    cursor: pointer
}

.pagination {
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    width: 100%
}

.pagination-item {
    display: flex;
    margin: 0;
    padding: 60px;
    font-size: 3em;
    opacity: .8;
    flex-grow: 1;
    text-align: center
}

.pagination-item:hover {
    opacity: 1
}

.about .ico {
    width: 25px;
    text-align: center;
    position: relative;
    display: inline-block;
    margin: 0 5px 5px
}

.about .ico img {
    max-width: 100%
}

.toggle {
    cursor: pointer
}

.toggle-content {
    height: 0;
    overflow: hidden
}

.active .toggle-content {
    height: auto
}

a.button {
    color: #fff;
    margin: 0 0 40px;
    padding: .5em 1em;
    position: relative;
    display: inline-block;
    background-color: var(--lightgray);
    font-weight: 700;
    border-radius: 2px
}

a.button:hover {
    background-color: var(--yellow)
}

.phone {
    font-family: 'DIN BOLD'
}

.small {
    font-size: .8em
}

.permaphone {
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    float: left;
    z-index: 100;
    margin: 0;
    padding: 60px;
    font: 1.4em 'DIN BOLD';
    letter-spacing: .02em
}

.pagelayer {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateZ(1);
    transform-style: preserve-3d;
    opacity: 0;
    visibility: hidden;
    backface-visibility: hidden;
    padding-bottom: 100px;
    background-color: var(--dark-alpha);
    overflow-y: auto;
    max-height: 100%;
    backdrop-filter: blur(10px);
    min-height: 100vh
}

#pagelayer.active,
.pagelayer.active {
    visibility: visible;
    overflow: visible;
    z-index: 9999999;
    height: auto;
    opacity: 1;
    overflow-y: scroll
}

.pagemoveToLeft {
    animation: moveToLeft .4s ease both
}

.pagemoveFromLeft {
    animation: moveFromLeft .4s ease both
}

.pagemoveToRight {
    animation: moveToRight .4s ease both
}

.pagemoveFromRight {
    transform: translateX(100%);
    animation: moveFromRight .4s ease both
}

.pagemoveInFromBottom {
    animation: moveFromBottom .4s ease both
}

.pageimmediateupdate {
    opacity: 1;
    animation: moveToLeft 0s ease both
}

.pageinner {
    min-height: 100vh;
    display: block;
    margin: 0;
    padding: 0;
    background-color: #dddfdf
}

.pagemoveFromLeft {
    animation: moveFromLeft .8s ease both
}

.pagemoveToRight {
    animation: moveToRight .8s ease both
}

.pagemoveFromRight {
    transform: translateX(100%);
    animation: moveFromRight .8s ease both
}

@media (any-hover:none) {
    a {
        will-change: auto
    }
}

.is-inactive {
    opacity: .1;
    cursor: default
}

.error-page {
    color: #fff;
    background-color: tomato
}

@keyframes pullup {
    100% {
        margin-top: 0
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    66% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes enterFromRight {
    from {
        transform: translateX(100%)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes moveToLeft {
    from {
        transform: translateX(100%)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes moveFromLeft {
    from {
        transform: translateX(100%)
    }

    to {
        transform: translateX(0)
    }
}

@-webkit-keyframes moveToRight {
    to {
        transform: translateX(100%)
    }
}

@keyframes moveToRight {
    to {
        transform: translateX(100%)
    }
}

@keyframes moveFromRight {
    from {
        transform: translateX(100%)
    }

    to {
        transform: translateX(-100%)
    }
}

.feed-article header.inner {
    padding-top: 11rem;
    padding-bottom: 0
}

.feed-article header img {
    width: auto;
    margin-bottom: 40px;
    border: 1rem solid rgba(0, 0, 0, .29)
}

.feed-nav-fixed {
    position: fixed;
    top: 150px;
    left: 45px;
    z-index: 9999;
}

.pagelayer .feed-nav-fixed {
    position: fixed;
    top: 60px;
    left: 45px;
    z-index: 9999;
}

.back-to-feed {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 60px;
}

.back-to-feed:hover {
    color: var(--yellow)
}

.back-to-feed svg {
    width: 26 px;
    height: 26px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.back-to-feed:hover svg {
    transform: translateX(-2px);
}


/* Feed navigation button in modal/page layer context - align with close button */
.feed-viewer .feed-nav-fixed {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999999;
}

.overlay-panel iframe {
    max-height: 90vh
}

.header {
    pointer-events: none
}

.header * {
    pointer-events: auto
}

.header a,
.header button {
    pointer-events: auto
}

/* Contact Form Styles */
.contact-form-wrapper {
    margin: 0 auto;
    max-width: 600px;
}

.contact-form-container {
    color: var(--dark);
}

.contact-form-header {
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-family: 'DIN Medium', DIN, sans-serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-header p {
    color: rgba(26, 28, 31, 0.7);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'DIN Medium', DIN, sans-serif;
    font-size: vaR(--text-sm);
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.form-input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    font-family: DIN, sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background-color: rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    background-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 2px var(--yellow);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: DIN, sans-serif;
    line-height: 1.5;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    background-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 2px var(--yellow);
}

.form-input-error {
    background-color: rgba(255, 99, 71, 0.1);
}

.form-input-error:focus {
    background-color: rgba(255, 99, 71, 0.15);
    box-shadow: 0 0 0 2px tomato;
}

.form-error {
    color: tomato;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
    font-weight: bold;
}

.form-actions {
    margin-top: 1rem;
    text-align: right;
}

.form-submit {
    background-color: var(--dark);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-family: 'DIN Medium', DIN, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.form-submit:hover {
    background-color: var(--yellow);
    color: var(--dark);
    box-shadow: vaR(--shadow-md);
}


.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-form-response {
    display: none;
}

.contact-response-success {
    background-color: #00000081;
    padding: var(--space-sm);
    color: #fff;
    border-radius: 3px;
}

.contact-form-response h3 {
    color: #fff;
}

.contact-response-success p:last-child {
    margin-bottom: 0;
}

.contact-response-success strong {
    font-family: 'DIN Medium', DIN, sans-serif;
    color: var(--dark);
}

@media screen and (max-width: 768px) {
    .form-submit {
        padding: 0.875rem 1.5rem;
        width: 100%;
    }
}

/* High contrast for accessibility */
@media (prefers-contrast: high) {
    .form-input {
        border-color: var(--dark);
        border-width: 3px;
    }

    .form-input:focus {
        border-color: var(--yellow);
        box-shadow: 0 0 0 4px rgba(250, 216, 2, 0.4);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    .form-input,
    .form-submit {
        transition: none;
    }

    .form-submit:hover {
        transform: none;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

/*  =====  */

.assistive-text {
    position: absolute;
    height: 1px;
    width: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
}

.form-privacy-notice a {
    color: #fff !important;
}

.assets-1-wrapper {
    background-image: url(../images/assets/asset-1.webp);
}

.assets-2-wrapper {
    background-image: url(../images/assets/asset-2.webp);
}

.assets-3-wrapper {
    background-image: url(../images/assets/as-3.png);
}

.assets-4-wrapper {
    background-image: url(../images/assets/asset-4.webp);
}

.assets-5-wrapper {
    background-image: url(../images/assets/asset-5.webp);
}

.assets-6-wrapper {
    background-image: url(../images/assets/asset-6.webp);
}
.assets-7-wrapper {
    background-image: url(../images/assets/asset-7.webp);
}

/* Menu Toggle Icon Styles - Override existing styles */
#menu-toggle {
    cursor: pointer;
    position: fixed !important;
    right: 54px !important;
    top: 20px !important;
    width: 60px !important;
    height: 60px !important;
    z-index: 999999 !important;
    text-align: center !important;
    transform: none !important;
    transition: none !important;
    margin: 0 !important;
}

/* Hide the old span elements */
#menu-toggle span {
    display: none !important;
}

#menu-toggle img {
    /* width: 32px;
    height: 32px; */
    width: 46px;
    transition: all 0.4s ease-in-out;
    display: block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#menu-toggle .menu-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    pointer-events: auto;
}

#menu-toggle .close-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotate(-90deg);
    pointer-events: none;
}

/* When menu is active, animate to close icon */
#menu-toggle.active .menu-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotate(90deg);
    pointer-events: none;
}

#menu-toggle.active .close-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    pointer-events: auto;
}

/* Override the existing active transform */
#menu-toggle.active {
    transform: none !important;
    background: hsla(0, 0%, 100%, .05);
    border-radius: 50%;
}

.close-icon {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
}

.logo {
    height: 60px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

#sitefooter {
    /* opacity: .5; */
    margin-top: 40px;
    text-align: right;
    font-size: .8em;
    clear: both;
    border-top: 0.5px solid;
    padding: 60px 0px 30px 0px;
    margin: 60px 60px 0px 60px;

}

.footer-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;

}

.footer-logo {
    width: 100px;
}

.footer-left-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-social-wrapper {
    display: flex;
    justify-content: space-between;
    width: 150px;
    margin-top: 30px;
}

.footer-social-wrapper img {
    width: 30px !important;
}

.copyright-wrapper {
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 505px) {
    #nav-panel .menu li a {
        letter-spacing: 0.5em!important;
        font-size: 24px!important;
    }
    #nav-panel.active .menu li:nth-child(4) a {
        pointer-events: none!important;
        &:after {
            content: url('../images/lock-mobile.png');
            top: calc(50% - 7.5px);
        }
    }
    #mast {
        padding: 15px;
    }

    #menu-toggle {
        top: 15px !important;
        right: 15px !important;
    }

    .inner {
        padding-left: 25px!important;
        padding-right: 25px!important;
    }
    .project-panel .inner {
        padding-left: 2px!important;
        padding-right: 2px!important;
    }
    #nav-panel .menu-panel {
        width: 100% !important;
    }

    .footer-wrapper {
        display: block;
    }

    .contact-text {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
}

/* About Page Styles */
.about-content {
    /* min-height: 69vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 0 20px;
    background: var(--dark);
}

.about-content .container {
    /* max-width: 60vw; */
    max-width: 620px;
    text-align: center;
    margin: 0 auto;
}

.main-heading {
    /* font-size: 1.75vw; */
    font-size: 35.152px;
    font-weight: 400;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.main-heading .highlight {

    background: #FFF3D4;
    color: var(--dark);
    padding: 0 5px;
    border-radius: 4px;
    font-weight: 600;
}

.content-text {
    margin-bottom: 4rem;
}

.content-text p {
    /* font-size: 1vw; */
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    /* max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    margin-top: 4rem;
}

.contact-section p,
.contact-section a {
    /* font-size: 1vw; */
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-us-txt {
    margin-bottom: 0.5rem !important;
}

.contact-email {
    display: inline-block;
    color: #D7B054 !important;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.mb-0 {
    margin-bottom: 0 !important;
}
@media screen and (max-width: 1400px) {
    .about-content {
        padding: 60px 20px 0 20px;
    }
}
/* Responsive Design for About Page */
/* @media screen and (max-width: 505px) { */
@media screen and (max-width: 768px) {
    .about-content {
        padding: 120px 15px 40px 15px;
    }

    .main-heading {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .main-heading .highlight {
        padding: 6px 12px;
        font-size: 0.9em;
    }

    .content-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .contact-section {
        margin-top: 3rem;
    }

    .contact-email {
        font-size: 1.1rem;
    }

    .contact-section p,
    .contact-section a {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 505px) {
    .main-heading {
        font-size: 1.6rem;
    }

    .main-heading .highlight {
        /* display: block; */
        margin-top: 0.5rem;
        padding: 0px 6px;
    }

    .content-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .about-content {
        padding: 120px 5px 25px 5px;
    }

    .about-content .container {
        max-width: 100vw;
        text-align: center;
        margin: 0 auto;
    }

    #sitefooter {

        padding: 60px 0px 40px 0px;
        margin: 60px 15px 0px 15px;

    }

    .about-sec-header {
        background: #2C2C2C91;
    }

    .copyright-wrapper {
        margin-top: 30px;
        text-align: left;
    }

    .contact-text {
        align-items: flex-start;
    }
}

/* =====  */

::-webkit-scrollbar-thumb {
    background: #FFF3D4;
}

/* Image Modal Animations */
.basicLightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* transform: translateY(30px); */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.basicLightbox--visible {
    opacity: 1;
    transform: translateY(0);
}

.basicLightbox__placeholder {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.basicLightbox__placeholder img {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); */
}

/* ===== PROJECT 1 - SAWED OFF SHOTGUN STYLES ===== */

.project-1-main-wrapper {
    background: #1a1a1a;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.project-1-main-wrapper main {
    padding: 0px 60px;
}

.bg-1f1f1f {
    background: #1f1f1f !important;
}

/* Hero Section */
.shotgun-hero {
    padding: 40px 0 40px 0;
    position: relative;
}

.shotgun-title {
    flex: 1;
}
.image-modal-img {
    cursor: pointer;
}
.shotgun-title h1 {
    /* font-size: 3.2vw; */
    font-size: 75px;
    font-weight: 600;
    color: #D7B054;
    text-transform: uppercase;
    /* letter-spacing: 3px; */
    margin-bottom: 30px;
    /* line-height: 1.1; */
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.shotgun-description {
    /* font-size: 1.2vw; */
    font-size: 20.8px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin: 0;
}

.main-shotgun-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.shotgun-main {
    max-width: 100%;
    min-width: 100%;
    height: auto;
}


/* Gallery Section */
.shotgun-gallery {
    padding: 0;
    position: relative;
}

.gallery-content {
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
}

.large-view {
    width: 100%;
    padding: 0px;
}

.gallery-main {
    width: 100%;
    height: auto;
}

.thumbnail-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.thumbnail-row {
    display: flex;
    flex-direction: row;
    margin: -10px;

}

.thumbnail {
    width: calc((100% / 3) - 20px);
    object-fit: cover;
    border-radius: 0px;
    transition: all 0.3s ease;
    padding: 0px;
    margin: 10px;
    background-color: #131313;
    cursor: pointer;
}

.inner-page {
    max-width: 965px;
    margin-left: auto;
    margin-right: auto;
}

.section-content {
    margin: -10px;
    padding: 0;
    position: relative;

}

.section-assets {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-top: 10px;
    /* gap: 20px; */
}

.asset-img {
    width: 100%;
    margin: 10px;
    cursor: pointer;
}

/* Section 1 - PJ-6 positioning */
.asset-6-main {
    width: calc(100% - 20px);
    padding-top: 10px;
}
.asset-12-main, .asset-13-main {
    width: calc(100% - 20px);
    padding-top: 0;
}
/* Section 2 - PJ-7 and PJ-8 positioning */
.asset-7-main,
.asset-8-main {
    width: calc(50% - 20px);
}


/* Section 3 - PJ-9, PJ-10, PJ-11 positioning */
.asset-9-main,
.asset-10-main,
.asset-11-main {
    width: calc((100% / 3) - 20px);
}
.technical-text {
    padding-top: 40px;
    padding-bottom: 20px;
    margin-bottom: 0;
    font-size: 1.4vw;
}
.mb-1 {
    margin-bottom: 1rem;
}
.pt-0 {
    padding-top: 0!important;
}
.ext-gap {
    padding-top: 20px;
}
#image-modal-img {
    max-height: 100%;
    max-width: 100%;
}
@media screen and (min-width: 2000px) {
    .thumbnail-grid {
        gap: 20px;
        /* padding-bottom: 10px; */
        padding-top: 20px;
    }
    .ext-gap {
        padding-top: 40px;
    }
    .thumbnail-row {
        margin: -20px;
    }
    .thumbnail {
        width: calc((100% / 3) - 40px);
        margin: 20px;
    }
    .asset-img {
        margin: 20px;
    }
    .section-assets {
        padding-top: 20px;
    }
    .section-content {
        margin: -20px;
    }
    .asset-6-main {
        width: calc(100% - 40px);
        padding-top: 20px;
    }
    .asset-7-main, .asset-8-main {
        width: calc(50% - 40px);
    }
    .asset-9-main, .asset-10-main, .asset-11-main {
        width: calc((100% / 3) - 40px);
    }
    .asset-12-main, .asset-13-main {
        width: calc(100% - 40px);
        padding-top: 0;
    }
}
/* Responsive Design */
@media screen and (max-width: 1200px) {

    .shotgun-title h1 {
        font-size: 3vw;
    }
    .shotgun-description {
        font-size: 1.6vw;
    }
    .technical-text {
        font-size: 1.8vw;
    }
}

@media screen and (max-width: 768px) {

    .gallery-content,
    .shells-content {
        padding: 0;
    }

    .shotgun-hero {
        padding: 40px 0 40px 0;
    }

    .shotgun-title h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .shotgun-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    .technical-text {
        font-size: 1.2rem;
    }

}

@media screen and (max-width: 480px) {
    .project-1-main-wrapper main {
        padding: 0px 15px;
    }
    .ext-gap {
        padding-top: 10px;
    }
    .gallery-content {
        gap: 10px;
    }
    .shotgun-title h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .section-content {
        margin: -5px;
    }

    .asset-img {
        margin: 5px;
    }
    .section-assets {
        padding-top: 5px;
    }
    .thumbnail-row {
        margin: -5px;
    }
    .thumbnail {
        width: calc((100% / 3) - 10px);
        margin: 5px;
    }
    .asset-6-main {
        width: calc(100% - 10px);
        padding-top: 5px;
    }

    .asset-7-main,
    .asset-8-main {
        width: calc(50% - 10px);
    }


    .asset-9-main,
    .asset-10-main,
    .asset-11-main {
        width: calc((100% / 3) - 10px);
    }
    
    .asset-12-main, .asset-13-main {
        width: calc(100% - 10px);
        padding-top: 0;
    }
    /* .asset-13-main {
        margin-top: 0!important;
    }
    .asset-12-main {
        margin-bottom: 0!important;
    } */

}
#last-updated-text {
    font-size: 12px;
    color: #6a6a6a;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 35px;
    display: none;
}
.text-white {
    color: white!important
}
.cursor-normal {
    cursor: unset!important;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal-visible {
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90%;
}

.video-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 38px;
    cursor: pointer;
    z-index: 10001;
    padding: 5px 10px;
    transition: opacity 0.3s ease;
}

.video-modal-close:hover {
    opacity: 0.7;
}

#modal-video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    border-radius: 8px;
}

.video-clickable {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-clickable:hover {
    opacity: 0.9;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-height: 85%;
    }
    
    .video-modal-close {
        top: -45px;
        font-size: 30px;
    }
    
    #modal-video {
        max-height: 70vh;
    }
}