:root {
    color-scheme: light;
    --ink: #151515;
    --muted: #6a6560;
    --paper: #fbfaf8;
    --panel: #ffffff;
    --line: #e5dfd8;
    --accent: #de3c7e;
    --accent-strong: #b91f61;
    --green: #1f7a68;
    --gold: #b98628;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    background: var(--paper);
    color: var(--ink);
}

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

h1,
h2,
p,
dl {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.2rem, 4vw, 5rem);
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 1.25rem;
}

.brand-mark,
.brand-strip {
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.brand-strip {
    align-self: flex-start;
    border-bottom: 3px solid var(--accent);
    color: var(--ink);
    padding-bottom: .25rem;
    margin-bottom: 3rem;
}

.empty-state {
    min-height: 100vh;
    display: grid;
    place-content: center;
    padding: 2rem;
    text-align: center;
}

.empty-state h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

.empty-state p,
.description,
.muted,
.meta-line {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.artwork-view {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: clamp(1.5rem, 4vw, 4rem);
    padding: clamp(1rem, 3vw, 3rem);
}

.artwork-stage {
    min-height: calc(100vh - 2rem);
    display: grid;
    place-items: center;
    background: #1c1a18;
    border-radius: 8px;
    overflow: hidden;
}

.artwork-stage img {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 2rem);
    object-fit: contain;
}

.detail-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1rem, 2vw, 2rem) 0;
}

.eyebrow {
    color: var(--accent-strong);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: .9rem;
    text-transform: uppercase;
}

.metadata {
    display: grid;
    gap: .9rem;
    margin: 2rem 0 0;
}

.metadata div {
    border-top: 1px solid var(--line);
    display: grid;
    gap: .25rem;
    padding-top: .8rem;
}

.metadata dt {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.metadata dd {
    margin: 0;
    font-size: 1rem;
}

.metadata-compact {
    gap: .4rem;
    margin-top: .75rem;
}

.metadata-compact div {
    border: 0;
    padding: 0;
}

.metadata-compact dt {
    display: none;
}

.metadata-compact dd {
    color: var(--muted);
    font-size: .92rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.5rem;
}

.tag-row span {
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--green);
    font-size: .9rem;
    padding: .35rem .75rem;
}

.collection-hero {
    min-height: 72vh;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(300px, 1.05fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(1.25rem, 4vw, 4rem);
}

.collection-copy {
    max-width: 680px;
}

.collection-lead {
    aspect-ratio: 4 / 3;
    background: #21201f;
    border-radius: 8px;
    overflow: hidden;
}

.collection-lead img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    padding: 0 clamp(1.25rem, 4vw, 4rem) 4rem;
}

.artwork-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.artwork-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #24211f;
    object-fit: contain;
}

.artwork-card div {
    padding: 1rem;
}

.artwork-card h2 {
    font-size: 1.1rem;
    line-height: 1.25;
    margin-bottom: .5rem;
}

@media (max-width: 860px) {
    .artwork-view,
    .collection-hero {
        grid-template-columns: 1fr;
    }

    .artwork-stage {
        min-height: 55vh;
    }

    .artwork-stage img {
        max-height: 70vh;
    }

    .brand-strip {
        margin-bottom: 1.5rem;
    }
}
