:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f0f0f0;
    --gray-200: #e0e0e0;
    --gray-400: #9a9a9a;
    --gray-500: #737373;
    --gray-600: #525252;
    --accent-nature: #1e90ff;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --max-width: 82rem;
    --thumb-ratio: 5 / 4;
    --glow-soft: 0 0 0 rgba(0, 0, 0, 0);
    --glow-hover: 0 0 28px rgba(0, 0, 0, 0.07);
    --glow-image: 0 0 36px rgba(0, 0, 0, 0.09);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.875rem;
    background: var(--white);
    color: var(--black);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.gallery-protected,
.gallery-protected img {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ── Header ── */
.site-header {
    border-bottom: 1px solid var(--gray-100);
}

.site-header--sticky {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
}

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.75rem 1.25rem 1.35rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-brand {
    min-width: 0;
}

.site-logo {
    margin: 0;
    line-height: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.signature-logo-wrap {
    position: relative;
    display: inline-block;
    max-width: min(100%, 18rem);
    transition: filter 0.45s var(--ease-out), transform 0.45s var(--ease-out);
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.site-brand:hover .signature-logo-wrap {
    filter:
        drop-shadow(0 0 12px rgba(0, 0, 0, 0.08))
        drop-shadow(0 2px 6px rgba(0, 0, 0, 0.04));
    transform: translateY(-1px);
}

.signature-logo-wrap img {
    display: block;
    width: 100%;
    height: auto;
    max-height: clamp(2.1rem, 7vw, 3rem);
    object-fit: contain;
    object-position: left center;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.signature-shield {
    position: absolute;
    inset: 0;
    z-index: 1;
    cursor: default;
}

.artist-subtitle {
    margin: 0.22rem 0 0;
    font-size: 0.46rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-400);
    opacity: 0.85;
}

.site-nav {
    display: none;
    gap: 1.5rem;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.site-nav a {
    position: relative;
    padding-bottom: 0.15rem;
    transition: color 0.25s var(--ease-out), text-shadow 0.35s var(--ease-out);
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}

.site-nav a:hover {
    color: var(--black);
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.site-nav a.is-active {
    color: var(--black);
}

.site-nav a.is-active::after {
    transform: scaleX(1);
}

/* ── Section tabs (mobile + sub-nav) ── */
.section-nav {
    display: flex;
    gap: 0.35rem;
    margin: 0 -1.25rem 1rem;
    padding: 0 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    flex-wrap: nowrap;
}

.section-nav__tab {
    flex: 1;
    min-width: 0;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    padding: 0.65rem 0.3rem;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.section-nav__tab:hover,
.section-nav__tab.is-active {
    color: var(--black);
}

.section-nav__tab.is-active {
    border-bottom-color: var(--black);
}

.section-nav__label--short {
    display: none;
}

@media (max-width: 390px) {
    .section-nav__tab {
        font-size: 0.56rem;
        letter-spacing: 0.05em;
        padding: 0.65rem 0.15rem;
    }

    .section-nav__label--full {
        display: none;
    }

    .section-nav__label--short {
        display: inline;
    }
}

.section-subnav[hidden] {
    display: none !important;
}

.section-subnav {
    display: flex;
    gap: 0.5rem;
    margin: 0 -1.25rem 1rem;
    padding: 0 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    flex-wrap: nowrap;
}

.section-subnav__tab {
    flex: 1;
    text-align: center;
    font-family: inherit;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    padding: 0.65rem 0.35rem;
    cursor: pointer;
    transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.section-subnav__tab:hover,
.section-subnav__tab.is-active {
    color: var(--black);
}

.section-subnav__tab.is-disabled,
.section-subnav__tab:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.section-subnav__tab.is-active {
    border-bottom-color: var(--black);
}

.section-subnav--market {
    flex-direction: column;
    gap: 0;
}

.section-subnav__row {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.section-subnav__row + .section-subnav__row {
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px solid var(--rule, rgba(0, 0, 0, 0.08));
}

.section-subnav--wrap {
    flex-wrap: wrap;
    row-gap: 0.35rem;
}

.section-subnav--wrap .section-subnav__tab {
    flex: 0 1 auto;
    min-width: 7.5rem;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
}

.section-subnav__select {
    display: none;
    width: 100%;
    font-family: inherit;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    padding: 0.55rem 1.75rem 0.55rem 0.65rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%239a9a9a' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
    cursor: pointer;
}

@media (max-width: 767px) {
    .section-subnav {
        margin-bottom: 0.65rem;
    }

    .section-subnav__tab {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .section-subnav--wrap .section-subnav__tab {
        display: none;
    }

    .section-subnav--wrap .section-subnav__select {
        display: block;
    }
}

/* ── Photography / Other — $PHOTO promo ── */
.section-promo {
    margin: 0 0 1.25rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.section-promo__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.section-promo__title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
}

.section-promo__text {
    margin: 0.45rem 0 0;
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.55;
    max-width: 36rem;
}

.section-promo__wallet {
    margin: 0.15rem 0 0;
    font-size: 0.82rem;
    color: var(--muted, #666);
}

.section-promo__ens {
    font-size: 0.76rem;
    opacity: 0.85;
}

.section-promo__token {
    margin: 0.55rem 0 0;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.section-promo__symbol {
    font-weight: 600;
    color: var(--black);
}

.section-promo__contract {
    margin: 0.25rem 0 0;
    font-size: 0.52rem;
    font-family: ui-monospace, monospace;
    color: var(--gray-500);
    word-break: break-all;
    line-height: 1.4;
}

.section-promo__tokens {
    margin-top: 0.75rem;
}

.section-promo__item {
    padding-top: 0.75rem;
}

.section-promo__item + .section-promo__item {
    margin-top: 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--gray-100);
}

.section-promo__collector {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--muted, #666);
}

.section-promo__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.65rem;
}

.section-promo__connect:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.section-promo__item .section-promo__cta {
    margin-top: 0.55rem;
}

.section-promo[hidden] {
    display: none !important;
}

@media (min-width: 768px) {
    .section-nav {
        display: none;
    }
}

.hero--text-only .hero__veil {
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.92) 100%
    );
}

.hero--text-only .hero__media {
    background: var(--gray-50);
}

.site-nav__tip {
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    background: none;
    border: none;
    padding: 0 0 0.15rem;
    cursor: pointer;
    position: relative;
    transition: color 0.25s var(--ease-out), text-shadow 0.35s var(--ease-out);
}

.site-nav__tip:hover {
    color: var(--black);
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
}

.section-nav__tab--tip {
    font-family: inherit;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    flex: 0 0 auto;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
}

.section-nav__tab--tip.is-active,
.section-nav__tab--tip:hover {
    border-bottom-color: transparent;
    color: var(--black);
}

/* ── Tip modal ── */
.tip-modal[hidden] {
    display: none !important;
}

body.tip-open {
    overflow: hidden;
}

.tip-modal {
    position: fixed;
    inset: 0;
    z-index: 450;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.tip-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.tip-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(40rem, 100%);
    max-height: min(90vh, 720px);
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    padding: 1.35rem 1.25rem 1.5rem;
}

.tip-modal__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-500);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.tip-modal__title {
    margin: 0 2rem 0.35rem 0;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
}

.tip-modal__lead {
    margin: 0 0 1.1rem;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.55;
}

.tip-modal__wallets {
    display: grid;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .tip-modal__wallets {
        gap: 0.65rem;
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .tip-modal__dialog {
        width: min(52rem, 100%);
    }

    .tip-modal__wallets {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.55rem;
    }
}

.tip-wallet {
    display: grid;
    grid-template-columns: 6.75rem minmax(0, 1fr);
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    column-gap: 0.55rem;
    row-gap: 0.12rem;
    padding: 0.55rem;
    align-items: start;
    border: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.tip-wallet__label {
    margin: 0;
    grid-column: 2;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tip-wallet__hint {
    margin: 0 0 0.2rem;
    grid-column: 2;
    font-size: 0.62rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.35;
}

.tip-wallet__qr {
    display: block;
    grid-row: 1 / -1;
    grid-column: 1;
    width: 6.75rem;
    height: 6.75rem;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 3px;
    margin: 0;
    object-fit: contain;
}

.tip-wallet__address {
    margin: 0 0 0.3rem;
    grid-column: 2;
    font-size: 0.52rem;
    font-family: ui-monospace, monospace;
    color: var(--gray-600);
    word-break: break-all;
    line-height: 1.35;
}

.tip-wallet__domains {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.35rem;
    margin: 0 0 0.28rem;
}

.tip-wallet__domains::before {
    content: 'Base names';
    width: 100%;
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.tip-wallet__domains .tip-copy-pill,
.tip-modal__names-pills .tip-copy-pill {
    font-size: 0.5rem;
    padding: 0.28rem 0.55rem;
    letter-spacing: 0.04em;
}

.tip-wallet .btn--small {
    grid-column: 2;
    justify-self: start;
    padding: 0.35rem 0.55rem;
    font-size: 0.62rem;
}

.tip-modal__names {
    margin: 0.65rem 0 0;
    padding-top: 0.55rem;
    border-top: 1px solid var(--gray-100);
}

.tip-modal__names-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.tip-modal__names-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.35rem;
}

@media (max-width: 767px) {
    .tip-modal {
        padding: 0.5rem;
    }

    .tip-modal__dialog {
        padding: 0.8rem 0.7rem 0.85rem;
        max-height: none;
        overflow-y: visible;
    }

    .tip-modal__title {
        font-size: 1rem;
        margin-bottom: 0.15rem;
    }

    .tip-modal__lead {
        margin-bottom: 0.5rem;
        font-size: 0.66rem;
        line-height: 1.32;
    }

    .tip-modal__wallets {
        gap: 0.5rem;
    }
}

@media (min-width: 768px) {
    .tip-modal__dialog {
        padding: 1.35rem 1.25rem 1.5rem;
    }

    .tip-modal__title {
        font-size: 1.15rem;
    }

    .tip-modal__lead {
        margin-bottom: 1.1rem;
        font-size: 0.78rem;
        line-height: 1.55;
    }
}

.tip-modal .tip-wallet {
    padding: 0.55rem;
}

@media (min-width: 960px) {
    .tip-modal .tip-wallet {
        padding: 0.5rem;
    }

    .tip-modal .tip-wallet__qr {
        width: 5.5rem;
        height: 5.5rem;
    }

    .tip-modal .tip-wallet__label {
        font-size: 0.6rem;
    }

    .tip-modal .tip-wallet__hint {
        font-size: 0.56rem;
    }

    .tip-modal .tip-wallet__address {
        font-size: 0.48rem;
    }
}

.site-header__rule {
    height: 1px;
    background: var(--black);
    opacity: 0.85;
}

@media (min-width: 768px) {
    .site-nav {
        display: flex;
    }
}

/* ── Main ── */
.main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem 3rem;
}

/* ── Hero ── */
.hero {
    position: relative;
    margin: 0 -1.25rem 2rem;
    min-height: clamp(18rem, 52vw, 28rem);
    display: grid;
    align-items: end;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-100);
}

.hero__media {
    position: absolute;
    inset: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    pointer-events: none;
    -webkit-user-drag: none;
}

.hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.94) 28%,
        rgba(255, 255, 255, 0.72) 48%,
        rgba(255, 255, 255, 0.2) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 44rem;
    margin: 0 auto;
    padding: 1.35rem 1.25rem 1.85rem;
}

.hero__brand {
    text-align: center;
}

.hero__title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4.5vw, 2.65rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero__tagline {
    margin: 0.4rem 0 0;
    font-size: clamp(0.68rem, 1.6vw, 0.78rem);
    font-weight: 500;
    color: #2e2e2e;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero__prose {
    margin-top: 1.15rem;
    text-align: left;
}

.hero__description {
    margin: 0;
    font-size: clamp(0.76rem, 1.45vw, 0.84rem);
    font-weight: 300;
    color: #4f4f4f;
    line-height: 1.82;
    max-width: 42rem;
}

.hero__description p {
    margin: 0;
}

.hero__description p + p {
    margin-top: 0.85rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-start;
    margin-top: 1.2rem;
}

.hero__actions .btn {
    font-weight: 400;
    letter-spacing: 0.06em;
}

@media (min-width: 900px) {
    .hero__content {
        padding-bottom: 2rem;
    }
}

/* ── About ── */
.about-section {
    max-width: 36rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.about-section__title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--black);
}

.about-section__body {
    margin-top: 1rem;
}

.about-section__body p {
    margin: 0 0 1rem;
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.about-section__body p:last-child {
    margin-bottom: 0;
}

.about-section__social {
    margin-top: 1.35rem;
}

.social-links__label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.social-links__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.social-links__link:hover {
    color: var(--black);
    border-color: var(--gray-200);
    background: var(--white);
}

.about-section__marketplaces {
    margin-top: 1.35rem;
}

.marketplace-links__lead {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.55;
    max-width: 36rem;
}

.marketplace-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.marketplace-links__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.marketplace-links__link:hover {
    color: var(--black);
    border-color: var(--gray-200);
    background: var(--white);
}

.marketplace-links__link--primary {
    color: var(--black);
    border-color: var(--black);
    background: var(--white);
}

.about-section__wallets {
    margin-top: 0.85rem;
}

.wallet-names__hint {
    margin: 0 0 0.5rem;
    font-size: 0.62rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.45;
    max-width: 32rem;
}

.wallet-names {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.wallet-names__pill {
    font-family: inherit;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    cursor: pointer;
    transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.wallet-names__pill:hover {
    color: var(--black);
    border-color: var(--gray-200);
    background: var(--white);
}

.about-section__link {
    margin: 1.5rem 0 0;
}

/* ── Filters panel ── */
.filters-panel {
    margin-bottom: 1.75rem;
    padding: 1rem 1.1rem 0.9rem;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
    scroll-margin-top: 5rem;
}

.filters-panel__head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--gray-100);
}

.filters-panel__title {
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.filters-panel__hint {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-muted, #8a8a8a);
}

.filters-panel__count {
    font-size: 0.62rem;
    color: var(--gray-500);
    font-weight: 300;
}

.filters-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.65rem;
}

.filters-row[hidden] {
    display: none !important;
}

.filters-row__label {
    flex: 0 0 4.5rem;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.filters-search {
    flex: 1;
    min-width: 10rem;
    padding: 0.35rem 0.55rem;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 300;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.3s var(--ease-out);
}

.filters-search:focus {
    outline: none;
    border-color: var(--gray-400);
    box-shadow: var(--glow-hover);
}

.color-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    flex: 1;
}

.color-filter {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--swatch);
    cursor: pointer;
    padding: 0;
    transition: transform 0.25s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.color-filter--group {
    width: 1.55rem;
    height: 1.55rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
}

.color-filter:hover {
    transform: scale(1.1);
    box-shadow: 0 0 14px color-mix(in srgb, var(--swatch) 55%, transparent);
}

.color-filter.is-active {
    transform: scale(1.15);
    box-shadow:
        0 0 0 2px var(--white),
        0 0 0 3px var(--black),
        0 0 16px color-mix(in srgb, var(--swatch) 60%, transparent);
}

.filters__select {
    appearance: none;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    padding: 0.3rem 1.6rem 0.3rem 0.55rem;
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--black);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239a9a9a' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.45rem center;
    cursor: pointer;
    transition: border-color 0.25s, box-shadow 0.35s var(--ease-out);
}

.filters__select:hover,
.filters__select:focus {
    border-color: var(--gray-400);
    outline: none;
    box-shadow: var(--glow-hover);
}

.filters__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.filter-tag {
    padding: 0.25rem 0.6rem;
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: var(--white);
    color: var(--gray-500);
    cursor: pointer;
    transition:
        background 0.25s var(--ease-out),
        color 0.25s var(--ease-out),
        border-color 0.25s var(--ease-out),
        box-shadow 0.35s var(--ease-out),
        transform 0.25s var(--ease-out);
}

.filter-tag:hover {
    border-color: var(--gray-400);
    color: var(--black);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.filter-tag.is-active {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.14);
}

.filters__reset {
    margin-left: auto;
    padding: 0.25rem 0.35rem;
    font-family: inherit;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s, text-shadow 0.3s;
}

.filters__reset:hover {
    color: var(--black);
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
}

/* ── Grid ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.35rem;
}

@media (min-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-grid--loading,
.gallery-grid--busy {
    opacity: 0.72;
    pointer-events: none;
}

/* Empty Saved/filter state: reserve height so About/Marketplaces does not jump up */
.gallery-grid--empty {
    min-height: min(42vh, 22rem);
    align-content: start;
}

.gallery-empty,
.gallery-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--gray-500);
    font-size: 0.78rem;
}

.gallery-error {
    color: #991b1b;
}

/* ── Card ── */
.nft-card--highlight {
    outline: 2px solid var(--black);
    outline-offset: 3px;
    transition: outline-color 0.4s var(--ease-out);
}

.nft-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 3px;
    overflow: hidden;
    transition:
        border-color 0.35s var(--ease-out),
        box-shadow 0.45s var(--ease-out),
        transform 0.45s var(--ease-out);
}

.nft-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--glow-image);
    transform: translateY(-2px);
}

.nft-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: var(--thumb-ratio);
    background: var(--gray-50);
    overflow: hidden;
}

.nft-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(
        ellipse at 50% 40%,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    pointer-events: none;
}

.nft-card:hover .nft-image-wrap::before {
    opacity: 1;
    background: radial-gradient(
        ellipse at 50% 35%,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(255, 255, 255, 0.04) 45%,
        rgba(255, 255, 255, 0) 72%
    );
}

.nft-image-wrap img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
    filter: saturate(1) brightness(1);
    transition: filter 0.55s var(--ease-out);
}

.nft-card:hover .nft-image-wrap img {
    filter: saturate(1.04) brightness(1.02);
}

.nft-card__view {
    position: absolute;
    left: 50%;
    bottom: 0.75rem;
    z-index: 3;
    transform: translateX(-50%) translateY(0.35rem);
    opacity: 0;
    padding: 0.38rem 0.85rem;
    font-family: inherit;
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    cursor: pointer;
    transition:
        opacity 0.3s var(--ease-out),
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
}

.nft-card:hover .nft-card__view,
.nft-card__view:focus-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    box-shadow: var(--glow-hover);
}

.nft-image-shield {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: default;
    pointer-events: none;
}

.nft-card__body {
    padding: 0.75rem 0.85rem 0.85rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nft-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.nft-card__engage {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.nft-like,
.nft-save,
.nft-share,
.nft-tip {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.2rem 0.35rem;
    font-family: inherit;
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--gray-400);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 999px;
    cursor: pointer;
    transition:
        color 0.2s var(--ease-out),
        border-color 0.2s var(--ease-out),
        background 0.2s var(--ease-out);
}

.nft-like__icon,
.nft-save__icon,
.nft-share__icon,
.nft-tip__icon {
    font-size: 0.72rem;
    line-height: 1;
}

.nft-share:hover,
.nft-tip:hover {
    color: var(--black);
    border-color: var(--gray-300);
    background: var(--white);
}

/* ── Share popover ── */
.share-popover[hidden] {
    display: none !important;
}

.share-popover {
    position: fixed;
    z-index: 1200;
    width: min(16.5rem, calc(100vw - 1.5rem));
    padding: 0.85rem 0.9rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.share-popover__eyebrow {
    margin: 0;
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.share-popover__work {
    margin: 0.25rem 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.35;
}

.share-popover__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
}

.share-popover__btn {
    display: block;
    width: 100%;
    text-align: center;
    font-family: inherit;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 3px;
    padding: 0.45rem 0.35rem;
    cursor: pointer;
    text-decoration: none;
    transition:
        color 0.2s var(--ease-out),
        border-color 0.2s var(--ease-out),
        background 0.2s var(--ease-out);
}

.share-popover__btn:hover {
    color: var(--black);
    border-color: var(--gray-300);
    background: var(--white);
}

.nft-like.is-active {
    color: var(--black);
    border-color: var(--gray-300);
    background: var(--white);
}

.nft-like.is-active .nft-like__icon {
    color: #c53030;
}

.nft-card__mood {
    color: var(--gray-400);
    margin-left: 0.35rem;
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
}

.nft-save.is-active {
    color: var(--black);
    border-color: var(--gray-300);
    background: var(--white);
}

.nft-save.is-active .nft-save__icon {
    color: var(--black);
}

.nft-card__palette {
    margin-bottom: 0.55rem;
}

.btn--block {
    width: 100%;
}

.nft-card__title {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
    transition: text-shadow 0.35s var(--ease-out);
}

.nft-card:hover .nft-card__title {
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
}

.nft-card__token {
    margin: 0.15rem 0 0;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    font-weight: 300;
}

.nft-card__supply {
    margin: 0.35rem 0 0;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    font-weight: 500;
    line-height: 1.35;
}

.nft-card--auction .nft-image-wrap {
    position: relative;
}

.nft-card__badge {
    position: absolute;
    top: 0.55rem;
    left: 0.55rem;
    z-index: 2;
    padding: 0.2rem 0.45rem;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(0, 0, 0, 0.72);
    border-radius: 2px;
    pointer-events: none;
}

.nft-card__price {
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--black);
}

.nft-card__price-value {
    transition: text-shadow 0.35s var(--ease-out);
}

.nft-card:hover .nft-card__price-value {
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
}

.nft-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.55rem;
}

.nft-card__actions--dual {
    flex-direction: column;
    gap: 0.4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.32rem 0.65rem;
    font-family: inherit;
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.25s var(--ease-out),
        color 0.25s var(--ease-out),
        border-color 0.25s var(--ease-out),
        box-shadow 0.35s var(--ease-out),
        transform 0.25s var(--ease-out);
}

.btn--primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn--primary:hover {
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.btn--ghost {
    background: var(--white);
    color: var(--gray-600);
    border-color: var(--gray-200);
}

.btn--ghost:hover {
    color: var(--black);
    border-color: var(--gray-400);
    box-shadow: var(--glow-hover);
}

.btn--small {
    padding: 0.28rem 0.55rem;
    font-size: 0.56rem;
}

.color-dots {
    display: flex;
    gap: 0.28rem;
    flex-shrink: 0;
    padding-top: 0.1rem;
}

.color-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.nft-card:hover .color-dot {
    transform: scale(1.12);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}

.nft-card__description {
    margin: 0 0 0.55rem;
    font-size: 0.68rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.5;
    flex: 1;
}

.nft-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28rem;
    margin-bottom: 0.55rem;
}

.nft-tag {
    padding: 0.12rem 0.45rem;
    font-size: 0.56rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    background: var(--gray-50);
    color: var(--gray-400);
    border-radius: 2px;
    transition: background 0.25s, color 0.25s, box-shadow 0.3s;
}

.nft-card:hover .nft-tag {
    color: var(--gray-600);
}

.nft-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--gray-100);
    font-size: 0.58rem;
}

.nft-card__category {
    padding: 0.18rem 0.4rem;
    background: var(--black);
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: box-shadow 0.35s var(--ease-out);
}

.nft-card:hover .nft-card__category {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.18);
}

.nft-card__opensea {
    color: var(--gray-400);
    letter-spacing: 0.05em;
    font-weight: 300;
    white-space: nowrap;
    transition: color 0.25s, text-shadow 0.35s var(--ease-out);
}

.nft-card__opensea:hover {
    color: var(--black);
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.15);
}

.nft-card__opensea span::after {
    content: ' ↗';
    font-size: 0.52rem;
}

/* ── Lightbox ── */
.lightbox[hidden] {
    display: none !important;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.88);
    cursor: pointer;
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.lightbox__figure {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    max-width: min(960px, 100%);
    width: auto;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.lightbox__image {
    display: block;
    max-width: min(92vw, 960px);
    max-height: min(82vh, 900px);
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 2px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    pointer-events: none;
    -webkit-user-drag: none;
}

.lightbox__caption {
    margin-top: 0.75rem;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

/* ── Footer ── */
.site-footer {
    margin-top: 2rem;
    text-align: center;
    font-weight: 300;
}

.site-footer__copy {
    margin: 0;
    font-size: 0.56rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-400);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}