/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #fbfbfa;
    --color-bg-rgb: 251, 251, 250;
    --color-panel: #fefdfb;
    --color-panel-rgb: 254, 253, 251;
    --color-text-header: #171310;
    --color-ink-rgb: 23, 19, 16;
    --color-text-caption: #4f473f;
    --color-border: #ddd3c7;
    --spacing-unit: 40px;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'Outfit', sans-serif;
    --font-futura: 'Futura', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-header);
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-filter-overlay-open {
    overflow: hidden;
}

/* Welcome Screen */
.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1.5s ease;
}

.welcome-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.welcome-images {
    position: relative;
    width: 80%;
    height: 80%;
}

.welcome-img {
    position: absolute;
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    opacity: 0;
}

.welcome-img-1 {
    top: -10%;
    left: -5%;
    animation: fadeInOut1 1.5s ease-in-out forwards;
}

.welcome-img-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fadeInOut2 1.5s ease-in-out 1.5s forwards;
}

.welcome-img-3 {
    bottom: -10%;
    right: -5%;
    animation: fadeInOut3 1.5s ease-in-out 3s forwards;
}

.welcome-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    animation: fadeInName 0.8s ease-in-out 3.6s forwards;
}

.welcome-name h1 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.welcome-name p {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    cursor: pointer;
    text-transform: uppercase;
}

@keyframes fadeInName {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInOut1 {
    0% { opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes fadeInOut2 {
    0% { opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes fadeInOut3 {
    0% { opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes splitRevealSide {
    0% { opacity: 0; }
    22% { opacity: 1; }
    78% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes splitRevealTabletLeft {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes splitRevealTabletRight {
    0% { opacity: 0; }
    42% { opacity: 0; }
    100% { opacity: 1; }
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to bottom,
        rgba(var(--color-bg-rgb), 0.96) 0%,
        rgba(var(--color-bg-rgb), 0.8) 24%,
        rgba(var(--color-bg-rgb), 0.46) 58%,
        rgba(var(--color-bg-rgb), 0.16) 82%,
        rgba(var(--color-bg-rgb), 0) 100%
    );
    z-index: 100;
    transition: background 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

body.has-special-filter-description header {
    position: absolute;
}

header::after {
    content: none;
}

body.is-page-scrolled.has-special-filter-description header {
    background: linear-gradient(
        to bottom,
        rgba(var(--color-bg-rgb), 0.99) 0%,
        rgba(var(--color-bg-rgb), 0.97) 32%,
        rgba(var(--color-bg-rgb), 0.9) 60%,
        rgba(var(--color-bg-rgb), 0.7) 82%,
        rgba(var(--color-bg-rgb), 0.24) 95%,
        rgba(var(--color-bg-rgb), 0) 100%
    );
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    max-width: 1900px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0.86px;
    text-decoration: none;
    color: var(--color-text-header);
    transition: opacity 0.52s ease, transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: top 0.56s cubic-bezier(0.22, 1, 0.36, 1);
}

nav.has-special-filter-description .filter-menu {
    top: calc(50% + 30px);
}

body.is-page-scrolled nav.has-special-filter-description .filter-menu {
    top: calc(50% + 30px);
}

.filter-description {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, -6px);
    width: min(640px, 74vw);
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.52;
    letter-spacing: 0.18px;
    text-align: center;
    text-transform: none;
    white-space: pre-line;
    color: rgba(var(--color-ink-rgb), 0.5);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter-description.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.filter-description.is-special-project-description {
    top: calc(100% + 48px);
    width: min(960px, 88vw);
    font-size: 18px;
    line-height: 1.54;
    letter-spacing: 0.16px;
    color: rgba(var(--color-ink-rgb), 0.56);
}

nav.filter-expanded .filter-description {
    opacity: 0;
    transform: translate(-50%, -4px);
}

.filter-button {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0.86px;
    color: var(--color-text-header);
    cursor: pointer;
    transition: opacity 0.34s ease;
}

.filter-button.has-active-filter {
    opacity: 1;
}

.filter-button.is-italic-filter {
    font-style: italic;
}

.filter-button.is-special-project-filter {
    font-size: 40px;
    letter-spacing: 1.2px;
    line-height: 1.05;
    position: relative;
    top: 22px;
}

body.is-page-scrolled .filter-button.is-special-project-filter {
    top: 22px;
}

nav.filter-expanded .filter-button {
    opacity: 0;
    transition-delay: 0.04s;
}

nav:not(.filter-expanded) .filter-button {
    transition-delay: 0.26s;
}

.filter-dropdown {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 250;
}

.filter-option {
    background: none;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    transform-origin: center;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.62px;
    color: var(--color-text-header);
    white-space: nowrap;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    cursor: pointer;
    transition:
        transform 1.34s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.28s ease-out,
        color 0.22s ease-out;
    transition-delay: 0s;
}

.filter-option[data-tag="the-unwanted-place"] {
    font-style: italic;
}

.filter-option.is-italic-filter {
    font-style: italic;
}

.filter-option:hover,
.filter-option:focus-visible {
    color: rgba(var(--color-ink-rgb), 0.54);
    opacity: 1;
    outline: none;
}

nav.filter-expanded .filter-option {
    opacity: 1;
    pointer-events: auto;
    transform: translate(
        calc(-50% + var(--target-x, 0px)),
        calc(-50% + var(--target-y, 0px))
    );
    transition-duration: 1.28s, 0.28s, 0.22s;
    transition-delay: var(--delay, 0s);
}

nav:not(.filter-expanded) .filter-option {
    transition-duration: 1.74s, 0.82s, 0.22s;
    transition-timing-function:
        cubic-bezier(0.19, 1, 0.22, 1),
        cubic-bezier(0.22, 1, 0.36, 1),
        ease-out;
    transition-delay: 0s;
}

nav.filter-expanded .filter-option.is-active {
    opacity: 0.92;
    text-decoration: underline;
    text-underline-offset: 0.16em;
    text-decoration-thickness: 0.05em;
}

.filter-option:nth-child(1) { --target-x: calc(-1 * clamp(320px, 34vw, 620px)); --target-y: 0px; --delay: 0.06s; }
.filter-option:nth-child(2) { --target-x: calc(-1 * clamp(200px, 22vw, 380px)); --target-y: 0px; --delay: 0.12s; }
.filter-option:nth-child(3) { --target-x: calc(-1 * clamp(90px, 10vw, 170px)); --target-y: 0px; --delay: 0.18s; }
.filter-option:nth-child(4) { --target-x: clamp(90px, 10vw, 170px); --target-y: 0px; --delay: 0.18s; }
.filter-option:nth-child(5) { --target-x: clamp(200px, 22vw, 380px); --target-y: 0px; --delay: 0.12s; }
.filter-option:nth-child(6) { --target-x: clamp(320px, 34vw, 620px); --target-y: 0px; --delay: 0.06s; }

.info-link {
    font-family: 'Outfit', sans-serif;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0.86px;
    text-decoration: none;
    color: var(--color-text-header);
    cursor: pointer;
    opacity: 1;
    transition:
        color 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-link:hover,
.info-link:focus-visible {
    color: rgba(var(--color-ink-rgb), 0.54);
    opacity: 1;
    outline: none;
}

nav.filter-expanded .logo,
nav.filter-expanded .info-link {
    opacity: 0;
    transform: translateY(-2px);
    pointer-events: none;
}

.mobile-filter-chip {
    display: none;
}

.lightbox-tap-zone {
    display: none;
}

/* Information Overlay */
.info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-panel);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.68s;
}

.info-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

.info-close {
    position: absolute;
    top: 20px;
    right: 40px;
    background: none;
    border: none;
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--color-text-header);
    cursor: pointer;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-close:hover {
    opacity: 0.64;
}

.info-content {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform 0.76s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.info-content::before {
    content: 'Contact';
    display: block;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.92px;
    text-transform: uppercase;
    color: rgba(var(--color-ink-rgb), 0.46);
}

.info-overlay.active .info-close {
    opacity: 1;
    transform: translateY(0);
}

.info-overlay.active .info-content {
    opacity: 1;
    transform: translateY(0);
}

.info-email {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-text-header);
    margin: 0;
    text-decoration: none;
    letter-spacing: 0.18px;
    transition: opacity 0.3s ease;
}

.info-email:hover {
    opacity: 0.62;
}

/* Main Content */
main {
    padding-top: 160px;
    max-width: 1900px;
    margin: 0 auto;
    padding-left: 5px;
    padding-right: 5px;
    transition: opacity 0.45s ease;
}

body.has-filter-description main {
    padding-top: 226px;
}

body.has-special-filter-description main {
    padding-top: 290px;
}

main.faded {
    opacity: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 38px;
    row-gap: 78px;
    margin-bottom: 120px;
    align-items: start;
}

.gallery-item {
    cursor: pointer;
    position: relative;
    height: 220px;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.18s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: top;
    opacity: 0;
    transform: translateY(8px) scale(0.997);
    transition:
        opacity 1.12s ease,
        transform 1.32s cubic-bezier(0.22, 1, 0.36, 1);
    filter: none;
    will-change: transform;
}

.gallery-item img.loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--font-serif);
    font-size: 11.5px;
    font-weight: 400;
    color: rgba(var(--color-ink-rgb), 0.72);
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1.2;
}

.caption-title {
    font-size: 11.5px;
    letter-spacing: 0.18px;
}

.caption-subtitle {
    font-size: 10.5px;
    letter-spacing: 0.08px;
    opacity: 0.62;
}

.gallery-item.is-entering,
.gallery-item.is-filtering-out,
.gallery-item.is-filtered-out {
    opacity: 0;
    transform: translateY(4px) scale(0.998);
    pointer-events: none;
}

.gallery-item.is-filtered-out {
    display: none;
}

.gallery-empty-state {
    margin-top: 12px;
    padding-left: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    letter-spacing: 0.35px;
    color: rgba(var(--color-ink-rgb), 0.56);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.42s ease, transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-empty-state.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover img.loaded {
    transform: translateY(-1px) scale(1.004);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-panel-rgb), 0.9);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.96s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.94s cubic-bezier(0.22, 1, 0.36, 1),
        -webkit-backdrop-filter 0.94s cubic-bezier(0.22, 1, 0.36, 1),
        backdrop-filter 0.94s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.94s;
    padding: 34px;
}

.lightbox.active {
    opacity: 1;
    background-color: rgba(var(--color-panel-rgb), 0.975);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    visibility: visible;
    pointer-events: auto;
    transition:
        opacity 0.96s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.94s cubic-bezier(0.22, 1, 0.36, 1),
        -webkit-backdrop-filter 0.94s cubic-bezier(0.22, 1, 0.36, 1),
        backdrop-filter 0.94s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0s;
}

.lightbox.is-closing {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transition:
        opacity 1.24s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 1.08s cubic-bezier(0.22, 1, 0.36, 1),
        -webkit-backdrop-filter 1.08s cubic-bezier(0.22, 1, 0.36, 1),
        backdrop-filter 1.08s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 1.24s;
}

.lightbox-counter {
    position: absolute;
    top: 24px;
    left: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.72px;
    color: var(--color-text-header);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.66s cubic-bezier(0.22, 1, 0.36, 1), transform 0.86s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox-name {
    position: absolute;
    top: 24px;
    left: 50%;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text-header);
    letter-spacing: 0.72px;
    opacity: 0;
    transform: translate(-50%, -8px);
    transition: opacity 0.66s cubic-bezier(0.22, 1, 0.36, 1), transform 0.86s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 20px;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text-header);
    cursor: pointer;
    line-height: 1;
    letter-spacing: 0.72px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.66s cubic-bezier(0.22, 1, 0.36, 1), transform 0.86s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox-close:hover {
    opacity: 0.62;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(12px) scale(1);
    transition: opacity 1.06s cubic-bezier(0.22, 1, 0.36, 1), transform 1.18s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.active .lightbox-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.lightbox.is-closing .lightbox-content {
    opacity: 0;
    transform: translateY(0) scale(1);
}

.lightbox.active .lightbox-counter,
.lightbox.active .lightbox-close {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.14s;
}

.lightbox.is-closing .lightbox-counter,
.lightbox.is-closing .lightbox-close {
    opacity: 0;
    transform: translateY(0);
}

.lightbox.active .lightbox-name {
    opacity: 1;
    transform: translate(-50%, 0);
    transition-delay: 0.18s;
}

.lightbox.is-closing .lightbox-name {
    opacity: 0;
    transform: translate(-50%, 0);
    transition-delay: 0s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-images-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 24px;
    transition: opacity 0.42s ease;
}

.lightbox-side-image {
    max-width: 120px;
    max-height: 50vh;
    object-fit: contain;
    opacity: 0.14;
    cursor: pointer;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.lightbox-side-image:hover {
    opacity: 0.28;
}

.lightbox-main-image-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    isolation: isolate;
}

#lightbox-img,
#lightbox-img-next {
    grid-area: 1 / 1;
    max-width: 800px;
    max-height: 75vh;
    object-fit: contain;
    opacity: 0;
    filter: none;
    transform: none;
    transition: opacity 0.84s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity;
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
}

#lightbox-img-next {
    z-index: 1;
}

#lightbox-img.is-active-layer,
#lightbox-img-next.is-active-layer {
    opacity: 1;
    filter: none;
    transform: none;
    z-index: 2;
}

#lightbox-img:not(.is-active-layer),
#lightbox-img-next:not(.is-active-layer) {
    opacity: 0;
    filter: none;
    transform: none;
    z-index: 1;
}

.lightbox-caption {
    position: absolute;
    top: auto;
    bottom: -10px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: var(--color-text-header);
    letter-spacing: 0.24px;
    text-align: center;
    width: min(52ch, calc(100vw - 120px));
    opacity: 0;
    transform: translate(-50%, 8px);
    transition:
        opacity 0.66s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.86s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox-caption-title {
    font-size: 13px;
    letter-spacing: 0.22px;
    line-height: 1.24;
}

.lightbox-caption-subtitle {
    font-size: 11.5px;
    letter-spacing: 0.14px;
    line-height: 1.28;
    opacity: 0.58;
}

.lightbox.active .lightbox-caption {
    opacity: 1;
    transform: translate(-50%, 0);
    transition-delay: 0.2s;
}

.lightbox.is-closing .lightbox-caption {
    opacity: 0;
    transform: translate(-50%, 0);
    transition-delay: 0s;
}

.lightbox-request-trigger {
    position: absolute;
    right: 20px;
    bottom: 14px;
    transform: translateY(8px);
    background: none;
    border: none;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.56px;
    color: var(--color-text-header);
    white-space: nowrap;
    cursor: pointer;
    opacity: 0;
    transition:
        opacity 0.66s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.86s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.24s ease-out;
}

.lightbox-request-trigger:hover,
.lightbox-request-trigger:focus-visible {
    color: rgba(var(--color-ink-rgb), 0.54);
    outline: none;
}

.lightbox.active .lightbox-request-trigger {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.24s;
}

.lightbox.is-closing .lightbox-request-trigger {
    opacity: 0;
    transform: translateY(0);
    transition-delay: 0s;
}

.lightbox.request-print-open .lightbox-content,
.lightbox.request-print-open .lightbox-counter,
.lightbox.request-print-open .lightbox-name,
.lightbox.request-print-open .lightbox-close,
.lightbox.request-print-open .lightbox-info {
    opacity: 0;
    pointer-events: none;
}

.request-print-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 28px 28px;
    background:
        radial-gradient(120% 120% at 50% -12%, rgba(var(--color-panel-rgb), 0.9) 0%, rgba(var(--color-bg-rgb), 0.96) 58%, rgba(var(--color-bg-rgb), 0.99) 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.62s;
}

.lightbox.request-print-open .request-print-modal {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

.request-print-panel {
    position: relative;
    width: min(720px, 100%);
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    padding: 42px 44px 34px;
    border: 1px solid rgba(var(--color-ink-rgb), 0.12);
    background: rgba(var(--color-panel-rgb), 1);
    box-shadow: 0 18px 54px rgba(var(--color-ink-rgb), 0.06);
}

.request-print-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.94px;
    text-transform: uppercase;
    color: var(--color-text-header);
    cursor: pointer;
    opacity: 0.7;
    transition: color 0.2s ease-out, opacity 0.2s ease-out;
}

.request-print-close:hover,
.request-print-close:focus-visible {
    color: rgba(var(--color-ink-rgb), 0.54);
    opacity: 1;
    outline: none;
}

.request-print-title {
    margin: 0 0 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.02;
    color: var(--color-text-header);
}

.request-print-intro {
    margin: 0 0 26px;
    font-family: 'Outfit', sans-serif;
    font-size: 13.2px;
    letter-spacing: 0.12px;
    line-height: 1.52;
    color: rgba(var(--color-ink-rgb), 0.62);
    max-width: 52ch;
}

.request-print-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
    padding-bottom: 10px;
}

.request-print-shipping {
    margin: 2px 0 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    line-height: 1.48;
    letter-spacing: 0.1px;
    color: rgba(var(--color-ink-rgb), 0.6);
}

.request-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.request-field span {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    color: rgba(var(--color-ink-rgb), 0.54);
}

.request-field-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.request-paper-info-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.request-paper-info-trigger {
    width: 15px;
    height: 15px;
    padding: 0;
    border: 1px solid rgba(var(--color-ink-rgb), 0.28);
    border-radius: 999px;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0;
    color: rgba(var(--color-ink-rgb), 0.66);
    cursor: help;
    transition: color 0.2s ease-out, border-color 0.2s ease-out;
}

.request-paper-info-trigger:hover,
.request-paper-info-trigger:focus-visible {
    color: rgba(var(--color-ink-rgb), 0.5);
    border-color: rgba(var(--color-ink-rgb), 0.2);
    outline: none;
}

.request-field .request-paper-info-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: min(360px, 74vw);
    padding: 12px 13px;
    border: 1px solid rgba(var(--color-ink-rgb), 0.1);
    background: rgba(var(--color-panel-rgb), 0.99);
    box-shadow: 0 14px 34px rgba(var(--color-ink-rgb), 0.06);
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    line-height: 1.62;
    letter-spacing: 0.05px;
    text-transform: none;
    color: rgba(var(--color-ink-rgb), 0.76);
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
    z-index: 2;
}

.request-paper-info-wrap:hover .request-paper-info-tooltip,
.request-paper-info-trigger:focus-visible + .request-paper-info-tooltip {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease-out, visibility 0s linear 0s;
}

.request-field input,
.request-field select,
.request-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(var(--color-ink-rgb), 0.24);
    border-radius: 0;
    background: transparent;
    padding: 12px 0 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08px;
    color: var(--color-text-header);
    outline: none;
    transition: border-color 0.24s ease-out, color 0.24s ease-out, background-color 0.24s ease-out;
}

.request-field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(10, 10, 10, 0.55) 50%),
        linear-gradient(135deg, rgba(10, 10, 10, 0.55) 50%, transparent 50%);
    background-position:
        calc(100% - 14px) calc(50% + 2px),
        calc(100% - 9px) calc(50% + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 28px;
}

.request-field input:focus,
.request-field select:focus,
.request-field textarea:focus {
    border-bottom-color: rgba(var(--color-ink-rgb), 0.48);
}

.request-field textarea {
    resize: vertical;
    min-height: 104px;
    border: 1px solid rgba(var(--color-ink-rgb), 0.16);
    padding: 10px 12px;
    background: rgba(var(--color-panel-rgb), 0.7);
}

.request-field input[readonly] {
    color: rgba(var(--color-ink-rgb), 0.82);
    border-bottom-color: rgba(var(--color-ink-rgb), 0.16);
}

.request-field-full {
    grid-column: 1 / -1;
}

.request-field-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.request-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.request-consent input {
    margin-top: 2px;
}

.request-consent span {
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    letter-spacing: 0.2px;
    text-transform: none;
    color: rgba(var(--color-ink-rgb), 0.68);
}

.request-print-privacy {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 10.5px;
    line-height: 1.5;
    letter-spacing: 0.16px;
    color: rgba(var(--color-ink-rgb), 0.52);
    max-width: 74ch;
}

.request-print-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: sticky;
    bottom: 0;
    z-index: 3;
    margin-top: 4px;
    padding-top: 12px;
    padding-bottom: 8px;
    border-top: 1px solid rgba(var(--color-ink-rgb), 0.08);
    background: linear-gradient(
        to bottom,
        rgba(var(--color-panel-rgb), 0) 0%,
        rgba(var(--color-panel-rgb), 0.95) 28%,
        rgba(var(--color-panel-rgb), 1) 60%
    );
}

.request-print-submit {
    background: none;
    border: 1px solid rgba(var(--color-ink-rgb), 0.28);
    border-radius: 0;
    padding: 10px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.94px;
    text-transform: uppercase;
    color: var(--color-text-header);
    cursor: pointer;
    transition: color 0.24s ease-out, border-color 0.24s ease-out;
}

.request-print-submit:hover,
.request-print-submit:focus-visible {
    color: rgba(var(--color-ink-rgb), 0.54);
    border-color: rgba(var(--color-ink-rgb), 0.2);
    outline: none;
}

.request-print-submit:disabled {
    opacity: 0.5;
    cursor: wait;
}

.request-print-status {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22px;
    color: rgba(var(--color-ink-rgb), 0.62);
    min-height: 1.2em;
    text-align: right;
}

.request-print-status.is-error {
    color: rgba(125, 35, 35, 0.9);
}

.request-print-status.is-success {
    color: rgba(var(--color-ink-rgb), 0.62);
}

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

.lightbox-info {
    display: none;
}

/* Large Desktop */
@media (max-width: 1800px) {
    .gallery-grid {
        grid-template-columns: repeat(9, 1fr);
    }
}

@media (max-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
        column-gap: 24px;
        row-gap: 86px;
    }

    nav {
        padding: 14px 18px 10px;
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr) 56px;
        align-items: center;
        column-gap: 8px;
        justify-content: initial;
    }

    .logo {
        display: inline-flex;
        align-items: center;
        min-height: 56px;
        font-size: 30px;
        letter-spacing: 0.82px;
        line-height: 1;
        white-space: nowrap;
        text-transform: none;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        grid-column: 2;
        justify-self: center;
        text-align: center;
        transform: translateY(2px);
    }

    .info-link {
        display: none;
    }

    .filter-menu {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-column: 3;
        align-self: center;
        justify-self: end;
        min-height: 56px;
        z-index: 260;
    }

    nav.has-special-filter-description .filter-menu,
    body.is-page-scrolled nav.has-special-filter-description .filter-menu {
        top: auto;
    }

    .filter-button {
        font-size: 0;
        letter-spacing: 0;
        width: 56px;
        min-width: 56px;
        height: 56px;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        border-radius: 999px;
    }

    .filter-button::before {
        content: '≡';
        font-size: 40px;
        line-height: 1;
        transform: translateY(1px);
    }

    nav.filter-expanded .filter-button::before {
        content: '≡';
        font-size: 40px;
        transform: translateY(1px);
    }

    .lightbox-side-image {
        display: none;
    }

    .lightbox-images-container {
        top: 0;
        bottom: 0;
        justify-content: center;
        padding: 0 18px;
    }

    .lightbox-main-image-wrapper {
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
    }

    #lightbox-img,
    #lightbox-img-next {
        max-width: min(90vw, 860px);
        max-height: 74vh;
    }

    .lightbox-tap-zone {
        display: block;
        position: absolute;
        top: 72px;
        bottom: 118px;
        width: 24vw;
        max-width: 170px;
        border: none;
        background: transparent;
        padding: 0;
        z-index: 4;
        cursor: pointer;
    }

    .lightbox-tap-zone-prev {
        left: 0;
    }

    .lightbox-tap-zone-next {
        right: 0;
    }

    .filter-dropdown {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        padding: 28px 34px 24px;
        background: rgba(var(--color-panel-rgb), 0.965);
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.44s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 320;
    }

    .filter-overlay-header {
        width: 100%;
        max-width: none;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        min-height: 52px;
        margin-bottom: clamp(28px, 6vh, 72px);
    }

    .filter-overlay-title {
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        pointer-events: none;
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(var(--color-ink-rgb), 0.52);
    }

    .filter-overlay-close {
        border: none;
        background: none;
        min-height: 44px;
        padding: 0 4px;
        font-family: 'Outfit', sans-serif;
        font-size: 30px;
        line-height: 1;
        letter-spacing: 0.4px;
        color: rgba(var(--color-ink-rgb), 0.58);
        cursor: pointer;
        position: relative;
        z-index: 1;
    }

    .filter-options-stack {
        width: min(82vw, 700px);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .filter-option {
        position: static;
        transform: none;
        width: auto;
        min-height: 0;
        padding: 2px 0;
        text-align: center;
        font-size: 34px;
        letter-spacing: 0.28px;
        line-height: 1.2;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.34s ease, color 0.14s ease;
    }

    nav.filter-expanded .filter-dropdown {
        opacity: 1;
        pointer-events: auto;
    }

    nav.filter-expanded .filter-option {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition-delay: 0s;
    }

    .filter-overlay-info {
        width: min(82vw, 700px);
        min-height: 52px;
        margin-top: auto;
        margin-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        border: none;
        background: none;
        font-family: 'Outfit', sans-serif;
        font-size: 42px;
        letter-spacing: 0.22px;
        color: var(--color-text-header);
        cursor: pointer;
        text-align: center;
        transition: color 0.14s ease;
    }

    .filter-overlay-info:hover,
    .filter-overlay-info:focus-visible {
        color: rgba(var(--color-ink-rgb), 0.62);
        outline: none;
    }

    .lightbox-name {
        top: 28px;
        font-size: 36px;
        letter-spacing: 1.16px;
        line-height: 1;
    }

    .lightbox-counter,
    .lightbox-close {
        top: 36px;
        line-height: 1;
    }

    .lightbox-counter {
        left: max(34px, calc(env(safe-area-inset-left, 0px) + 18px));
    }

    .lightbox-close {
        right: max(34px, calc(env(safe-area-inset-right, 0px) + 18px));
    }

    .lightbox-caption {
        bottom: 14px;
        min-height: 66px;
        gap: 7px;
    }

    .lightbox-caption-title {
        font-size: 24px;
        letter-spacing: 0.34px;
        line-height: 1.12;
    }

    .lightbox-caption-subtitle {
        font-size: 16px;
        letter-spacing: 0.22px;
        line-height: 1.2;
    }

    main {
        padding-top: 164px;
        padding-left: 30px;
        padding-right: 30px;
    }

    body.has-filter-description main {
        padding-top: 210px;
    }

    .filter-button.is-special-project-filter {
        font-size: 34px;
        top: 18px;
    }

    nav.has-special-filter-description .filter-menu {
        top: calc(50% + 26px);
    }

    body.is-page-scrolled nav.has-special-filter-description .filter-menu {
        top: calc(50% + 26px);
    }

    .filter-description.is-special-project-description {
        top: calc(100% + 40px);
        width: min(760px, 90vw);
        font-size: 17px;
    }

    body.is-page-scrolled .filter-button.is-special-project-filter {
        top: 18px;
    }

    body.has-special-filter-description main {
        padding-top: 268px;
    }
}

/* Tablet welcome opener: two-image split reveal */
@media (min-width: 641px) and (max-width: 1366px) {
    .welcome-screen {
        transition: opacity 1.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .welcome-images {
        width: min(92vw, 1220px);
        height: min(84vh, 860px);
    }

    .welcome-img {
        animation: none;
    }

    .welcome-img-1,
    .welcome-img-3 {
        top: 50%;
        max-width: min(44vw, 520px);
        max-height: 84%;
        opacity: 0;
        animation: splitRevealTabletLeft 2.7s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
        will-change: opacity;
        filter: none;
    }

    .welcome-img-1 {
        left: 25%;
        transform: translate(-50%, -50%);
    }

    .welcome-img-3 {
        left: 75%;
        transform: translate(-50%, -50%);
        animation-name: splitRevealTabletRight !important;
        animation-delay: 0s;
    }

    .welcome-img-2,
    .welcome-name {
        display: none !important;
    }
}

/* Mobile Breakpoint */
@media (max-width: 640px) {
    :root {
        --spacing-unit: 20px;
    }

    .welcome-screen {
        transition: opacity 0.92s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .welcome-images {
        width: min(92vw, 520px);
        height: min(78vh, 640px);
    }

    .welcome-img {
        animation: none !important;
    }

    .welcome-img-1 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        filter: none;
        max-width: 92%;
        max-height: 82%;
        transition: opacity 0.64s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .welcome-img-1.is-ready {
        opacity: 1;
    }

    .welcome-img-2,
    .welcome-img-3,
    .welcome-name {
        display: none !important;
    }

    /* Mobile header aligns with desktop structure, but more compact */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(
            to bottom,
            rgba(var(--color-bg-rgb), 0.96) 0%,
            rgba(var(--color-bg-rgb), 0.8) 24%,
            rgba(var(--color-bg-rgb), 0.46) 58%,
            rgba(var(--color-bg-rgb), 0.16) 82%,
            rgba(var(--color-bg-rgb), 0) 100%
        );
        z-index: 200;
    }

    nav {
        padding: 12px 14px 8px;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        align-items: center;
        column-gap: 6px;
        justify-content: initial;
    }

    .logo {
        font-family: 'Outfit', sans-serif;
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        font-size: 17px;
        letter-spacing: 0.44px;
        white-space: nowrap;
        text-transform: none;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        grid-column: 2;
        justify-self: center;
        text-align: center;
    }

    .info-link {
        display: none;
    }

    .filter-menu {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-column: 3;
        justify-self: end;
        min-height: 44px;
        z-index: 260;
    }

    nav.has-special-filter-description .filter-menu {
        top: auto;
    }

    body.is-page-scrolled nav.has-special-filter-description .filter-menu {
        top: auto;
    }

    .filter-button {
        font-size: 0;
        letter-spacing: 0;
        width: 44px;
        min-width: 44px;
        height: 44px;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        border-radius: 999px;
    }

    .filter-button::before {
        content: '≡';
        font-size: 19px;
        line-height: 1;
        transform: translateY(-1px);
    }

    nav.filter-expanded .filter-button::before {
        content: '≡';
        font-size: 19px;
        transform: translateY(-1px);
    }

    .filter-button.is-special-project-filter {
        font-size: 0;
        letter-spacing: 0;
        top: 0;
    }

    body.is-page-scrolled .filter-button.is-special-project-filter {
        top: 0;
    }

    .mobile-filter-chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 100%;
        margin: -2px auto 0;
        padding: 0 14px 8px;
        opacity: 1;
        transform: translateY(0);
        cursor: pointer;
        transition: opacity 0.24s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-filter-chip[hidden] {
        display: none;
    }

    .mobile-filter-chip-label {
        display: block;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        letter-spacing: 0.26px;
        color: rgba(var(--color-ink-rgb), 0.66);
        text-align: center;
        width: 100%;
    }

    .mobile-filter-chip-clear {
        display: none;
        border: none;
        background: none;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        line-height: 1;
        color: rgba(var(--color-ink-rgb), 0.48);
        cursor: pointer;
        min-width: 30px;
        min-height: 30px;
        padding: 0;
        transition: color 0.2s ease;
    }

    .mobile-filter-chip-clear:hover,
    .mobile-filter-chip-clear:focus-visible {
        color: rgba(var(--color-ink-rgb), 0.72);
        outline: none;
    }

    .mobile-filter-chip.is-overlay-open {
        opacity: 0;
        transform: translateY(-4px);
        pointer-events: none;
    }

    .filter-description {
        top: calc(100% + 9px);
        width: min(310px, 88vw);
        font-size: 9.8px;
        line-height: 1.46;
        letter-spacing: 0.08px;
        color: rgba(var(--color-ink-rgb), 0.48);
    }

    .filter-description.is-special-project-description {
        top: calc(100% + 30px);
        width: min(344px, 92vw);
        font-size: 12px;
        line-height: 1.52;
        letter-spacing: 0.12px;
        color: rgba(var(--color-ink-rgb), 0.54);
    }

    .filter-dropdown {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        padding: 18px 22px 24px;
        background: rgba(var(--color-panel-rgb), 0.965);
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.44s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 240;
    }

    .filter-overlay-header {
        width: min(88vw, 380px);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        min-height: 44px;
        margin-bottom: clamp(20px, 4.8vh, 46px);
    }

    .filter-overlay-title {
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        pointer-events: none;
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        letter-spacing: 0.74px;
        text-transform: uppercase;
        color: rgba(var(--color-ink-rgb), 0.52);
    }

    .filter-overlay-close {
        border: none;
        background: none;
        min-height: 44px;
        padding: 0 4px;
        font-family: 'Outfit', sans-serif;
        font-size: 28px;
        letter-spacing: 0;
        line-height: 1;
        color: rgba(var(--color-ink-rgb), 0.58);
        cursor: pointer;
        position: relative;
        z-index: 1;
    }

    .filter-options-stack {
        width: min(88vw, 380px);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .filter-overlay-info {
        width: min(88vw, 380px);
        min-height: 52px;
        margin-top: auto;
        margin-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        border: none;
        background: none;
        font-family: 'Outfit', sans-serif;
        font-size: 26px;
        letter-spacing: 0.18px;
        color: var(--color-text-header);
        cursor: pointer;
        text-align: center;
        transition: color 0.14s ease;
        padding-top: 8px;
    }

    .filter-overlay-info:hover,
    .filter-overlay-info:focus-visible {
        color: rgba(var(--color-ink-rgb), 0.62);
        outline: none;
    }

    .filter-option {
        position: static;
        transform: none;
        width: auto;
        min-height: 0;
        padding: 2px 0;
        text-align: center;
        font-size: 18px;
        letter-spacing: 0.24px;
        line-height: 1.2;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.34s ease, color 0.12s ease;
    }

    .filter-option[data-tag="the-unwanted-place"],
    .filter-option.is-italic-filter {
        font-style: italic;
    }

    nav.filter-expanded .filter-dropdown {
        opacity: 1;
        pointer-events: auto;
    }

    nav.filter-expanded .filter-option {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition-delay: 0s;
    }

    /* Main content with gallery */
    main {
        padding-top: 108px;
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 40px;
    }

    body.has-filter-description main {
        padding-top: 154px;
    }

    body.has-special-filter-description main {
        padding-top: 172px;
    }

    /* Slightly larger mobile tiles for a cleaner look */
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 8px;
        row-gap: 30px;
        margin-bottom: 8px;
    }

    .gallery-item {
        height: auto;
    }

    .gallery-item img {
        height: auto;
        max-height: none;
        filter: none;
        transition: opacity 0.48s ease, transform 0.34s ease;
    }

    .gallery-item.is-touch-pressing img.loaded {
        transform: scale(0.992);
        opacity: 0.92;
    }

    /* Hide captions on mobile gallery */
    .gallery-item figcaption {
        display: none;
    }

    /* Lightbox adjustments for mobile */
    .lightbox-side-image {
        display: none;
    }

    .lightbox-main-image-wrapper {
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .lightbox-images-container {
        top: 0;
        bottom: 0;
        justify-content: center;
        padding: 0 12px;
    }

    #lightbox-img,
    #lightbox-img-next {
        max-width: 90%;
        max-height: 70vh;
        width: auto;
        height: auto;
    }

    .lightbox {
        background-color: rgba(var(--color-panel-rgb), 0.94);
        -webkit-backdrop-filter: blur(0px);
        backdrop-filter: blur(0px);
    }

    .lightbox.active {
        background-color: rgba(var(--color-panel-rgb), 0.982);
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
    }

    .lightbox-name {
        display: block;
        font-size: 14px;
        letter-spacing: 0.54px;
        white-space: nowrap;
        top: 18px;
        line-height: 1;
        color: var(--color-text-header);
    }

    .lightbox-counter {
        font-size: 14px;
        letter-spacing: 0.54px;
        left: 20px;
        top: 18px;
        bottom: auto;
        line-height: 1;
        color: var(--color-text-header);
    }

    .lightbox-close {
        position: absolute;
        top: 18px;
        right: 16px;
        background: none;
        border: none;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0.54px;
        color: var(--color-text-header);
        cursor: pointer;
        min-height: 44px;
        min-width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 0;
    }

    .lightbox-caption {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 50px);
        min-height: 52px;
        width: min(92vw, 460px);
        padding: 0 12px;
        gap: 5px;
        font-size: 14px;
    }

    .lightbox-request-trigger {
        right: 6px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 0px);
        font-size: 12px;
        letter-spacing: 0.52px;
        min-height: 40px;
        padding: 0 4px;
    }

    .lightbox-caption-title {
        font-size: 14px;
        letter-spacing: 0.22px;
    }

    .lightbox-caption-subtitle {
        font-size: 13px;
        letter-spacing: 0.18px;
    }

    .lightbox-tap-zone {
        display: block;
        position: absolute;
        top: 72px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 118px);
        width: 34vw;
        max-width: 150px;
        border: none;
        background: transparent;
        padding: 0;
        z-index: 4;
        cursor: pointer;
    }

    .lightbox-tap-zone-prev {
        left: 0;
    }

    .lightbox-tap-zone-next {
        right: 0;
    }

    .lightbox-tap-zone:active {
        background: rgba(var(--color-ink-rgb), 0.03);
    }

    .lightbox-info {
        display: none;
    }

    .request-print-modal {
        padding: 46px 10px 10px;
        align-items: flex-end;
        transition:
            opacity 0.44s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0.44s;
    }

    .lightbox.request-print-open .request-print-modal {
        transition:
            opacity 0.44s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0s;
    }

    .request-print-panel {
        width: min(640px, 100%);
        max-height: calc(100vh - 56px);
        padding: 18px 14px 14px;
        border-radius: 14px 14px 0 0;
        opacity: 0;
        transform: translateY(38px);
        transition:
            opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }

    .lightbox.request-print-open .request-print-panel {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.06s;
    }

    .request-print-title {
        font-size: 20px;
        letter-spacing: 0.24px;
    }

    .request-print-intro {
        margin-bottom: 16px;
        font-size: 12.5px;
        line-height: 1.45;
        letter-spacing: 0.16px;
    }

    .request-print-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .request-print-shipping {
        margin: 0;
        font-size: 10.5px;
    }

    .request-field,
    .request-field-full {
        grid-column: auto;
    }

    .request-field span {
        font-size: 10px;
        letter-spacing: 0.64px;
    }

    .request-field input,
    .request-field select,
    .request-field textarea {
        font-size: 12.5px;
    }

    .request-field textarea {
        min-height: 90px;
    }

    .request-field .request-paper-info-tooltip {
        width: min(280px, 84vw);
        font-size: 11px;
        line-height: 1.5;
        letter-spacing: 0.04px;
        text-transform: none;
    }

    .request-print-actions {
        position: sticky;
        bottom: 0;
        z-index: 3;
        margin-top: 2px;
        padding-top: 10px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid rgba(var(--color-ink-rgb), 0.08);
        background: linear-gradient(
            to bottom,
            rgba(var(--color-panel-rgb), 0) 0%,
            rgba(var(--color-panel-rgb), 0.94) 26%,
            rgba(var(--color-panel-rgb), 1) 62%
        );
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .request-print-submit {
        width: 100%;
    }

    .request-print-status {
        text-align: left;
    }
}
