/* =========================================================
   XCY EVENTS
   CORPORATE GALLERY
========================================================= */

:root {

    --paper: #f3f1ec;
    --paper-dark: #e9e6df;

    --ink: #171717;
    --soft-ink: #55534f;
    --muted: #85827b;

    --line: rgba(23,23,23,.15);

    --accent: #6f2e32;

    --white: #ffffff;

    --sans: "Inter", Arial, Helvetica, sans-serif;

    --ease: cubic-bezier(.22,1,.36,1);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    background: var(--paper);

    color: var(--ink);

    font-family: var(--sans);

    overflow-x: hidden;
}


body.menu-open,
body.modal-open {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input {
    font-family: inherit;
}


button {
    cursor: pointer;
}


img {
    display: block;
    width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 88px;

    padding: 0 4vw;

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    align-items: center;

    background:
        rgba(93,93,93,.708);

    backdrop-filter: blur(16px);

    z-index: 1000;
}


.brand {
    display: flex;
    align-items: center;
}


.brand img {

    width: auto;
    height: 100px;
    max-width: 140px;

    object-fit: contain;
}


.header-center {

    text-align: center;

    color: white;

    font-size: .62rem;

    font-weight: 500;

    letter-spacing: .18em;
}


.menu-button {

    justify-self: end;

    display: flex;

    align-items: center;

    gap: 15px;

    color: white;

    background: none;

    border: 0;

    font-size: .62rem;

    font-weight: 500;

    letter-spacing: .14em;
}


.menu-icon {

    width: 30px;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.menu-icon i {

    display: block;

    width: 100%;

    height: 1px;

    background: white;
}


/* =========================================================
   MENU PANEL
========================================================= */

.menu-panel {

    position: fixed;

    inset: 0;

    z-index: 3000;

    background: var(--ink);

    color: var(--paper);

    transform: translateY(-100%);

    transition:
        transform .7s var(--ease);
}


.menu-panel.open {
    transform: translateY(0);
}


.menu-panel-inner {

    height: 100%;

    padding:
        35px 5vw;

    display: flex;

    flex-direction: column;
}


.menu-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: .52rem;

    letter-spacing: .18em;
}


.menu-top button {

    color: var(--paper);

    background: none;

    border: 0;

    font-size: .52rem;

    letter-spacing: .15em;
}


.menu-panel nav {

    margin: auto 0;

    display: flex;

    flex-direction: column;

    gap: 16px;
}


.menu-panel nav a {

    display: flex;

    align-items: baseline;

    gap: 20px;

    width: max-content;

    font-size:
        clamp(2rem,4vw,4rem);

    font-weight: 500;

    line-height: 1;

    transition:
        transform .35s var(--ease),
        color .3s ease;
}


.menu-panel nav a:hover {

    transform: translateX(10px);

    color: #b9aaa2;
}


.menu-panel nav small {

    font-size: .5rem;

    color: #99948c;

    letter-spacing: .08em;
}


.menu-bottom {

    display: flex;

    justify-content: space-between;

    color: #99948c;

    font-size: .48rem;

    letter-spacing: .17em;
}


/* =========================================================
   HERO
========================================================= */

.gallery-hero {

    min-height: 82vh;

    padding:
        170px 7vw 90px;

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-bottom:
        1px solid var(--line);
}


.gallery-hero-top {

    position: absolute;

    top: 120px;

    left: 7vw;

    right: 7vw;

    display: flex;

    justify-content: space-between;

    color: var(--muted);

    font-size: .5rem;

    letter-spacing: .17em;
}


.gallery-hero-content {

    max-width: 1000px;
}


.hero-label {

    margin-bottom: 35px;

    font-size: .58rem;

    font-weight: 500;

    letter-spacing: .17em;
}


.gallery-hero h1 {

    font-size:
        clamp(4rem,7vw,7rem);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -.055em;
}


.gallery-hero h1 span {

    color: var(--accent);
}


.gallery-hero-content p {

    max-width: 520px;

    margin-top: 45px;

    color: var(--soft-ink);

    font-size: .72rem;

    line-height: 1.9;
}


.gallery-hero-bottom {

    position: absolute;

    bottom: 35px;

    left: 7vw;

    right: 7vw;

    display: flex;

    justify-content: space-between;

    color: var(--muted);

    font-size: .48rem;

    letter-spacing: .17em;
}


/* =========================================================
   INTRO
========================================================= */

.gallery-intro {

    padding:
        150px 7vw 130px;

    display: grid;

    grid-template-columns:
        10% 65% 25%;

    border-bottom:
        1px solid var(--line);
}


.section-label {

    font-size: .5rem;

    font-weight: 500;

    letter-spacing: .17em;

    color: var(--muted);
}


.gallery-intro-main h2 {

    font-size:
        clamp(3.5rem,6vw,6.5rem);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -.05em;
}


.gallery-intro-main h2 span {

    color: var(--accent);
}


.gallery-intro-bottom {

    align-self: end;
}


.gallery-intro-bottom p {

    max-width: 280px;

    color: var(--soft-ink);

    font-size: .66rem;

    line-height: 1.9;
}


/* =========================================================
   CATEGORY NAVIGATION
========================================================= */

.gallery-navigation {

    position: sticky;

    top: 88px;

    z-index: 100;

    background:
        rgba(243,241,236,.95);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid var(--line);
}


.gallery-navigation-top {

    padding:
        22px 7vw 14px;

    display: flex;

    justify-content: space-between;

    color: var(--muted);

    font-size: .48rem;

    letter-spacing: .17em;
}


.category-navigation {

    padding:
        6px 7vw 23px;

    display: flex;

    flex-wrap: wrap;

    gap: 28px;
}


.category-nav-button {

    position: relative;

    padding: 0;

    color: var(--muted);

    background: none;

    border: 0;

    font-size: .52rem;

    font-weight: 500;

    letter-spacing: .12em;

    text-transform: uppercase;

    transition:
        color .3s ease;
}


.category-nav-button:hover,
.category-nav-button.active {

    color: var(--ink);
}


.category-nav-button.active::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -9px;

    height: 1px;

    background: var(--ink);
}


/* =========================================================
   CATEGORY GALLERY
========================================================= */

.category-galleries {

    padding-bottom: 60px;
}


.gallery-category {

    padding:
        100px 7vw 80px;

    border-bottom:
        1px solid var(--line);
}


.gallery-category-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    padding-bottom: 35px;
}


.gallery-category-title {

    display: flex;

    align-items: baseline;

    gap: 18px;
}


.gallery-category-title small {

    color: var(--muted);

    font-size: .5rem;

    letter-spacing: .15em;
}


.gallery-category-title h2 {

    font-size:
        clamp(2rem,3.5vw,3.5rem);

    font-weight: 500;

    letter-spacing: -.045em;
}


.gallery-category-count {

    color: var(--muted);

    font-size: .48rem;

    letter-spacing: .14em;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;
}


.gallery-card {

    position: relative;

    cursor: pointer;
}


.gallery-card-image {

    position: relative;

    overflow: hidden;

    background: var(--paper-dark);

    aspect-ratio: .82;
}


.gallery-card:nth-child(2n) .gallery-card-image {

    aspect-ratio: .92;
}


.gallery-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 1s var(--ease);
}


.gallery-card:hover img {

    transform: scale(1.045);
}


.gallery-card-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(20,20,20,.35);

    opacity: 0;

    transition:
        opacity .4s ease;
}


.gallery-card:hover
.gallery-card-overlay {

    opacity: 1;
}


.gallery-card-overlay span {

    padding-bottom: 8px;

    color: white;

    border-bottom:
        1px solid rgba(255,255,255,.8);

    font-size: .5rem;

    letter-spacing: .16em;
}


.gallery-card-info {

    padding-top: 15px;

    display: flex;

    justify-content: space-between;

    gap: 20px;
}


.gallery-card-info-left {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.gallery-card-category {

    color: var(--muted);

    font-size: .46rem;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.gallery-card-title {

    font-size: .72rem;

    font-weight: 500;

    line-height: 1.4;
}


.gallery-card-number {

    color: var(--muted);

    font-size: .48rem;

    letter-spacing: .1em;
}


/* =========================================================
   VIEW MORE
========================================================= */

.category-actions {

    padding-top: 45px;

    display: flex;

    justify-content: center;
}


.view-more {

    min-width: 170px;

    padding:
        16px 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    background: transparent;

    border:
        1px solid var(--ink);

    color: var(--ink);

    font-size: .5rem;

    font-weight: 500;

    letter-spacing: .14em;

    transition:
        background .3s ease,
        color .3s ease;
}


.view-more:hover {

    background: var(--ink);

    color: var(--paper);
}


.view-more.hidden {
    display: none;
}


/* =========================================================
   YOUTUBE
========================================================= */

.youtube-section {

    padding:
        140px 7vw 150px;

    background: var(--paper-dark);

    border-bottom:
        1px solid var(--line);
}


.youtube-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    padding-bottom: 70px;
}


.youtube-header h2 {

    margin-top: 25px;

    font-size:
        clamp(3.5rem,6vw,6rem);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -.055em;
}


.youtube-header h2 span {

    color: var(--accent);
}


.youtube-channel {

    display: flex;

    align-items: center;

    gap: 35px;

    padding-bottom: 9px;

    border-bottom:
        1px solid var(--ink);

    font-size: .5rem;

    font-weight: 500;

    letter-spacing: .15em;
}


.youtube-channel span {

    font-size: 1rem;
}


.youtube-grid {

    display: grid;

    grid-template-columns:
        1.4fr 1fr;

    gap: 25px;
}


.youtube-feature {

    grid-row:
        span 2;
}


.youtube-card {

    min-width: 0;
}


.youtube-frame {

    position: relative;

    overflow: hidden;

    background: #111;

    aspect-ratio: 16 / 9;
}


.youtube-frame iframe {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    border: 0;
}


.youtube-info {

    padding-top: 16px;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;
}


.youtube-info span {

    color: var(--muted);

    font-size: .46rem;

    letter-spacing: .14em;
}


.youtube-info h3 {

    margin-top: 5px;

    font-size: .8rem;

    font-weight: 500;
}


/* =========================================================
   CLIENT DELIVERY
========================================================= */

.delivery-section {

    padding:
        150px 7vw;

    background: var(--paper);

    border-bottom:
        1px solid var(--line);
}


.delivery-header {

    display: grid;

    grid-template-columns:
        65% 35%;

    align-items: end;

    padding-bottom: 75px;
}


.delivery-header h2 {

    margin-top: 25px;

    font-size:
        clamp(3.5rem,6vw,6rem);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -.055em;
}


.delivery-header h2 span {

    color: var(--accent);
}


.delivery-header > p {

    max-width: 300px;

    color: var(--soft-ink);

    font-size: .66rem;

    line-height: 1.9;
}


.delivery-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;
}


.delivery-card {

    border:
        1px solid var(--line);

    background: var(--paper-dark);

    overflow: hidden;
}


.delivery-cover {

    position: relative;

    aspect-ratio: 1.35;

    overflow: hidden;
}


.delivery-cover img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 1s var(--ease);
}


.delivery-card:hover
.delivery-cover img {

    transform: scale(1.035);
}


.delivery-status {

    position: absolute;

    top: 16px;

    left: 16px;

    padding: 7px 10px;

    background: rgba(23,23,23,.8);

    color: white;

    font-size: .42rem;

    letter-spacing: .13em;
}


.delivery-info {

    padding: 25px;

    border-top:
        1px solid var(--line);
}


.delivery-info-top {

    display: flex;

    justify-content: space-between;

    gap: 15px;
}


.delivery-info small {

    color: var(--muted);

    font-size: .46rem;

    letter-spacing: .14em;
}


.delivery-info h3 {

    margin-top: 8px;

    font-size: 1rem;

    font-weight: 500;
}


.delivery-access {

    width: 100%;

    margin-top: 25px;

    padding: 15px;

    display: flex;

    justify-content: space-between;

    background: var(--ink);

    color: white;

    border: 1px solid var(--ink);

    font-size: .48rem;

    font-weight: 500;

    letter-spacing: .14em;

    transition:
        background .3s ease,
        color .3s ease;
}


.delivery-access:hover {

    background: transparent;

    color: var(--ink);
}


.delivery-empty {

    grid-column: 1 / -1;

    padding: 70px 30px;

    border:
        1px dashed var(--line);

    text-align: center;
}


.delivery-empty span {

    color: var(--muted);

    font-size: .48rem;

    letter-spacing: .16em;
}


.delivery-empty p {

    margin-top: 12px;

    color: var(--soft-ink);

    font-size: .65rem;
}


/* =========================================================
   CTA
========================================================= */

.gallery-cta {

    min-height: 720px;

    padding:
        130px 7vw;

    background: var(--paper-dark);

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-bottom:
        1px solid var(--line);
}


.gallery-cta-label {

    font-size: .5rem;

    font-weight: 500;

    letter-spacing: .18em;
}


.gallery-cta h2 {

    margin: 65px 0;

    max-width: 1100px;

    font-size:
        clamp(4rem,7vw,7rem);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -.06em;
}


.gallery-cta h2 span {

    color: var(--accent);
}


.cta-button {

    width: max-content;

    display: flex;

    align-items: center;

    gap: 45px;

    padding-bottom: 9px;

    border-bottom:
        1px solid var(--ink);

    font-size: .5rem;

    font-weight: 500;

    letter-spacing: .15em;
}


.cta-button b {

    font-size: 1rem;

    font-weight: 400;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding:
        90px 7vw 30px;

    background: var(--ink);

    color: var(--paper);
}


.footer-brand {

    padding-bottom: 70px;

    border-bottom:
        1px solid rgba(255,255,255,.17);
}


.footer-brand img {

    width: auto;

    max-width: 150px;

    height: 65px;

    object-fit: contain;
}


.footer-brand p {

    margin-top: 25px;

    color: #aaa59d;

    font-size: .5rem;

    letter-spacing: .17em;
}


.footer-columns {

    padding:
        65px 0;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 50px;

    border-bottom:
        1px solid rgba(255,255,255,.17);
}


.footer-columns div {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-columns span {

    margin-bottom: 22px;

    color: #918c84;

    font-size: .48rem;

    letter-spacing: .18em;
}


.footer-columns a,
.footer-columns p {

    color: #d7d2c9;

    font-size: .57rem;

    line-height: 2;
}


.footer-columns a:hover {

    color: white;
}


.footer-bottom {

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    color: #77736d;

    font-size: .48rem;

    letter-spacing: .14em;
}


/* =========================================================
   ACCESS MODAL
========================================================= */

.access-modal {

    position: fixed;

    inset: 0;

    z-index: 4500;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background:
        rgba(15,15,15,.78);

    backdrop-filter: blur(12px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .4s ease,
        visibility .4s ease;
}


.access-modal.open {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.access-modal-inner {

    position: relative;

    width:
        min(620px,100%);

    padding:
        70px;

    background: var(--paper);

    color: var(--ink);
}


.access-close {

    position: absolute;

    top: 25px;

    right: 30px;

    border: 0;

    background: none;

    color: var(--ink);

    font-size: .5rem;

    letter-spacing: .14em;
}


.access-number {

    color: var(--muted);

    font-size: .48rem;

    letter-spacing: .16em;
}


.access-content {

    margin-top: 75px;
}


.access-content > span {

    color: var(--muted);

    font-size: .48rem;

    letter-spacing: .15em;
}


.access-content h2 {

    margin-top: 12px;

    font-size:
        clamp(2rem,4vw,3.5rem);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -.045em;
}


.access-content p {

    max-width: 430px;

    margin-top: 20px;

    color: var(--soft-ink);

    font-size: .65rem;

    line-height: 1.8;
}


#accessForm {

    margin-top: 45px;
}


#accessForm label {

    display: block;

    margin-bottom: 10px;

    color: var(--muted);

    font-size: .46rem;

    letter-spacing: .14em;
}


.password-field {

    display: flex;

    border-bottom:
        1px solid var(--ink);
}


.password-field input {

    width: 100%;

    padding: 14px 0;

    border: 0;

    outline: 0;

    background: transparent;

    color: var(--ink);

    font-size: .9rem;
}


.password-field button {

    border: 0;

    background: none;

    color: var(--muted);

    font-size: .45rem;

    letter-spacing: .12em;
}


.access-submit {

    width: 100%;

    margin-top: 30px;

    padding: 17px 20px;

    display: flex;

    justify-content: space-between;

    background: var(--ink);

    color: white;

    border: 1px solid var(--ink);

    font-size: .5rem;

    letter-spacing: .14em;

    transition:
        background .3s ease,
        color .3s ease;
}


.access-submit:hover {

    background: transparent;

    color: var(--ink);
}


.access-message {

    min-height: 20px;

    margin-top: 15px;

    color: var(--accent);

    font-size: .55rem;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {

    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 70px 8vw;

    background:
        rgba(15,14,13,.97);

    color: var(--paper);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .45s ease,
        visibility .45s ease;
}


.lightbox.open {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.lightbox-content {

    width:
        min(1200px,90vw);

    max-height: 90vh;
}


.lightbox-image-wrap {

    height: 78vh;

    display: flex;

    align-items: center;

    justify-content: center;
}


.lightbox-image-wrap img {

    width: auto;

    max-width: 100%;

    height: auto;

    max-height: 78vh;

    object-fit: contain;
}


.lightbox-info {

    margin-top: 18px;

    padding-top: 15px;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    border-top:
        1px solid rgba(255,255,255,.2);
}


.lightbox-info span {

    color: #aaa59d;

    font-size: .48rem;

    letter-spacing: .14em;
}


.lightbox-info h3 {

    margin-top: 5px;

    color: white;

    font-size: 1rem;

    font-weight: 500;
}


.lightbox-close {

    position: absolute;

    top: 30px;

    right: 35px;

    border: 0;

    background: none;

    color: white;

    font-size: .5rem;

    letter-spacing: .16em;
}


.lightbox-prev,
.lightbox-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 60px;

    height: 60px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.35);

    background: transparent;

    color: white;

    font-size: 1rem;

    transition:
        background .3s ease;
}


.lightbox-prev:hover,
.lightbox-next:hover {

    background:
        rgba(255,255,255,.12);
}


.lightbox-prev {
    left: 30px;
}


.lightbox-next {
    right: 30px;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s var(--ease),
        transform .9s var(--ease);
}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 900px) {

    .header {

        height: 76px;

        grid-template-columns: 1fr 1fr;

    }


    .header-center {
        display: none;
    }


    .brand img {

        height: 55px;

        max-width: 100px;

    }


    .gallery-hero {

        min-height: 720px;

        padding:
            150px 7vw 80px;

    }


    .gallery-hero-top {

        top: 105px;

    }


    .gallery-hero-top span:nth-child(2) {

        display: none;

    }


    .gallery-hero h1 {

        font-size:
            clamp(3.5rem,13vw,6rem);

    }


    .gallery-hero-content p {

        margin-top: 35px;

    }


    .gallery-hero-bottom {

        display: none;

    }


    .gallery-intro {

        display: block;

        padding:
            100px 7vw;

    }


    .gallery-intro-main {

        margin-top: 55px;

    }


    .gallery-intro-main h2 {

        font-size:
            clamp(3rem,11vw,5rem);

    }


    .gallery-intro-bottom {

        margin-top: 55px;

    }


    .gallery-navigation {

        top: 76px;

    }


    .category-navigation {

        flex-wrap: nowrap;

        overflow-x: auto;

        scrollbar-width: none;

    }


    .category-navigation::-webkit-scrollbar {

        display: none;

    }


    .category-nav-button {

        white-space: nowrap;

    }


    .gallery-category {

        padding:
            80px 5vw;

    }


    .category-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap: 30px 14px;

    }


    .gallery-category-header {

        align-items: flex-start;

    }


    .gallery-category-count {

        display: none;

    }


    .youtube-section {

        padding:
            100px 5vw;

    }


    .youtube-header {

        display: block;

        padding-bottom: 50px;

    }


    .youtube-channel {

        width: max-content;

        margin-top: 35px;

    }


    .youtube-grid {

        grid-template-columns: 1fr;

    }


    .youtube-feature {

        grid-row: auto;

    }


    .delivery-section {

        padding:
            100px 5vw;

    }


    .delivery-header {

        display: block;

    }


    .delivery-header > p {

        margin-top: 35px;

    }


    .delivery-grid {

        margin-top: 55px;

        grid-template-columns:
            1fr;

    }


    .gallery-cta {

        min-height: 600px;

        padding:
            100px 7vw;

    }


    .gallery-cta h2 {

        font-size:
            clamp(3.5rem,13vw,6rem);

    }


    .footer {

        padding:
            75px 7vw 25px;

    }


    .footer-columns {

        grid-template-columns:
            1fr 1fr;

    }


    .access-modal-inner {

        padding:
            55px 30px;

    }


    .access-content {

        margin-top: 55px;

    }


    .lightbox {

        padding:
            70px 20px;

    }


    .lightbox-image-wrap {

        height: 70vh;

    }


    .lightbox-image-wrap img {

        max-height: 70vh;

    }


    .lightbox-prev,
    .lightbox-next {

        width: 42px;

        height: 42px;

        background:
            rgba(0,0,0,.35);

    }


    .lightbox-prev {
        left: 10px;
    }


    .lightbox-next {
        right: 10px;
    }

}


@media(max-width: 520px) {

    .gallery-hero-top span:last-child {

        display: none;

    }


    .gallery-category-title {

        gap: 10px;

        flex-direction: column;

    }


    .category-grid {

        grid-template-columns: 1fr;

    }


    .gallery-card-image,
    .gallery-card:nth-child(2n) .gallery-card-image {

        aspect-ratio: 1.05;

    }


    .footer-columns {

        grid-template-columns:
            1fr;

        gap: 40px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 12px;

    }


    .access-modal {

        padding: 15px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        transition-duration:
            .01ms !important;

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

    }

}