/* =========================================================================
   VArt design system — from design_handoff_vart/README.md
   No accent colour. No shadows. No radius except circular avatars.
   ========================================================================= */

:root {
    --bg:          #eef0f4;
    --surface:     #ffffff;
    --ink:         #1e2a44;
    --muted:       rgba(30,42,68,.55);
    --placeholder: rgba(30,42,68,.45);
    --hair:        rgba(30,42,68,.18);
    --hair-strong: rgba(30,42,68,.3);
    --hair-dash:   rgba(30,42,68,.4);
    --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Figtree', system-ui, -apple-system, sans-serif;
    --pad-x: 40px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    background: var(--bg);
    color: var(--ink);
    font: 400 12px/1.6 var(--mono);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; transition: color .15s; }
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
p { margin: 0; }
.muted { color: var(--muted); }
.serif { font-family: var(--serif); }
.sans { font-family: var(--sans); }
.hidden { display: none !important; }
.lower { text-transform: lowercase; }

/* ------------------------------------------------------------------ nav */
.topnav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px var(--pad-x); background: var(--surface); border-bottom: 1px solid var(--hair);
    font-size: 12px; gap: 24px;
}
.topnav .brand { display: flex; align-items: baseline; gap: 12px; white-space: nowrap; }
.wordmark { font: 600 26px/1 var(--serif); color: var(--ink); }
.topnav .crumb { color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 320px; }
.topnav .links { display: flex; gap: 26px; }
.topnav .links a { color: var(--muted); padding-bottom: 1px; border-bottom: 1px solid transparent; }
.topnav .links a:hover { color: var(--ink); }
.topnav .links a.is-active { color: var(--ink); border-bottom-color: var(--ink); }
.topnav .right { display: flex; align-items: center; gap: 16px; }
.topnav .search { width: 180px; border: 1px solid var(--hair-strong); background: var(--surface); padding: 8px 12px; font: 400 12px var(--mono); color: var(--ink); outline: none; }
.topnav .search::placeholder { color: var(--placeholder); }
.topnav .search:focus { border-color: var(--ink); }

.mobile-header {
    display: none; align-items: center; justify-content: space-between;
    padding: 12px 18px; background: var(--surface); border-bottom: 1px solid var(--hair); font-size: 12px;
    position: sticky; top: 0; z-index: 20;
}
.mobile-header .brand { display: flex; align-items: baseline; gap: 10px; }
.mobile-header .wordmark { font-size: 24px; }
.mobile-header .crumb { color: var(--muted); }

.tabbar {
    display: none; position: fixed; left: 0; right: 0; bottom: 0; height: 84px; z-index: 30;
    background: var(--surface); border-top: 1px solid var(--hair);
    justify-content: space-around; align-items: flex-start; padding: 14px 12px 0;
    font: 400 11px var(--mono);
}
.tabbar a { color: var(--muted); position: relative; }
.tabbar a.is-active { color: var(--ink); }
.tabbar .plus { width: 44px; height: 44px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-top: -10px; }
.tabbar .dot { position: absolute; top: -4px; right: -8px; width: 6px; height: 6px; background: var(--ink); border-radius: 50%; }

/* ------------------------------------------------------------------ layout */
.page { padding: 0 var(--pad-x); }
.page-head { display: flex; justify-content: space-between; align-items: flex-end; padding: 44px 0 8px; gap: 24px; flex-wrap: wrap; }
.kicker { font-size: 12px; color: var(--muted); }
.title-xl { font: 400 56px/1.05 var(--serif); letter-spacing: -.02em; margin-top: 8px; }
.title-lg { font: 500 44px/1.05 var(--serif); letter-spacing: -.02em; }
.title-md { font: 400 40px/1.05 var(--serif); letter-spacing: -.02em; }
.title-sm { font: 500 28px/1.05 var(--serif); }
.rule-strong { border-bottom: 1px solid var(--ink); padding-bottom: 10px; }
.rule { border-bottom: 1px solid var(--hair); padding-bottom: 10px; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.card { background: var(--surface); border: 1px solid var(--hair); }
.prose { font: 400 16px/1.6 var(--sans); text-wrap: pretty; }
.prose-sm { font: 400 15px/1.6 var(--sans); text-wrap: pretty; }
.prose-xs { font: 400 14px/1.5 var(--sans); }
.grid-main-side { display: grid; grid-template-columns: minmax(0,1fr) 420px; gap: 48px; padding: 40px 0 56px; }
.grid-main-side.w380 { grid-template-columns: minmax(0,1fr) 380px; }
.grid-side-main { display: grid; grid-template-columns: 320px minmax(0,1fr); gap: 56px; padding: 48px 0 56px; }
.grid-side-main.w240 { grid-template-columns: 240px minmax(0,1fr); gap: 40px; padding: 28px 0 56px; }
.grid-side-main.w220 { grid-template-columns: 220px minmax(0,1fr); padding: 44px 0 56px; }
.avatar { border-radius: 50%; display: inline-block; flex: none; object-fit: cover; background: #b9c0cf; }

/* ------------------------------------------------------------------ buttons / chips */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 9px 14px; font: 400 12px/1.2 var(--mono); text-transform: lowercase;
    border: 1px solid var(--hair); background: var(--surface); color: var(--ink);
    transition: background .15s, border-color .15s, color .15s; white-space: nowrap;
}
.btn:hover { border-color: var(--ink); color: var(--ink); }
.btn-solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-solid:hover { background: #1b263e; color: #fff; }
.btn-ghost { border-color: transparent; background: transparent; color: var(--muted); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { border-color: transparent; }
.btn-block { width: 100%; }
.btn.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn[disabled] { opacity: .5; cursor: default; }
.btn-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; font-size: 12px; }
.chip {
    display: inline-block; padding: 8px 12px; border: 1px solid var(--hair); background: var(--surface); color: var(--ink);
    font: 400 12px/1.2 var(--mono); text-transform: lowercase; transition: border-color .15s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip-x { margin-left: 4px; }
.chips-scroll { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.chips-scroll::-webkit-scrollbar { display: none; }
.badge-artist { font-size: 10px; padding: 1px 6px; background: var(--ink); color: #fff; line-height: 1.4; }

/* ------------------------------------------------------------------ forms */
.field { display: flex; flex-direction: column; }
.field > label, .label { font-size: 11px; color: var(--muted); margin-bottom: 6px; text-transform: lowercase; }
.input, .field input[type=text], .field input[type=email], .field input[type=password], .field input[type=number], .field textarea, .field select {
    background: var(--surface); border: 1px solid var(--hair); padding: 11px 14px; width: 100%;
    font: 400 15px/1.5 var(--sans); color: var(--ink); outline: none; resize: vertical; border-radius: 0; -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .input:focus { border-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--placeholder); }
.field textarea { min-height: 110px; }
.field .hint { font-size: 11px; color: var(--muted); margin-top: 6px; }
.form-error { font: 400 14px/1.5 var(--sans); color: var(--ink); border-left: 1px solid var(--ink); padding-left: 12px; }
.form-ok { font: 400 14px/1.5 var(--sans); color: var(--muted); border-left: 1px solid var(--hair); padding-left: 12px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.segmented { display: flex; gap: 1px; background: var(--hair); border: 1px solid var(--hair); font-size: 12px; }
.segmented label { flex: 1; text-align: center; padding: 12px; background: var(--surface); color: var(--ink); cursor: pointer; text-transform: lowercase; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented input:checked + label { background: var(--ink); color: #fff; }

/* toggle 34×18 */
.toggle { display: inline-flex; align-items: center; gap: 0; cursor: pointer; }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle .sw { width: 34px; height: 18px; position: relative; background: var(--surface); border: 1px solid var(--hair); flex: none; }
.toggle .sw::after { content: ''; position: absolute; left: 2px; top: 2px; width: 12px; height: 12px; background: var(--hair); }
.toggle input:checked + .sw { background: var(--ink); border-color: var(--ink); }
.toggle input:checked + .sw::after { left: auto; right: 2px; top: 2px; width: 14px; height: 14px; background: #fff; }
.toggle-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 12px; }
.toggle-row.is-off { color: var(--muted); }

/* checkboxes / radios as glyphs (explore facets) */
.facet { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.facet label { cursor: pointer; display: flex; gap: 6px; align-items: baseline; }
.facet input { position: absolute; opacity: 0; pointer-events: none; }
.facet .g::before { content: '□ '; }
.facet input:checked + .g::before { content: '■ '; }
.facet .r::before { content: '○ '; }
.facet input:checked + .r::before { content: '● '; }
.facet label { color: var(--muted); }
.facet input:checked ~ .g, .facet input:checked ~ .r, .facet input:checked + span { color: var(--ink); }
.facet-head { color: var(--muted); border-bottom: 1px solid var(--hair); padding-bottom: 8px; }

/* ------------------------------------------------------------------ masonry & tiles */
.masonry { columns: 4; column-gap: 24px; }
.masonry-3 { columns: 3; }
.masonry-2 { columns: 2; }
.tile { break-inside: avoid; margin-bottom: 28px; display: block; }
.tile-img { display: block; width: 100%; background: #d4d8e1; }
.tile-img img { width: 100%; height: auto; display: block; }
.tile-ph { width: 100%; }
.tile-cap { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; font: 400 12px/1.6 var(--mono); color: var(--ink); }
.tile-cap .by { color: var(--muted); }
.tile-cap .cnt { color: var(--muted); flex: none; }
.tile-text { padding: 22px 20px; background: var(--surface); border: 1px solid var(--hair); }
.tile-text .ex { font: 400 22px/1.3 var(--serif); text-wrap: pretty; }
.tile:hover .tile-cap { color: var(--ink); }
.thumb { background: #d4d8e1; overflow: hidden; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.strip-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 16px; }
.strip-4 .thumb { height: 120px; }

.hero-img img { display: block; max-width: 100%; width: auto; height: auto; max-height: 720px; }
.hero-img.is-writing { max-height: none; }

/* ------------------------------------------------------------------ comments */
.comments { display: flex; flex-direction: column; gap: 24px; margin-top: 28px; }
.comment { display: flex; gap: 12px; }
.comment.is-reply { padding-left: 40px; }
.comment .body { flex: 1; min-width: 0; }
.comment .who { font-size: 12px; display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap; }
.comment .who .t { color: var(--muted); }
.comment .text { font: 400 15px/1.5 var(--sans); margin-top: 4px; color: var(--ink); white-space: pre-line; overflow-wrap: anywhere; }
.comment .acts { font-size: 11px; color: var(--muted); margin-top: 6px; display: flex; gap: 16px; }
.comment .acts button { background: none; border: 0; padding: 0; color: var(--muted); font: 400 11px var(--mono); }
.comment .acts button:hover, .comment .acts button.is-on { color: var(--ink); }
.composer { margin-top: 18px; padding: 14px; background: var(--surface); border: 1px solid var(--hair); }
.composer textarea { width: 100%; border: 0; padding: 0; font: 400 15px/1.5 var(--sans); color: var(--ink); outline: none; resize: vertical; min-height: 24px; background: transparent; }
.composer textarea::placeholder { color: var(--placeholder); }
.composer .foot { display: flex; justify-content: flex-end; margin-top: 16px; gap: 8px; align-items: center; }
.reply-form { margin-top: 10px; }
.reply-form textarea { width: 100%; border: 1px solid var(--hair); padding: 8px 10px; font: 400 14px/1.5 var(--sans); background: var(--surface); outline: none; min-height: 44px; }
.show-more { font-size: 12px; color: var(--muted); border-top: 1px solid var(--hair); padding-top: 14px; background: none; border-left: 0; border-right: 0; border-bottom: 0; width: 100%; text-align: left; }
.show-more:hover { color: var(--ink); }

/* ------------------------------------------------------------------ stats */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.stats-3 { grid-template-columns: 1fr 1fr 1fr; }
.stats > div { background: var(--surface); padding: 14px; }
.stats .n { font: 500 26px/1 var(--serif); }
.stats .l { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ------------------------------------------------------------------ artist card */
.artist-card { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--hair); font-size: 12px; }
.artist-card .meta { color: var(--muted); margin-top: 2px; }
.artist-card .act { margin-left: auto; }

/* ------------------------------------------------------------------ member cards */
.members-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; padding: 16px 0 56px; }
.member-card { background: var(--surface); border: 1px solid var(--hair); padding: 18px; display: flex; flex-direction: column; }
.member-card .head { display: flex; align-items: center; gap: 12px; }
.member-card .nm { font: 500 20px/1.1 var(--serif); }
.member-card .sub { font-size: 11px; color: var(--muted); margin-top: 3px; }
.member-card .thumbs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 16px; }
.member-card .thumbs .thumb { height: 90px; }
.member-card .foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; font-size: 11px; color: var(--muted); }
.member-row { display: none; }

/* ------------------------------------------------------------------ series */
.series-work { display: grid; grid-template-columns: 60px minmax(0,1fr) 320px; gap: 24px; }
.series-work .thumb img { max-height: 480px; width: auto; max-width: 100%; }
.series-work .idx { font-size: 12px; color: var(--muted); }
.series-work .ttl { font: 500 26px/1.1 var(--serif); }
.series-work .meta { color: var(--muted); margin-top: 6px; font-size: 12px; }
.quote { margin-top: 18px; padding-left: 12px; border-left: 1px solid var(--hair); font: 400 14px/1.5 var(--sans); }
.quote .by { font: 400 11px var(--mono); color: var(--muted); }

/* ------------------------------------------------------------------ settings */
.settings-nav { font-size: 12px; display: flex; flex-direction: column; gap: 12px; }
.settings-nav a { color: var(--muted); padding-left: 13px; border-left: 1px solid transparent; }
.settings-nav a.is-active { color: var(--ink); border-left-color: var(--ink); padding-left: 12px; }
.settings-nav .logout { margin-top: 20px; }
.setting-row { display: grid; grid-template-columns: 220px minmax(0,1fr) auto; gap: 24px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--hair); font-size: 12px; }
.setting-row .d { color: var(--muted); font: 400 14px/1.5 var(--sans); }

/* ------------------------------------------------------------------ auth split */
.auth-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-left { background: var(--surface); padding: 40px 64px; display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.auth-right { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; background: #d4d8e1; overflow: hidden; }
.auth-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-tag { position: absolute; top: 40px; right: 40px; font-size: 11px; background: var(--bg); padding: 4px 8px; }
.featured-quote { position: relative; background: var(--bg); border: 1px solid var(--hair); padding: 20px; max-width: 420px; }
.featured-quote .q { font: italic 400 24px/1.3 var(--serif); }
.featured-quote .by { font-size: 11px; color: var(--muted); margin-top: 12px; }

/* ------------------------------------------------------------------ explore search box */
.searchbox { margin-top: 12px; background: var(--surface); border: 1px solid var(--ink); padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.searchbox input { flex: 1; border: 0; outline: none; background: transparent; font: 400 34px/1 var(--serif); color: var(--ink); min-width: 0; padding: 0; }
.searchbox input::placeholder { color: var(--placeholder); }
.searchbox .hint { font: 400 12px var(--mono); color: var(--muted); white-space: nowrap; background: none; border: 0; padding: 0; }
.artist-chips { display: flex; gap: 24px; margin-top: 10px; font-size: 12px; flex-wrap: wrap; }
.artist-chip { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--hair); padding: 10px 14px; }
.artist-chip .m { color: var(--muted); }

/* ------------------------------------------------------------------ share */
.dropzone { border: 1px dashed var(--hair-dash); background: var(--surface); padding: 20px; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.dropzone .f { height: 150px; position: relative; background: #d4d8e1; overflow: hidden; }
.dropzone .f img { width: 100%; height: 100%; object-fit: cover; }
.dropzone .f .cov { position: absolute; left: 8px; top: 8px; font-size: 10px; background: var(--ink); color: #fff; padding: 2px 6px; }
.dropzone .f .rm { position: absolute; right: 6px; top: 6px; font-size: 11px; background: var(--surface); border: 1px solid var(--hair); padding: 1px 6px; color: var(--muted); }
.dropzone .f .mk { position: absolute; left: 6px; bottom: 6px; font-size: 10px; background: var(--surface); border: 1px solid var(--hair); padding: 1px 6px; color: var(--muted); }
.dropzone .add { height: 150px; border: 1px solid var(--hair); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--muted); text-align: center; line-height: 1.6; cursor: pointer; }
.dropzone.is-over { border-color: var(--ink); }
.tagbox { display: flex; gap: 8px; flex-wrap: wrap; font-size: 12px; align-items: center; }
.tagbox input { border: 0; background: transparent; outline: none; font: 400 12px var(--mono); color: var(--ink); min-width: 100px; padding: 8px 0; }
.tagbox input::placeholder { color: var(--muted); }
.preview-tile { margin-top: 18px; width: 270px; }
.legal { font-size: 11px; color: var(--muted); margin-top: 12px; line-height: 1.7; }

/* ------------------------------------------------------------------ activity */
.activity { display: flex; flex-direction: column; }
.activity .row { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--hair); align-items: flex-start; font-size: 12px; }
.activity .row.is-new { background: linear-gradient(90deg, rgba(255,255,255,.7), transparent); }
.activity .row .t { color: var(--muted); margin-left: auto; white-space: nowrap; }
.activity .row .q { font: 400 14px/1.5 var(--sans); color: var(--muted); margin-top: 3px; }

.empty { padding: 48px 0; color: var(--muted); font: 400 15px/1.6 var(--sans); }
.sticky-bottom { display: none; }
.footer { padding: 32px var(--pad-x) 40px; font-size: 11px; color: var(--muted); }

/* ------------------------------------------------------------------ responsive */
@media (max-width: 1024px) {
    :root { --pad-x: 28px; }
    .masonry { columns: 3; }
    .grid-main-side, .grid-main-side.w380 { grid-template-columns: 1fr; gap: 40px; }
    .grid-side-main, .grid-side-main.w240, .grid-side-main.w220 { grid-template-columns: 1fr; gap: 32px; }
    .members-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .series-work { grid-template-columns: 48px minmax(0,1fr); }
    .series-work .info { grid-column: 2; }
    .topnav .crumb { display: none; }
    .topnav .search { width: 140px; }
    .auth-split { grid-template-columns: 1fr; }
    .auth-right { min-height: 320px; }
}

@media (max-width: 767px) {
    :root { --pad-x: 18px; }
    body { font-size: 11px; padding-bottom: 100px; }
    .topnav { display: none; }
    .mobile-header, .tabbar { display: flex; }
    .page-head { padding: 22px 0 0; }
    .kicker { font-size: 11px; }
    .title-xl { font-size: 34px; margin-top: 6px; }
    .title-lg { font-size: 30px; }
    .title-md { font-size: 26px; }
    .title-sm { font-size: 22px; }
    .masonry, .masonry-3, .masonry-2 { columns: 2; column-gap: 12px; }
    .tile { margin-bottom: 18px; }
    .tile-cap { flex-direction: column; gap: 0; font-size: 11px; line-height: 1.55; margin-top: 7px; }
    .tile-cap .cnt { flex: 1; }
    .tile-text { padding: 14px 12px; }
    .tile-text .ex { font-size: 16px; }
    .chip, .btn { padding: 7px 10px; font-size: 11px; }
    .btn-stack { flex: 1; text-align: center; padding: 13px 0; }
    .grid-main-side, .grid-main-side.w380, .grid-side-main, .grid-side-main.w240, .grid-side-main.w220 { padding: 18px 0 40px; gap: 26px; }
    .prose { font-size: 14px; line-height: 1.55; }
    .prose-sm { font-size: 14px; }
    .comments { gap: 16px; margin-top: 16px; }
    .comment.is-reply { padding-left: 36px; }
    .comment .text { font-size: 14px; }
    .stats > div { padding: 10px; }
    .stats .n { font-size: 20px; }
    .stats .l { font-size: 10px; }
    .members-grid { display: none; }
    .member-row { display: flex; gap: 12px; align-items: center; background: var(--surface); border: 1px solid var(--hair); padding: 12px; }
    .member-row .nm { font: 500 17px/1.1 var(--serif); }
    .member-row .sub { font-size: 10px; color: var(--muted); margin-top: 3px; }
    .member-row .thumbs { display: flex; gap: 3px; }
    .member-row .thumb { width: 34px; height: 34px; }
    .members-list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; padding-bottom: 40px; }
    .series-work { display: block; }
    .series-work .idx { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 11px; }
    .series-work .ttl { font-size: 20px; margin-top: 8px; }
    .quote { margin-top: 8px; padding-left: 10px; font-size: 13px; }
    .setting-row { grid-template-columns: 1fr auto; padding: 13px 0; }
    .setting-row .d { display: none; }
    .settings-nav { flex-direction: row; flex-wrap: wrap; gap: 8px 16px; }
    .settings-nav a, .settings-nav a.is-active { border-left: 0; padding-left: 0; border-bottom: 1px solid transparent; }
    .settings-nav a.is-active { border-bottom-color: var(--ink); }
    .settings-nav .logout { margin-top: 0; }
    .form-grid-2, .form-grid-3 { grid-template-columns: 1fr 1fr; gap: 8px; }
    .field input, .field textarea, .input { font-size: 14px; padding: 11px 12px; }
    .field > label, .label { font-size: 10px; margin-bottom: 5px; }
    .field textarea { min-height: 70px; }
    .dropzone { grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 0; border: 0; background: transparent; }
    .dropzone .f, .dropzone .add { height: 100px; }
    .dropzone .add { border: 1px dashed var(--hair-dash); background: var(--surface); }
    .preview-tile { width: 100%; }
    .searchbox { padding: 12px 14px; }
    .searchbox input { font-size: 24px; }
    .artist-chips { gap: 8px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
    .artist-chip { padding: 8px 10px; font-size: 11px; flex: none; }
    .auth-left { padding: 24px 18px 40px; justify-content: flex-start; }
    .auth-right { display: none; }
    .sticky-bottom { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 31; padding: 12px 18px 40px; background: var(--surface); border-top: 1px solid var(--hair); gap: 8px; align-items: center; }
    .sticky-bottom .input-inline { flex: 1; height: 44px; border: 1px solid var(--hair); padding: 0 14px; font: 400 14px var(--sans); background: var(--surface); outline: none; }
    .sticky-bottom .btn { height: 44px; padding: 0 14px; }
    .strip-4 { grid-template-columns: repeat(2,1fr); gap: 8px; }
    .strip-4 .thumb { height: 100px; }
    #facets.is-collapsed { display: none !important; }
    .hero-img { margin: 0 calc(-1 * var(--pad-x)); }
    .hero-img img { max-height: 380px; width: 100%; object-fit: cover; }
    .footer { display: none; }
    .desktop-only { display: none !important; }
}
@media (min-width: 768px) { .mobile-only { display: none !important; } }
