* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0));
    border-bottom: 1px solid #f0f0f0;
}

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

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #000000;
}

.sub-logo {
    display: none;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

.section-container {
    width: 100%;
    min-height: 100vh;
    padding: 160px 50px 50px 50px;
    border-bottom: 1px solid #f0f0f0;
}

.private-entry {
    min-height: 68vh;
    padding: 150px 24px 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
    background-color: #ffffff;
}

.private-entry-inner {
    width: min(100%, 640px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.private-entry h1 {
    margin-bottom: 22px;
    color: #000000;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.2px;
    line-height: 1.05;
    text-transform: uppercase;
}

.private-entry p {
    margin-bottom: 48px;
    color: #777777;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.8px;
    line-height: 1.7;
    text-transform: uppercase;
}

.private-entry .private-list-form {
    max-width: 460px;
}

#exposition {
    padding-top: 70px;
}

.exhibition-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
    gap: 140px;
}

.exhibit-item {
    display: flex;
    width: 100%;
    gap: 90px;
    min-height: calc(100vh - 210px);
    align-items: center;
}

.exhibit-visual {
    flex: 2;
    height: 740px;
    background-color: #fbfbfb;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eeeeee;
}

.artwork-canvas {
    width: 78%;
    height: 87%;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 24px 70px rgba(0,0,0,0.018);
    overflow: hidden;
    touch-action: pan-y;
}

.gallery-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.032));
    cursor: zoom-in;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    background: rgba(255,255,255,0.92);
    font-size: 40px;
    font-weight: 200;
    line-height: 1;
    color: #000000;
    cursor: pointer;
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 5;
}

.gallery-arrow-left {
    left: 24px;
}

.gallery-arrow-right {
    right: 24px;
}

.gallery-thumbs {
    display: none !important;
}

.thumb-img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 5px;
    cursor: pointer;
    opacity: 0.45;
    transition: all 0.2s ease;
}

.thumb-img:hover,
.thumb-img.active {
    opacity: 1;
    border-color: #000000;
}

@media (hover: none) and (pointer: coarse) {
    .gallery-arrow {
        display: none;
    }
}

.exhibit-meta {
    flex: 0.8;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exhibit-number {
    font-size: 12px;
    letter-spacing: 4px;
    color: #999999;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.exhibit-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.05;
}

.exhibit-specs {
    font-size: 16px;
    line-height: 1.75;
    color: #666666;
    margin-bottom: 40px;
    max-width: 460px;
}

.stock-status {
    font-size: 14px;
    font-weight: 700;
    color: #ff1744;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.price {
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.size-selector {
    margin-bottom: 35px;
}

.size-selector label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #999999;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.size-options {
    display: flex;
    gap: 12px;
}

.size-btn {
    background: none;
    border: 1px solid #e0e0e0;
    color: #000000;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover {
    border-color: #000000;
}

.size-btn.selected {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    font-weight: 700;
}

.artifact-sizing {
    margin-bottom: 34px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
    line-height: 1.5;
    text-transform: uppercase;
}

.exact-size-trigger {
    align-self: flex-start;
    padding: 0;
    border: none;
    border-bottom: 1px solid #cfcfcf;
    background: none;
    color: #777777;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    line-height: 1.8;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.exact-size-trigger:hover {
    color: #000000;
    border-color: #000000;
}

.size-sheet-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.86);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.size-sheet-overlay.active {
    opacity: 1;
}

.size-sheet-panel {
    position: relative;
    width: min(92vw, 460px);
    padding: 44px 42px 38px;
    border: 1px solid #e2e2e2;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.06);
}

.size-sheet-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: none;
    background: none;
    color: #000000;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.size-sheet-kicker {
    margin-bottom: 12px;
    color: #9a9a9a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.size-sheet-title {
    margin: 0 0 28px;
    color: #000000;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.2px;
    line-height: 1.1;
    text-transform: uppercase;
}

.size-sheet-lines {
    display: grid;
    gap: 0;
    margin-bottom: 22px;
    border-top: 1px solid #eeeeee;
}

.size-sheet-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.size-sheet-value {
    font-weight: 500;
    letter-spacing: 1.2px;
}

.size-sheet-note {
    margin: 0;
    max-width: 340px;
    color: #8a8a8a;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 1.8;
    text-transform: uppercase;
}

.collect-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 25px 44px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    width: 100%;
    max-width: 380px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-bottom: 20px;
}

.collect-btn:hover {
    opacity: 0.8;
}

.collect-btn:disabled {
    background-color: #f5f5f5 !important;
    color: #bbbbbb !important;
    cursor: not-allowed !important;
    opacity: 1;
}

.unboxing-protocol,
.shipping-note {
    font-size: 12px;
    color: #888888;
    letter-spacing: 1px;
    max-width: 380px;
    line-height: 1.6;
}

.unboxing-protocol h3,
.unboxing-protocol li span {
    display: none;
}

.unboxing-protocol ul {
    list-style: none;
}

.unboxing-protocol li {
    margin-bottom: 8px;
}

.archive-container {
    background-color: #fafafa;
    width: 100%;
    height: 100%;
}

.archive-header {
    margin-bottom: 60px;
}

.archive-header h2 {
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #999999;
}

.archive-grid {
    display: flex;
    gap: 30px;
}

.archive-item {
    flex: 1;
    position: relative;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
    height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 40px 20px;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.archive-item:hover {
    filter: grayscale(0.15) opacity(0.88);
    border-color: #999999;
}

.archive-visual-wrapper {
    position: static;
    width: 100%;
    flex: 1;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: visible;
}

.archive-image {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    margin-top: auto;
    margin-bottom: auto;
    filter: contrast(1.05);
}

.archived-stamp {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
    font-size: 10px;
    letter-spacing: 3px;
    color: #000000;
    border: 1px solid #000000;
    background-color: #ffffff;
    padding: 8px 16px;
    font-weight: 700;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}

.archive-item-title {
    display: none;
}

.manifesto-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: calc(100vh - 210px);
}

.manifesto-wrapper,
.manifesto-content {
    max-width: 750px;
    padding: 0 20px;
}

.manifesto-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ff1744;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.manifesto-title {
    font-size: 12px;
    letter-spacing: 6px;
    color: #ff1744;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.manifesto-text {
    font-size: 24px;
    line-height: 1.8;
    font-weight: 300;
    color: #222222;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}

.manifesto-signature {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.sig-line {
    width: 60px;
    height: 1px;
    background-color: #000000;
}

.sig-name {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000000;
}

.modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(255,255,255,0.99) !important;
    z-index: 9999 !important;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.modal-content {
    background-color: #ffffff !important;
    width: 94% !important;
    max-width: 1460px !important;
    padding: 72px !important;
    border: 1px solid #f0f0f0 !important;
    position: relative !important;
    box-shadow: 0 40px 90px rgba(0,0,0,0.04) !important;
}

.modal-close {
    position: absolute !important;
    top: 30px !important;
    right: 40px !important;
    font-size: 36px !important;
    font-weight: 200 !important;
    cursor: pointer !important;
    color: #000000 !important;
    z-index: 10 !important;
}

.modal-body-layout {
    display: grid !important;
    grid-template-columns: minmax(520px, 1.45fr) minmax(360px, 0.75fr) !important;
    gap: 76px !important;
    align-items: center !important;
    width: 100% !important;
}

.modal-visual-zone {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background-color: #fafafa !important;
    padding: 56px !important;
    border: 1px solid #eaeaea !important;
    width: 100% !important;
}

.modal-canvas {
    width: 100% !important;
    height: 620px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.modal-gallery-image {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    cursor: zoom-in !important;
}

.modal-thumbs-grid {
    display: none !important;
    gap: 12px !important;
    margin-top: 30px !important;
}

.modal-thumb {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain !important;
    background-color: #ffffff !important;
    border: 1px solid #eaeaea !important;
    padding: 4px !important;
    cursor: pointer !important;
    opacity: 0.35 !important;
}

.modal-thumb.active {
    opacity: 1 !important;
    border-color: #000000 !important;
}

.modal-meta-zone {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

.modal-status {
    font-size: 10px !important;
    letter-spacing: 2px !important;
    color: #ff1744 !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
}

#modal-title {
    font-size: 46px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: -1px !important;
    margin-bottom: 20px !important;
    color: #000000 !important;
}

#modal-specs {
    font-size: 16px !important;
    line-height: 1.9 !important;
    color: #666666 !important;
    font-weight: 300 !important;
    margin-bottom: 30px !important;
}

#modal-price {
    font-size: 24px !important;
    font-weight: 300 !important;
    color: #bbbbbb !important;
    margin-bottom: 35px !important;
    text-decoration: line-through !important;
}

.modal-notice {
    font-size: 12px !important;
    letter-spacing: 1px !important;
    color: #999999 !important;
    text-transform: uppercase !important;
    border-top: 1px dashed #e5e5e5 !important;
    padding-top: 25px !important;
}

.image-zoom-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6vh 6vw;
    background-color: rgba(255,255,255,0.98);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.image-zoom-overlay.active {
    opacity: 1;
}

.image-zoom-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-out;
    filter: drop-shadow(0 22px 60px rgba(0,0,0,0.08));
}

.image-zoom-close {
    position: absolute;
    top: 28px;
    right: 36px;
    border: none;
    background: transparent;
    color: #000000;
    font-size: 42px;
    font-weight: 200;
    line-height: 1;
    cursor: pointer;
}

.site-footer {
    width: 100%;
    padding: 38px 20px 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #f0f0f0;
    background-color: #ffffff;
}

.footer-copy {
    color: #999999;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-email {
    color: #999999;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: #000000;
}

.private-list-form {
    width: 100%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.private-list-input-frame {
    width: 100%;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
}

.private-list-email {
    width: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    letter-spacing: 1px;
    text-align: center;
    background: none;
    color: #000000;
}

.private-list-submit {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.private-list-submit:disabled {
    opacity: 0.55;
    cursor: wait;
}

.private-list-status {
    min-height: 14px;
    font-size: 9px;
    color: #999999;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 1500px) {
    .exhibit-item {
        gap: 64px;
    }

    .exhibit-visual {
        height: 650px;
    }

    .exhibit-title {
        font-size: 44px;
    }

    .exhibit-specs {
        font-size: 15px;
        max-width: 430px;
    }
}

@media (max-width: 1200px) {
    nav {
        padding: 32px 34px;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 5px;
    }

    .nav-links {
        gap: 26px;
    }

    .nav-links a {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .section-container {
        padding: 140px 34px 60px;
    }

    .exhibition-layout {
        gap: 110px;
    }

    .exhibit-item {
        flex-direction: column;
        align-items: stretch;
        gap: 46px;
        min-height: auto;
    }

    .exhibit-visual {
        width: 100%;
        height: min(66vw, 680px);
        min-height: 480px;
        flex: none;
    }

    .artwork-canvas {
        width: 82%;
        height: 84%;
    }

    .exhibit-meta {
        width: 100%;
        max-width: 720px;
        flex: none;
        padding-top: 0;
    }

    .exhibit-title {
        font-size: 46px;
    }

    .exhibit-specs {
        max-width: 620px;
    }

    .archive-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .archive-item {
        height: 460px;
    }
}

@media (max-width: 1024px) {
    nav {
        padding: 25px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .section-container {
        padding: 130px 20px 50px 20px;
    }

    .private-entry {
        min-height: 62vh;
        padding: 132px 22px 44px;
    }

    .private-entry h1 {
        font-size: 34px;
    }

    .private-entry p {
        max-width: 500px;
        font-size: 13px;
    }

    #exposition {
        padding-top: 56px;
    }

    .exhibition-layout {
        gap: 125px;
    }

    .exhibit-item {
        gap: 52px;
    }

    .exhibit-visual {
        height: min(68vw, 560px);
        min-height: 420px;
    }

    .exhibit-title {
        font-size: 36px;
        text-align: center;
    }

    .exhibit-specs {
        font-size: 14px;
        line-height: 1.7;
        max-width: 560px;
        text-align: center;
    }

    .price {
        font-size: 26px;
        margin-bottom: 30px;
        text-align: center;
    }

    .exhibit-meta {
        align-items: center;
        margin: 0 auto;
        text-align: center;
    }

    .stock-status {
        text-align: center;
    }

    .size-selector {
        width: 100%;
        max-width: 340px;
    }

    .size-options {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
    }

    .size-btn {
        padding: 12px 0;
        width: 100%;
    }

    .collect-btn {
        max-width: 360px;
    }

    .artifact-sizing {
        align-items: center;
        margin-bottom: 30px;
        text-align: center;
    }

    .exact-size-trigger {
        align-self: center;
    }

    .gallery-arrow {
        width: 46px;
        height: 46px;
        font-size: 34px;
    }

    .gallery-arrow-left {
        left: 12px;
    }

    .gallery-arrow-right {
        right: 12px;
    }

    .manifesto-text {
        font-size: 19px;
    }

    .modal-body-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .modal-content {
        max-height: 92vh !important;
        overflow-y: auto !important;
    }

    .modal-canvas {
        height: 520px !important;
    }

    .modal-meta-zone {
        text-align: center !important;
        align-items: center !important;
    }
}

@media (max-width: 760px) {
    nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding: 22px 20px;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .nav-links a {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .section-container {
        min-height: auto;
        padding: 155px 18px 56px;
    }

    .private-entry {
        min-height: 64vh;
        padding: 132px 18px 42px;
    }

    .private-entry h1 {
        font-size: 28px;
        line-height: 1.12;
    }

    .private-entry p {
        margin-bottom: 38px;
        font-size: 12px;
        letter-spacing: 1.4px;
    }

    #exposition {
        padding-top: 46px;
    }

    .exhibition-layout {
        gap: 125px;
    }

    .exhibit-item {
        gap: 42px;
    }

    .exhibit-visual {
        height: 58vw;
        min-height: 310px;
    }

    .artwork-canvas {
        width: 84%;
        height: 82%;
    }

    .exhibit-number {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .exhibit-meta {
        align-items: center;
        text-align: center;
    }

    .exhibit-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .exhibit-specs {
        font-size: 14px;
        line-height: 1.65;
        max-width: 520px;
    }

    .gallery-arrow {
        display: none;
    }

    .stock-status {
        font-size: 12px;
        line-height: 1.6;
    }

    .price {
        font-size: 26px;
        margin-bottom: 30px;
        text-align: center;
    }

    .size-selector {
        width: 100%;
        max-width: 320px;
        margin-bottom: 28px;
    }

    .size-selector label {
        text-align: center;
    }

    .size-options {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        max-width: 320px;
        margin: 0 auto;
    }

    .size-btn {
        padding: 11px 0;
        font-size: 12px;
        width: 100%;
    }

    .collect-btn {
        max-width: 340px;
        padding: 20px 18px;
        letter-spacing: 3px;
    }

    .artifact-sizing {
        margin-bottom: 28px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .exact-size-trigger {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .unboxing-protocol,
    .shipping-note {
        max-width: 520px;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-item {
        height: 360px;
    }

    .manifesto-layout {
        min-height: auto;
    }

    .manifesto-text {
        font-size: 18px;
        line-height: 1.7;
    }

    .modal-content {
        padding: 35px 22px !important;
        width: 94% !important;
    }

    .modal-visual-zone {
        padding: 24px !important;
    }

    .modal-canvas {
        height: 340px !important;
    }

    #modal-title {
        font-size: 30px !important;
    }

    #modal-specs {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }

    .image-zoom-overlay {
        padding: 72px 18px 40px;
    }

    .image-zoom-close {
        top: 18px;
        right: 20px;
        font-size: 36px;
    }

    .lockdown-screen {
        padding: 28px 18px !important;
        justify-content: center !important;
    }

    .lockdown-title {
        font-size: 22px !important;
        letter-spacing: 4px !important;
        line-height: 1.25 !important;
    }

    .lockdown-copy {
        font-size: 15px !important;
        line-height: 1.7 !important;
        margin-bottom: 34px !important;
    }

    .private-list-form {
        max-width: 100% !important;
    }

    .private-list-email {
        font-size: 16px !important;
        letter-spacing: 0.5px !important;
    }

    .private-list-submit {
        padding: 16px 18px !important;
        line-height: 1.5 !important;
    }

    .site-footer {
        padding: 28px 16px 34px;
    }

    .footer-copy {
        font-size: 9px;
        line-height: 1.6;
        text-align: center;
    }

    .size-sheet-panel {
        padding: 40px 24px 30px;
    }

    .size-sheet-title {
        font-size: 22px;
    }

    .size-sheet-line {
        gap: 18px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 19px 16px;
        gap: 16px;
    }

    .logo {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .nav-links a {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .section-container {
        padding: 138px 14px 46px;
    }

    .private-entry {
        min-height: 62vh;
        padding: 122px 16px 36px;
    }

    .private-entry h1 {
        font-size: 23px;
    }

    .private-entry p {
        font-size: 11px;
        line-height: 1.65;
    }

    #exposition {
        padding-top: 38px;
    }

    .exhibition-layout {
        gap: 160px;
    }

    .exhibit-visual {
        height: 72vw;
        min-height: 280px;
    }

    .artwork-canvas {
        width: 88%;
        height: 82%;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .gallery-arrow-left {
        left: 8px;
    }

    .gallery-arrow-right {
        right: 8px;
    }

    .exhibit-title {
        font-size: 24px;
        line-height: 1.12;
    }

    .exhibit-specs {
        font-size: 12.5px;
        line-height: 1.65;
    }

    .price {
        font-size: 24px;
        margin-bottom: 26px;
    }

    .size-selector,
    .size-options {
        max-width: 290px;
    }

    .size-btn {
        font-size: 11px;
        padding: 10px 0;
    }

    .artifact-sizing {
        font-size: 9px;
        letter-spacing: 1.6px;
    }

    .archive-item {
        height: 330px;
        padding: 28px 16px;
    }

    .archived-stamp {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .manifesto-title {
        letter-spacing: 4px;
    }

    .manifesto-text {
        font-size: 16px;
    }

    .modal-content {
        padding: 32px 16px !important;
    }

    .modal-canvas {
        height: 260px !important;
    }

    .private-list-email {
        font-size: 14px !important;
    }

    .private-list-status {
        line-height: 1.5 !important;
    }
}
