body { background: var(--bg-page); color: var(--fg-1); font-family: var(--font-body); margin: 0; }
img { max-width: 100%; }
a, a:visited { color: var(--fg-1); text-decoration: none; }
a:hover { color: var(--link-hover); }
.site-header { border-bottom: 1px solid var(--border-default); position: sticky; top: 0; background: var(--bg-page); z-index: 50; }
.header-container { display: flex; align-items: center; justify-content: space-between; padding: var(--space-5) var(--gutter); gap: var(--space-4); flex-wrap: wrap; }
.wordmark { font-family: var(--font-display); font-weight: var(--fw-black); font-size: 20px; letter-spacing: var(--ls-tight); text-transform: uppercase; background: none; border: none; cursor: pointer; color: var(--fg-1); padding: 0; }
.site-nav { display: flex; gap: var(--space-5); flex-wrap: wrap; }
.site-nav button { font-family: inherit; background: none; border: none; font-size: 13px; font-weight: var(--fw-bold); color: var(--fg-3); text-transform: uppercase; letter-spacing: var(--ls-wide); padding: 2px 0; border-bottom: 2px solid transparent; cursor: pointer; }
.site-nav button:hover { color: var(--fg-1); }
.site-nav button.active { color: var(--fg-1); border-bottom-color: var(--accent); }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.rule { border: none; border-top: 1px solid var(--border-default); margin: 0; }
.page { display: none; }
.page.active { display: block; }
.home-banner { width: 100%; aspect-ratio: 16/3; overflow: hidden; }
.home-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.masthead { padding: var(--space-6) 0 var(--space-5); }
.masthead h1 { font-family: var(--font-display); font-weight: var(--fw-black); font-size: clamp(30px, 5vw, 52px); letter-spacing: var(--ls-tight); margin: 0 0 var(--space-3); }
.masthead p { font-size: var(--fs-body-lg); color: var(--fg-2); max-width: 680px; margin: 0; }
.eyebrow { font-size: var(--fs-caption); text-transform: uppercase; letter-spacing: var(--ls-caps); font-weight: var(--fw-bold); color: var(--fg-3); }
.hero-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 760px) { .hero-pair { grid-template-columns: 1fr; } }
.hero-pair figure { margin: 0; display: flex; flex-direction: column; align-items: center; }
.hero-pair img { max-height: 360px; width: auto; max-width: 100%; object-fit: contain; border: 1px solid var(--border-default); background: var(--grey-90); }
.hero-pair figcaption { font-size: 13px; color: var(--fg-3); margin-top: 10px; line-height: 1.5; }

.hero-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 900px) { .hero-trio { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hero-trio { grid-template-columns: 1fr; } }
.hero-trio figure { margin: 0; display: flex; flex-direction: column; }
.hero-trio img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border: 1px solid var(--border-default); background: var(--grey-90); }
.hero-trio figcaption { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; }
.hero-trio .hero-caption-text { font-size: 13px; color: var(--fg-3); line-height: 1.5; }
.section { padding: var(--space-8) 0; }
.prose p { font-size: var(--fs-body-lg); color: var(--fg-2); margin: 0 0 var(--space-4); max-width: 720px; }
.section-head { margin-bottom: var(--space-5); }
.section-head h2 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h5); margin: 0; letter-spacing: var(--ls-tight); text-transform: uppercase; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-8); align-items: start; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid img { width: 100%; border: 1px solid var(--border-default); background: var(--grey-90); }
.artist-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-8); align-items: center; }
@media (max-width: 760px) { .artist-grid { grid-template-columns: 1fr; } }
.artist-grid .prose p { font-size: var(--fs-body); }
.artist-photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); align-items: start; }
@media (max-width: 560px) { .artist-photo-pair { grid-template-columns: 1fr; } }
.artist-photo-pair img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--border-default); background: var(--grey-90); display: block; }
.artist-photo-pair figure { margin: 0; }
.artist-photo-pair figcaption { font-size: 12px; color: var(--fg-3); margin-top: 8px; line-height: 1.4; }
.creds-columns { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--space-8); }
@media (max-width: 820px) { .creds-columns { grid-template-columns: 1fr; } }
.creds-col h3 { font-size: var(--fs-h5); font-family: var(--font-display); font-weight: var(--fw-black); letter-spacing: var(--ls-tight); margin: 0 0 var(--space-4); }
.credentials { list-style: none; margin: 0 0 var(--space-6); padding: 0; font-size: var(--fs-body); color: var(--fg-1); }
.credentials li { padding: 10px 0; border-top: 1px solid var(--border-default); }
.credentials li:last-child { border-bottom: 1px solid var(--border-default); }
.contact-line { font-size: 15px; margin-bottom: var(--space-6); }
.contact-line a { font-weight: var(--fw-bold); }
.link-list { list-style: none; margin: 0 0 var(--space-6); padding: 0; max-width: 480px; }
.link-list li { border-top: 1px solid var(--border-default); }
.link-list li:last-child { border-bottom: 1px solid var(--border-default); }
.link-list a { display: flex; justify-content: space-between; align-items: center; padding: 13px 2px; font-size: 15px; font-weight: var(--fw-bold); color: var(--fg-1); }
.link-list a:hover { color: var(--accent); }
.genre-section { padding-top: var(--space-7); margin-bottom: var(--space-7); border-top: 1px solid var(--border-default); }
.genre-section:first-of-type { padding-top: 0; border-top: none; }
.genre-section .prose { margin-bottom: var(--space-6); }
.grid .thumb a { display: block; width: 100%; height: 100%; }
.grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-3); }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: repeat(2, 1fr); } }
.grid .thumb { aspect-ratio: 1/1; overflow: hidden; background: var(--grey-95); border: 1px solid var(--border-default); }
.grid .thumb img { width: 100%; height: 100%; object-fit: cover; }
.site-footer { background: var(--black); color: var(--white); margin-top: var(--space-9); }
.site-footer .container { padding: var(--space-7) var(--gutter); display: flex; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; align-items: center; }
.site-footer .wordmark { color: var(--white); }
.site-footer a { color: var(--grey-70); font-size: 13px; }
.site-footer a:hover { color: var(--white); }
