/* Classic artist page — magazine, black/white, generous whitespace. */

:root {
    --paper: #f5f3ee;
    --ink: #111111;
    --ink-soft: #4a4a4a;
    --rule: #111111;
    --rule-soft: #cdcac3;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); }
body {
    font-family: "Times New Roman", Times, "Iowan Old Style", Georgia, serif;
    font-size: 18px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration: none; }

.page {
    max-width: 720px;
    margin: 0 auto;
    padding: 28px 22px 80px;
}

.masthead {
    border-bottom: 2px solid var(--rule);
    padding-bottom: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}

/* Two-column balance: URL left · metadata + share clustered right */
.masthead-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px 28px;
    flex-wrap: nowrap;
}

.masthead-slug {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
    letter-spacing: 0.15em;
    line-height: 1.35;
    font-weight: 600;
    text-align: left;
}

.masthead-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 min(52%, 22rem);
    min-width: 0;
    gap: 12px 16px;
}

.masthead-meta {
    margin: 0;
    padding: 0;
    font-size: 13px;
    letter-spacing: 0.13em;
    line-height: 1.4;
    color: var(--ink-soft);
    text-align: right;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.masthead-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.copy-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px 10px;
    min-width: 40px;
    min-height: 40px;
    border: 1px solid var(--rule-soft);
    border-radius: 6px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    line-height: 0;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.copy-page-link:hover {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}
.copy-page-link:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}
.copy-page-link-icon { display: block; }

.copy-page-link-msg {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: none;
    font-weight: 600;
    color: var(--ink-soft);
    white-space: nowrap;
}
.copy-page-link-msg:empty {
    display: none;
}

@media (max-width: 520px) {
    .masthead-row {
        gap: 10px 14px;
    }
    .masthead-slug {
        font-size: 12px;
        letter-spacing: 0.12em;
    }
    .masthead-meta {
        font-size: 11px;
        letter-spacing: 0.11em;
    }
    .masthead-right {
        flex-basis: min(60%, 14rem);
        gap: 8px 10px;
    }
    .copy-page-link {
        padding: 7px 8px;
        min-width: 38px;
        min-height: 38px;
    }
}

@media (max-width: 380px) {
    .masthead-slug {
        font-size: 11px;
    }
    .masthead-meta {
        font-size: 10px;
    }
}

.hero {
    margin: 0 -22px 40px;
    border-bottom: 2px solid var(--rule);
}
.hero img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-name {
    margin: 0;
    padding: 22px 22px 18px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 9vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.hero-sub {
    padding: 0 22px 22px;
    font-style: italic;
    color: var(--ink-soft);
}

.section { padding: 28px 0; border-bottom: 1px solid var(--rule-soft); }
.section:has(.embed-stack) { padding-top: 36px; padding-bottom: 40px; }
.section:last-child { border-bottom: none; }
.section h2 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 16px;
    color: var(--ink);
}

.bio { font-size: 19px; line-height: 1.55; max-width: 60ch; }

.section:has(.embed-stack) h2 { margin-bottom: 22px; }

.embed-stack > * + * { margin-top: 28px; }
/* Bandcamp’s chrome + track list reads cramped when stacked — extra air above it */
.embed-stack > * + iframe.bandcamp-embed { margin-top: 44px; }
.embed-stack iframe { display: block; border: 0; }
/* Bandcamp draws a tall/square layout inside the iframe — keep full column width and don’t clip the box */
.embed-stack iframe.bandcamp-embed {
    display: block;
    border: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.embed-stack iframe.bandcamp-embed + * { margin-top: 44px; }

.linkcard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1px solid var(--rule);
    text-decoration: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    background: transparent;
}
.linkcard:hover { background: var(--ink); color: var(--paper); }
.linkcard .arrow { font-weight: 400; }

.shows { width: 100%; border-collapse: collapse; }
.shows tr { border-bottom: 1px solid var(--rule-soft); }
.shows tr:last-child { border-bottom: none; }
.shows td {
    padding: 14px 0;
    vertical-align: top;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
}
.shows .date { width: 110px; font-weight: 700; }
.shows .venue { font-weight: 600; }
.shows .city { color: var(--ink-soft); display: block; font-weight: 400; }
.shows .ticket { text-align: right; white-space: nowrap; }

.merch-grid, .social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.contact {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
}
.contact strong { display: block; text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; color: var(--ink-soft); margin-bottom: 4px; }

.colophon {
    margin-top: 60px;
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.colophon a { color: var(--ink-soft); }

@media (min-width: 640px) {
    .merch-grid, .social-grid { grid-template-columns: 1fr 1fr; }
}
