.brand-copy {
    display: grid;
    gap: 0;
    line-height: 1.05;
}

.brand-copy small {
    color: var(--muted);
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.catalog-page {
    background: #f4f6f8;
}

.catalog-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    padding: 58px clamp(18px, 4vw, 58px) 48px;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(10, 23, 30, .97), rgba(15, 63, 59, .88)),
        url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1800&q=80') center 42% / cover;
}

.catalog-hero > div:first-child {
    max-width: 850px;
}

.catalog-hero h1 {
    max-width: 820px;
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 4.2vw, 4.5rem);
    line-height: 1.02;
}

.catalog-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.05rem;
}

.trust-note {
    flex: 0 0 245px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
}

.trust-note strong,
.trust-note span {
    display: block;
}

.trust-note span {
    margin-top: 6px;
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
}

.catalog-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 34px clamp(18px, 4vw, 58px) 76px;
}

.filter-panel {
    align-self: start;
    position: sticky;
    top: 94px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(17, 24, 39, .07);
}

.filter-heading,
.results-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.filter-heading {
    margin-bottom: 18px;
}

.filter-heading a {
    color: var(--brand);
    font-size: .86rem;
    font-weight: 800;
}

.filter-panel form {
    display: grid;
    gap: 15px;
}

.filter-panel label {
    font-size: .88rem;
}

.filter-check {
    margin: 3px 0;
}

.filter-help {
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .78rem;
}

.catalog-results {
    min-width: 0;
}

.results-toolbar {
    min-height: 64px;
    margin-bottom: 20px;
}

.results-toolbar p,
.results-toolbar h2 {
    margin: 0;
}

.results-toolbar h2 {
    font-size: 1.55rem;
}

.sort-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: .82rem;
}

.sort-form select {
    width: auto;
    min-width: 150px;
}

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

.catalog-card {
    display: grid;
    grid-template-rows: 220px 1fr;
    min-width: 0;
    box-shadow: 0 12px 32px rgba(17, 24, 39, .08);
    transition: transform .18s ease, box-shadow .18s ease;
}

.catalog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(17, 24, 39, .13);
}

.artist-photo {
    min-height: 220px;
    align-content: space-between;
    justify-items: stretch;
    padding: 14px;
    background-color: #18383a;
    background-position: center;
    background-size: cover;
}

.poster-top,
.poster-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.poster-top span {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: var(--brand-dark);
    font-size: .72rem;
    font-weight: 900;
}

.poster-top .featured-mark {
    margin-left: auto;
    background: #ffedd5;
    color: #9a3412;
}

.poster-caption {
    align-items: end;
    color: #fff;
}

.poster-caption span {
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.poster-caption strong {
    max-width: 58%;
    text-align: right;
    font-size: 1rem;
}

.catalog-card .artist-body {
    grid-template-rows: auto auto auto auto auto;
}

.catalog-card h3 {
    font-size: 1.12rem;
}

.card-description {
    min-height: 66px;
}

.catalog-card .meta-list dd {
    overflow-wrap: anywhere;
    font-size: .88rem;
}

.catalog-card .price {
    color: var(--brand-dark);
}

.travel-note,
.privacy-note {
    color: var(--muted);
    font-size: .76rem;
}

.travel-note {
    margin: -2px 0 0;
}

.privacy-note {
    display: block;
    margin-top: -7px;
    text-align: center;
}

.empty-state {
    display: grid;
    justify-items: start;
    min-height: 390px;
    align-content: center;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.empty-state > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--night);
    color: #fff;
    font-weight: 900;
}

.empty-state h2 {
    margin: 18px 0 6px;
}

.empty-state p {
    max-width: 560px;
    margin: 0 0 22px;
    color: var(--muted);
}

.catalog-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 54px clamp(18px, 4vw, 58px);
    background: #0f262b;
    color: #fff;
}

.catalog-cta h2 {
    margin: 0 0 8px;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.catalog-cta p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.footer-pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #fff;
}

.footer-pro p {
    margin: 8px 0 0;
}

.footer-pro nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 1180px) {
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .catalog-hero {
        display: grid;
    }

    .trust-note {
        max-width: 420px;
    }

    .catalog-shell {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        position: static;
    }
}

@media (max-width: 660px) {
    .topbar nav {
        width: 100%;
        gap: 12px;
    }

    .topbar nav a:not(.button) {
        font-size: .82rem;
    }

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

    .results-toolbar,
    .catalog-cta,
    .footer-pro {
        align-items: stretch;
        flex-direction: column;
    }

    .sort-form label {
        align-items: stretch;
        display: grid;
    }

    .sort-form select {
        width: 100%;
    }
}

.home-art {
    min-height: 190px;
    place-items: end start;
    padding: 16px;
    background-position: center;
    background-size: cover;
}

.home-art span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: var(--brand-dark);
    font-size: .76rem;
    font-weight: 900;
}
