@charset "UTF-8";

@font-face {
    font-family: 'ThreeFoolsFine';
    src: url('./fonts/lixianti-2.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'ThreeFoolsBold';
    src: url('./fonts/chuxianti-2.ttf') format('truetype');
    font-display: swap;
}

:root {
    --site-bg: white;
    --site-surface: #fffdf8;
    --site-text: #1f1a17;
    --site-muted: #766d65;
    --site-line: rgba(30, 26, 23, 0.14);
    --site-accent: #111111;
    --site-shadow: 0 12px 30px rgba(28, 22, 18, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--site-bg);
    color: var(--site-text);
    font-family: 'Inter', Arial, sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    padding: 40px 0 10px;
    background: transparent;
}

.site-header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.site-logo {
    width: 156px;
    height: auto;
}

.site-main {
    padding-bottom: 48px;
}

.gallery-home-main {
    padding-bottom: 24px;
}

.gallery-mobile-home {
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 0 16px 8px;
}

.gallery-mobile-topnav {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 70px;
    margin: 30px 0 0;
}

.gallery-mobile-tab {
    position: relative;
    text-decoration: none;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    cursor: pointer;
}


.gallery-mobile-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 14px;
}

.gallery-mobile-title {
    margin: 0;
    font-size: 4rem;
    line-height: 0.3;
}

.gallery-mobile-subtitle {
    font-size: 2rem;
    color: var(--site-text);
}

.gallery-mobile-stamp {
    width: 78px;
    opacity: 0.2;
    mix-blend-mode: multiply;
}

.gallery-mobile-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    gap: 12px;
    margin-bottom: 18px;
}

.gallery-view-btn {
    border: none;
    background: transparent;
    padding: 0;
    width: 30px;
    cursor: pointer;
    opacity: 0.55;
}

.gallery-view-btn.is-active {
    opacity: 1;
}

.underline-switch {
    width: 30px;
    transform: scale(1, 0.7);
    margin-top: 5px;
    opacity: 0;
    transition: 0.2s ease;
}

.gallery-view-btn.is-active img.underline-switch{
    opacity: 1;
}


.gallery-view-icon {
    display: grid;
    width: 100%;
    height: 100%;
    gap: 2px;
}

.gallery-view-icon-grid {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-view-icon-grid::before,
.gallery-view-icon-grid::after,
.gallery-view-icon-compact::before,
.gallery-view-icon-compact::after {
    content: '';
}

.gallery-view-icon-grid,
.gallery-view-icon-compact {
    position: relative;
}

.gallery-view-icon-grid::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(var(--site-accent), var(--site-accent)) 0 0 / 10px 10px no-repeat,
        linear-gradient(var(--site-accent), var(--site-accent)) 14px 0 / 10px 10px no-repeat,
        linear-gradient(var(--site-accent), var(--site-accent)) 0 14px / 10px 10px no-repeat,
        linear-gradient(var(--site-accent), var(--site-accent)) 14px 14px / 10px 10px no-repeat;
}

.gallery-view-icon-compact::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(var(--site-accent), var(--site-accent)) 0 0 / 6px 6px no-repeat,
        linear-gradient(var(--site-accent), var(--site-accent)) 9px 0 / 6px 6px no-repeat,
        linear-gradient(var(--site-accent), var(--site-accent)) 18px 0 / 6px 6px no-repeat,
        linear-gradient(var(--site-accent), var(--site-accent)) 0 9px / 6px 6px no-repeat,
        linear-gradient(var(--site-accent), var(--site-accent)) 9px 9px / 6px 6px no-repeat,
        linear-gradient(var(--site-accent), var(--site-accent)) 18px 9px / 6px 6px no-repeat,
        linear-gradient(var(--site-accent), var(--site-accent)) 0 18px / 6px 6px no-repeat,
        linear-gradient(var(--site-accent), var(--site-accent)) 9px 18px / 6px 6px no-repeat,
        linear-gradient(var(--site-accent), var(--site-accent)) 18px 18px / 6px 6px no-repeat;
}

.gallery-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
}

#galleryMobileIGstyle {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #fff;
}

#galleryMobileIGstyle[hidden] {
    display: none;
}

#galleryMobileIGstyle .gallery-poster-card {
    min-width: 0;
}

#galleryMobileIGstyle .gallery-poster-link {
    display: block;
}

#galleryMobileIGstyle .gallery-poster-frame {
    margin-bottom: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    aspect-ratio: 4 / 5;
    background: #fff;
    overflow: hidden;
}

#galleryMobileIGstyle .gallery-poster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
}

.gallery-poster-card {
    min-width: 0;
}

.gallery-poster-link {
    display: block;
    text-decoration: none;
}

.gallery-poster-frame {
    border: 5px solid #323333;
    padding: 35px 25px;
    background: #f2f2f2;
    box-shadow: 8px 7px 4px 1px rgb(0 0 0 / 23%);
    margin-bottom: 8px;
}

.gallery-poster-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.gallery-poster-meta-top {
    margin-bottom: 2px;
    font-size: 0.7rem;
    letter-spacing: 0.5rem;
    color: #7e7e7e;
    text-transform: uppercase;
}

.gallery-poster-title {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.08;
    font-weight: 300;
}

.gallery-poster-meta {
    margin: 4px 0 0;
    font-size: 0.5rem;
    font-weight: 300;
    color: var(--site-muted);
}

.gallery-poster-price {
    margin: 2px 0 0;
    font-size: 0.72rem;
}


.gallery-mobile-footer-note {
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 8px 16px 0;
    text-align: center;
}

.gallery-mobile-note {
    margin: 0;
    color: var(--site-muted);
    font-size: 1rem;
}

.site-footer {
    padding: 12px 0 40px;
}

.site-footer-inner {
    padding-top: 20px;
    padding-bottom: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.site-footer-title {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.site-footer-text {
    margin: 6px 0 12px;
    color: var(--site-muted);
    font-size: 1.2rem;
}

.footer-logo {
    width: 150px;
}

.font-fine {
    font-family: 'ThreeFoolsFine', 'Inter', Arial, sans-serif;
}

.font-bold-custom {
    font-family: 'ThreeFoolsBold', 'Inter', Arial, sans-serif;
}

.since-footer-text {
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 200;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .gallery-mobile-home,
    .gallery-mobile-footer-note {
        width: min(100%, 680px);
    }

    .gallery-mobile-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .site-header {
        padding: 40px 0 6px;
    }

    .site-logo {
        width: 138px;
    }

    .gallery-mobile-home {
        padding: 0 20px 8px;
    }

    .gallery-mobile-topnav {
        gap: 70px;
    }

}

.gallery-poster-caption {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
}

.gallery-poster-code {
    font-size: 20px;
}

.gallery-big-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.since2025 {
    width: 90px;
    margin-top: 5px;
}

.nav-img {
    width: 50px;
}

.underline-nav {
    width: 40px;
    transform: scale(1, 0.7);
    margin-top: 5px;
    display: none;
}

.gallery-mobile-tab.is-active .underline-nav{
    display: block;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }

.latest-noti {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px;
}