html {
    scroll-behavior: smooth;
}

:root {
    --header-h: 72px;
    --black: #fff;
    --panel: #f5f5f5;
    --text: #111;
    --muted: #666;
    --border: rgba(0, 0, 0, 0.1);
    --border-strong: rgba(0, 0, 0, 0.2);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--text);
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.2px;
    font-weight: 300;
    font-synthesis: none;
}

body.lb-open {
    overflow: hidden;
}

.gallery,
.lb-overlay {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.gallery img,
.lb-overlay img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px;
    letter-spacing: 10px;
    font-weight: 300;
    font-synthesis: none;
}





a {
    color: var(--text);
    text-decoration: none;
}

/* Glass-style buttons */
:where(.footer-cta, .wa, .lb-close, .lb-prev, .lb-next, .nav-dropdown button) {
    background: transparent;
    border: 1px solid #fff;
    color: var(--text);
    backdrop-filter: blur(0px);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

:where(.footer-cta, .wa, .lb-close, .lb-prev, .lb-next, .nav-dropdown button):hover {
    color: #000;
    background: rgba(255, 255, 255, 0.85);
    color: #000;
    border-color: transparent;
    backdrop-filter: blur(12px) saturate(160%);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
    animation: flashGlow 0.25s ease;
}

@keyframes waPulse {
    0% { border-color: rgba(255, 255, 255, 0); }
    50% { border-color: rgba(255, 255, 255, 0.9); }
    100% { border-color: rgba(255, 255, 255, 0); }
}

@keyframes topFlash {
    0% { opacity: 0; }
    40% { opacity: 0.9; }
    100% { opacity: 0; }
}

@keyframes flashGlow {
    0% { box-shadow: 0 0 0 rgba(255, 255, 255, 0); }
    40% { box-shadow: 0 0 44px rgba(255, 255, 255, 0.9); }
    100% { box-shadow: 0 0 26px rgba(255, 255, 255, 0.55); }
}

b, strong {
    font-weight: 300;
}

/* Header minimal */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: var(--header-h);
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    background: transparent;
    border-bottom: 0;
}

.nav-toggle {
    display: none;
    width: 33px;
    height: 33px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    justify-self: end;
}

.nav-toggle svg {
    width: 32px;
    height: 32px;
}

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 8;
}

.mobile-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    padding: 18px 30px 48px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 12;
}

.mobile-menu.open {
    transform: translateX(0);
}


.nav-left {
    justify-content: center;
}

.nav-right {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    position: relative;
}

.menu-items {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateX(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-bars {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-bars span {
    width: 2px;
    height: 18px;
    background: #fff;
    border-radius: 2px;
}

.nav-right:hover .menu-items {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.nav-right:hover .menu-bars {
    opacity: 0;
    transform: translateX(12px);
}

.nav-right .nav-link {
    color: #fff;
}

.nav-right .nav-link:hover {
    color: #fff;
}

.nav-right .contact-btn {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid #fff;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.nav-right .contact-btn:hover {
    color: #000 !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: transparent !important;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.55) !important;
    animation: flashGlow 0.25s ease;
}

.nav-right .contact-btn::after {
    display: none;
}


.contact-btn {
    border: 1px solid #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    font-weight: 600 !important;
}

@media (max-width: 1025px) {
    .nav-right {
        display: none;
    }
}

.brand img {
    width: 33px;
    height: 33px;
    display: block;
    opacity: 1;
    transition: opacity 0.45s ease;
}

.brand img:hover {
    opacity: 1;
}


.brand-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--muted);
    margin: 0 0 0 12px;
    font-weight: 200 !important;
    font-synthesis: none;
}


.nav-left {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    justify-self: center;
}

.nav-left > * {
    display: inline-flex;
    align-items: center;
}

.nav-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    color: var(--muted);
    transition: color 0.2s ease, opacity 0.2s ease;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    padding: 8px 10px;
    width: auto;
    justify-content: center;
    white-space: nowrap;
}

.nav-link:not(.wa) {
    position: relative;
    justify-content: center;
    text-align: center;
}



.nav-link:hover {
    color: var(--text);
}

.nav-group {
    position: relative;
}

/* Category dropdown */
.category-backdrop {
    position: fixed;
    inset: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9;
}

.category-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.category-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    height: 100vh;
    width: min(38vw, 420px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(18px) saturate(150%);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 10;
    padding: 24px 18px;
}

.category-panel.open {
    transform: translateX(0);
}

.category-inner {
    width: 100%;
    padding: 12px 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.category-group {
    display: grid;
    gap: 10px;
}

.category-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.category-inner button {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: left;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.category-inner button.all-btn {
    width: auto;
    justify-self: start;
    padding: 8px 14px;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.category-inner button.all-btn:hover {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.85);
    color: #000;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
    animation: flashGlow 0.25s ease;
}

.category-inner button:hover,
.category-inner button.active {
    background: rgba(255, 255, 255, 0.85);
    color: #000;
    border-color: transparent;
}

.nav-dropdown *,
.nav-dropdown button {
    font-weight: 400;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 22px);
    left: 0;
    width: 33vw;
    min-width: 380px;
    height: 600px;
    border-radius: 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px) saturate(160%);
    display: none;
    z-index: 20;
    column-count: 2;
    column-gap: 14px;
}

.nav-group.open .nav-dropdown {
    display: block;
}

.nav-dropdown button {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text);
    text-align: left;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 10px 12px;
    border-radius: 0;
    cursor: pointer;
    break-inside: avoid;
    margin-bottom: 10px;
}

.nav-dropdown button:hover,
.nav-dropdown button.active {
    color: var(--text);
}

.wa {
    position: relative;
    color: var(--text);
    padding: 8px 18px;
    border-radius: 999px;
    width: auto;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.wa::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
    animation: waPulse 2.6s ease-in-out infinite;
}


.wa-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text);
    display: inline-block;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta .wa-dot {
    background: var(--text);
    margin-right: 8px;
}

.wa:hover .wa-dot {
    transform: scale(1.6);
    background: #000;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
    animation: flashGlow 0.25s ease;
}

.wa:hover {
    color: #000 !important;
}

.wa:hover .wa-dot,
.wa:hover {
    animation: flashGlow 0.25s ease;
}

.footer-cta:hover .wa-dot {
    transform: scale(1.6);
    background: #000;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
    animation: flashGlow 0.25s ease;
}


.wrap {
    padding: 0 30px 14vh;
}

/* Hero slider */
.hero {
    display: grid;
    margin-top: 0;
    margin-bottom: 48px;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
    letter-spacing: 1.5px;
    font-size: clamp(28px, 5vw, 54px);
    margin: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #000;
    flex: 1;
    min-height: 0;
    height: 100%;
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
    pointer-events: auto;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: pan-y;
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(130% 75% at center, rgba(0,0,0,0) 52%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-track {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 0.8;
}

.hero-slide img {
    display: none;
}

.hero-dots {
    display: none;
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 999px;
}

.hero-dot.active {
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

.access-required {
    padding: 32px;
    border: 1px solid #fff;
    max-width: 520px;
    background: var(--panel);
}

.access-required span {
    color: var(--muted);
}

/* Editorial masonry grid */
.gallery {
    column-count: 3;
    column-gap: 20px;
    touch-action: pan-y;
}

.item {
    position: relative;
    margin: 0;
    padding: 0 0 14px;
    border: 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
}


.item:hover {    border-color: var(--border-strong);
}

.item:hover img {
    filter: grayscale(100%);
}

.item:hover .meta {
    opacity: 1;
}

.item img {
    width: 100%;
    display: block;
    height: auto;
    border-radius: 0;
    touch-action: pan-y;
    transition: filter 0.6s ease;
}


.item .meta {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
.gallery-intro-wrap {
    width: 100vw;
    margin: 64px calc(50% - 50vw) 26px;
    color: #111;
    padding: 100px 30px 0px;
    
}

.gallery-intro-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 24px;
}

.gallery-intro {
    margin: 0;
    padding:80px 0px 0px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 42px;
    letter-spacing: 0px;
    line-height: 1.15;
    letter-spacing: 0.2px;
    color: #000000;
    justify-self: start;
    width: 100%;
}


.gallery-intro-meta {
    font-size: 14px;
    font-family: 'Monserrat', sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    color: #333;
    text-align: left;
    width: 100%;
    
}


@media (max-width: 1025px) {
    .gallery-intro-inner {
        grid-template-columns: auto auto 1fr;
    }

    
    }

@media (max-width: 768px) {
    .gallery-intro-wrap {
        padding: 40px 22px;
    }

    .gallery-intro-inner {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .gallery-intro {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .gallery-intro {
        font-size: 35px;
    }
}


.gallery-intro-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-intro-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.gallery-intro-right .filter-carousel {
    margin: 0;
}

@media (max-width: 1025px) {
    .gallery-intro-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gallery-intro-right {
        justify-content: flex-start;
    }
}

/* Footer */

.site-footer {
    padding: 36px 20px 24px;
    background: #000;
    color: #f2f2f2;
    font-weight: 400;
    height: auto;
    display: flex;
    flex-direction: column;
}

.footer-cta-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 26px 0 22px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: #e9e9e9;
}

.footer-cta-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

.footer-cta-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 24px;
}

.footer-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    color: #efefef;
    flex: 1 1 auto;
}

.footer-cta-icon {
    width: 96px;
    height: 96px;
    margin-left: auto;
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.footer-cta-icon svg {
    width: 24px;
    height: 24px;
    transform: rotate(180deg);
}

.footer-sep {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 18px;
}

.footer-grid {
    font-weight: 400;

    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 28px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.footer-col a,
.footer-text {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    font-weight: 400;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-top: auto;
    padding-top: 36px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    gap: 14px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.footer-logo {
    width: 110px;
    height: auto;
    display: block;
}

.footer-policies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-policies a {
    color: inherit;
    text-decoration: none;
}

.footer-policies a:hover {
    color: #fff;
}

@media (width >= 768px) {
    .site-footer {
        padding: 48px 30px 28px;
    }
    .footer-cta-title {
        font-size: 72px;
    }
    .footer-cta-icon {
        width: 96px;
        height: 96px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 32px;
        row-gap: 44px;
    }
    .footer-bottom {
        gap: 10px;
    }
    .footer-policies {
        flex-direction: column;
        gap: 8px;
    }
    .footer-logo {
        width: 140px;
    }
}

@media (width >= 1280px) {
    .site-footer {
        padding: 48px 30px 28px;
        height: 75vh;
    }
    .footer-cta-title {
        font-size: 75px;
    }
    .footer-cta-icon {
        width: 96px;
        height: 96px;
    }
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 0;
    }
    .footer-brand {
        align-items: flex-start;
        text-align: left;
    }
    .footer-policies {
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
    }
    .footer-logo {
        width: 200px;
    }
}


/* Lightbox */

.lb-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 30;
}

.lb-overlay.active {
    display: flex;
}

.lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(215, 215, 215, 0.786);
    backdrop-filter: blur(5px);
}

.lb-body {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.lb-card {
    position: relative;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    padding: 0 6vw 18px;
    background: transparent;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lb-media {
    position: relative;
    background: transparent;
    user-select: none;
}

.lb-img {
    width: auto;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lb-shield {
    position: absolute;
    inset: 0;
    background: transparent;
}

.lb-dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lb-dim.active {
    display: flex;
}

.lb-cap {
    color: rgb(40, 40, 40);
    padding: 14px;
    background-color: #fff;
}

.lb-title {
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.lb-desc {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.lb-watermark-below {
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.654);
}

.lb-close,
.lb-prev,
.lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #000000;
    border: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 5;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-50%) scale(1.03);
}

.lb-close:hover {
    transform: none;
}

.lb-close svg,
.lb-prev svg,
.lb-next svg {
    width: 33px;
    height: 33px;
    display: block;
}

.lb-close {
    top: 24px;
    right: 24px;
    transform: none;
    font-size: 22px;
    line-height: 1;
}

.lb-prev {
    left: 18px;
}

.lb-next {
    right: 18px;
}

.lb-prev,
.lb-next {
    display: none;
}


@media (max-width: 1025px) {
    .brand img {
        opacity: 1;
    }
    .nav-link {
        width: 220px;
    }
}

@media (max-width: 1025px) {
    .nav-right,
    .topbar .wa {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .mobile-menu .nav-link {
    font-size: 24px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    padding: 0;
    text-align: left;
    justify-content: flex-start;
}



    .mobile-menu .wa {
        display: inline-flex;
    }
}

@media (max-width: 1025px) {
    .gallery {
        column-count: 2;
    }

    .lb-img {
        max-height: 72vh;
    }

    .footer-brand {
    }
}

@media (max-width: 768px) {
    .wrap {
        padding: 0 24px 10vh;
    }
    .topbar {
        flex-wrap: wrap;
        gap: 10px;
    }

            .gallery {
        column-count: 2;
    }

    .lb-body {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.lb-card {
        padding: 0 4vw 18px;
    }

    .lb-prev {
        left: 10px;
    }

    .lb-next {
        right: 10px;
    }

    .footer-inner {
        min-height: 160px;
    }

    .footer-brand {
    }
}

@media (max-width: 640px) {
    .gallery {
        column-count: 1;
    }

    .lb-img {
        width: 100%;
        height: 100%;
        max-height: none;
    }
    .lb-title {
        font-size: 12px;
        font-weight: 400;
    }
    .lb-watermark-below {
        font-size: 8px;
    }
    .lb-close,
    .lb-prev,
    .lb-next {
        width: 36px;
        height: 36px;
    }
    .lb-close svg,
    .lb-prev svg,
    .lb-next svg {
        width: 26px;
        height: 26px;
    }

    .footer-brand {
    }
}


.topbar.hide {
    transform: translateY(-120%);
    opacity: 0;
}

.topbar.solid {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: none;
    z-index: 2;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 32px 30px;
    color: #fff;
    pointer-events: none;
}

.hero-overlay-tablet {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 16px 18px 160px;
    color: #fff;
    pointer-events: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    text-align: center;
}


.hero-side {
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: auto;
    
}

.hero-overlay-mobile {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 18px 160px;
    color: #fff;
    pointer-events: none;
    text-align: center;
}

.hero-overlay-mobile .hero-tagline {
    font-size: 75px;
    letter-spacing: 6px;
    line-height: 1;
    text-align: center;
    max-width: 100%;
    word-break: break-word;
}

.hero-overlay-mobile .hero-copy {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    max-width: 90%;
}




.hero-tagline {
    line-height: 0.9;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 75px;
    letter-spacing: 12px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}

.hero-copy {
    font-weight: 400;
    max-width: 280px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.4px;
    text-transform: none;
    font-family: 'Open Sans', sans-serif;
}


.hero-signature {
    display: block;
    margin-top: 12px;
    font-weight: 600;
    letter-spacing: 0,5px;
    font-family: 'Google Sans Flex', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
}


.mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    width: 33px;
    height: 33px;
}

.mobile-close {
    background: transparent;
    border: 0;
    color: #fff;
    width: 40px;
    height: 40px;
}

.mobile-close svg {
    width: 28px;
    height: 28px;
}

.mobile-links {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}


.nav-toggle .menu-bars {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle .menu-bars span {
    width: 2px;
    height: 18px;
    background: #fff;
    border-radius: 2px;
}



.mobile-menu .contact-btn {
    display: inline-flex;
    align-self: flex-start;
    border: 1px solid #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    font-weight: 600 !important;
}

.mobile-menu .contact-btn:hover {
    color: #000;
    background: rgba(255, 255, 255, 0.85);
    border-color: transparent;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
    animation: flashGlow 0.25s ease;
}

.mobile-cta {
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-cta .contact-btn {
    align-self: center;
    text-align: center;
    justify-content: center;
    font-weight: 600;
}

.mobile-socials {
    display: flex;
    gap: 16px;
}

.mobile-socials a {
    color: #fff;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-socials svg {
    width: 22px;
    height: 22px;
}

@media (width >= 768px) {
    .hero-overlay-mobile {
        display: none;
    }
    .hero-overlay-tablet {
        display: flex;
    }
    .hero-cta-down {
        align-self: center;
        margin-left: 0;
    }
    .hero-overlay-tablet .hero-tagline {
        font-size: 75px;
        letter-spacing: 6px;
        line-height: 1;
        text-align: center;
        max-width: 100%;
        word-break: break-word;
    }
    .hero-overlay-tablet .hero-copy {
        font-size: 20px;
        line-height: 20px;
        text-align: center;
        max-width: 100%;
    }
}

@media (width >= 1280px) {
    .hero-overlay {
        display: flex;
    }
    .hero-overlay-tablet {
        display: none;
    }
    .hero-overlay-mobile {
        display: none;
    }
    .hero-tagline {
        font-size: 75px;
        letter-spacing: 12px;
        line-height: 0.9;
    }
    .hero-copy {
        max-width: 280px;
        font-size: 16px;
        line-height: 20px;
        margin-right: 90px;
    }
    .hero-cta-down {
        margin-left: 80px;
    }
}

.filter-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 24px 0 18px;
    margin-bottom: 6px;
    scrollbar-width: none;
}

.filter-carousel::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    flex: 0 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.35);
    color: #000;
    background: transparent;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-pill.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

@media (max-width: 640px) {
    .filter-carousel {
        padding-top: 18px;
    }
    .filter-pill {
        font-size: 10px;
        letter-spacing: 1.4px;
    }
}

.hero-cta-down {
    width: 96px;
    height: 96px;
    margin-left: 0;
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: auto;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-cta-down:hover {
    background: rgba(255, 255, 255, 0.85);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 44px rgba(255, 255, 255, 0.9);
    animation: flashGlow 0.25s ease;
}


.hero-cta-down svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 640px) {
    .hero-cta-down {
        margin-top: 18px;
        margin-left: 0px;
    }
}
.footer-cta-banner:hover {
    color: #fff;
}

.footer-cta-banner:hover .footer-cta-icon {
    background: rgba(255, 255, 255, 0.85);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 44px rgba(255, 255, 255, 0.9);
    animation: flashGlow 0.25s ease;
}
