/* ===========================================================
   BuyHumanArt.com -- Core Stylesheet
   =========================================================== */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

:root {
    --header-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bha-font-body, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    color: var(--bha-color-text, #1A1A2E);
    background: var(--bha-color-surface, #FFFFFF);
    line-height: 1.6;
    padding-top: var(--header-height);
}

h1, h2, h3, h4 {
    font-family: var(--bha-font-heading, 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--bha-color-text, #1A1A2E);
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.85em 1.8em;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--bha-radius-sm, 4px);
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn--gold {
    background: var(--bha-color-gold, #C89B3C);
    color: #16100A;
}
.btn--gold:hover { background: var(--bha-color-gold-light, #D4A954); }
.btn--outline-white {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: #FFFFFF; }
.btn--outline-navy {
    background: transparent;
    color: var(--bha-color-navy, #0D1721);
    border-color: var(--bha-color-navy, #0D1721);
}
.btn--outline-navy:hover { background: var(--bha-color-navy, #0D1721); color: #fff; }
.btn--navy {
    background: var(--bha-color-navy, #0D1721);
    color: #fff;
}
.btn--navy:hover { background: var(--bha-color-navy-mid, #162030); }
.btn--sm { padding: 0.5em 1.1em; font-size: 0.8rem; }
.btn--lg { padding: 1em 2.2em; font-size: 1.05rem; }
.btn--xl { padding: 1.2em 2.8em; font-size: 1.15rem; }

/* ---------- HEADER / NAV ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-height);
    background: var(--bha-color-navy, #0D1721);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header__inner {
    max-width: var(--bha-content-width, 1360px);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}
.site-logo {
    font-family: var(--bha-font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}
.site-logo__primary { color: #fff; }
.site-logo__tld { color: var(--bha-color-gold, #C89B3C); }

.nav-hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 6px 4px;
}
.nav-hamburger__bar {
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-hamburger__label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: #fff;
    margin-top: 2px;
    font-weight: 600;
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
}
.site-nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
}
.site-nav__item {
    position: relative;
    /* Bridge the gap to the dropdown so hover doesn't break */
    padding-bottom: 14px;
    margin-bottom: -14px;
}
.site-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.88);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.site-nav__link:hover,
.site-nav__link.is-active {
    color: #fff;
    border-bottom-color: var(--bha-color-gold, #C89B3C);
}
.nav-chevron {
    width: 8px; height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    opacity: 0.7;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bha-color-navy-mid, #162030);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--bha-radius-md, 8px);
    padding: 10px 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    z-index: 1100;
}
.site-nav__item--has-dropdown:hover .nav-dropdown,
.site-nav__item--has-dropdown.is-open .nav-dropdown,
.site-nav__item--has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown__item a {
    display: block;
    padding: 10px 20px;
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown__item a:hover {
    background: rgba(255,255,255,0.06);
    color: var(--bha-color-gold-light, #D4A954);
}

.site-nav__cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ---------- MOBILE NAV OVERLAY ---------- */
@media (max-width: 980px) {
    .nav-hamburger { display: flex; }
    .site-nav {
        position: fixed;
        top: var(--header-height);
        left: 0; right: 0; bottom: 0;
        background: var(--bha-color-navy, #0D1721);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 24px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        gap: 0;
    }
    .site-nav.is-open { transform: translateX(0); }
    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    .site-nav__item {
        width: 100%;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .site-nav__link {
        width: 100%;
        justify-content: space-between;
        padding: 16px 4px;
        font-size: 0.95rem;
    }
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(255,255,255,0.03);
        box-shadow: none;
        border: none;
        width: 100%;
        min-width: 0;
        margin-bottom: 8px;
    }
    .site-nav__item.is-open .nav-dropdown { display: block; }
    .nav-chevron { transition: transform 0.2s ease; }
    .site-nav__item.is-open .nav-chevron { transform: rotate(225deg); }
    .site-nav__cta-group {
        flex-direction: column;
        margin-top: 20px;
        gap: 10px;
    }
    .site-nav__cta-group .btn { width: 100%; }
}

/* ---------- PAGE WRAPPER ---------- */
.page-wrapper {
    max-width: var(--bha-content-width, 1360px);
    margin: 0 auto;
    padding: 40px 24px 80px;
}
.content-main { width: 100%; }

.breadcrumbs__list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--bha-color-text-muted, #7A7A9A);
    margin-bottom: 24px;
}
.breadcrumbs__item:not(:last-child)::after { content: '/'; margin-left: 8px; }
.breadcrumbs__item a:hover { color: var(--bha-color-gold-dark, #A07B2A); }
.breadcrumbs__item.is-current { color: var(--bha-color-text, #1A1A2E); }

.page-header { margin-bottom: 40px; }
.page-header--centered { text-align: center; }
.page-header__title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-header__subhead { font-size: 1.1rem; color: var(--bha-color-text-mid, #4A4A68); max-width: 700px; }
.page-header--centered .page-header__subhead { margin: 0 auto; }
.page-intro { font-size: 1.1rem; max-width: 720px; margin-bottom: 32px; color: var(--bha-color-text-mid, #4A4A68); }
.page-intro--centered { margin: 0 auto 32px; text-align: center; }
.page-body { max-width: 760px; margin-bottom: 32px; font-size: 1.05rem; }
.page-note { max-width: 760px; margin: 24px 0; color: var(--bha-color-text-muted, #7A7A9A); font-style: italic; }
.page-mission { max-width: 760px; margin-bottom: 32px; font-size: 1.05rem; }

.page-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.page-toolbar__count { color: var(--bha-color-text-muted, #7A7A9A); font-size: 0.9rem; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(13,23,33,0.96) 0%, rgba(13,23,33,0.82) 45%, rgba(22,32,48,0.55) 100%),
        radial-gradient(circle at 80% 30%, rgba(200,155,60,0.12), transparent 50%),
        linear-gradient(180deg, #0D1721 0%, #14202E 100%);
    z-index: 0;
}
.hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--bha-content-width, 1360px);
    margin: 0 auto;
    width: 100%;
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.hero__text { max-width: 620px; }
.hero__headline {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 24px;
}
.hero__headline--accent { color: var(--bha-color-gold, #C89B3C); }
.hero__subhead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.82);
    max-width: 520px;
    margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__badge-card { flex-shrink: 0; display: none; }
@media (min-width: 1100px) {
    .hero__badge-card { display: block; }
}
.verified-badge-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,155,60,0.35);
    border-radius: var(--bha-radius-lg, 16px);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 320px;
    backdrop-filter: blur(6px);
}
.verified-badge-card__icon { flex-shrink: 0; }
.verified-badge-card__text strong { display: block; color: var(--bha-color-gold, #C89B3C); font-size: 1.05rem; margin-bottom: 6px; }
.verified-badge-card__text p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.verified-badge-card__link { font-size: 0.85rem; font-weight: 600; color: var(--bha-color-gold-light, #D4A954); }

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: var(--bha-color-navy-mid, #162030);
    color: #fff;
    padding: 36px 0;
}
.trust-bar__inner {
    max-width: var(--bha-content-width, 1360px);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.trust-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 0 8px;
    border-left: 1px solid rgba(255,255,255,0.1);
}
.trust-bar__item:first-child { border-left: none; }
.trust-bar__icon { color: var(--bha-color-gold, #C89B3C); }
.trust-bar__content strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.trust-bar__content span { font-size: 0.78rem; color: rgba(255,255,255,0.65); line-height: 1.4; }

@media (max-width: 980px) {
    .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
    .trust-bar__item { border-left: none; }
}

/* ---------- SECTIONS ---------- */
.section { padding: 80px 0; }
.section--alt { background: var(--bha-color-surface-alt, #F9F6F0); }
.section--dark { background: var(--bha-color-navy, #0D1721); color: #fff; }
.section--dark .section__heading { color: #fff; }
.section--dark .section__body { color: rgba(255,255,255,0.78); }
.section--dark .section__subhead { color: var(--bha-color-gold, #C89B3C); }
.section--hero-dark { background: linear-gradient(135deg, #0D1721, #1A2535); }

.section__inner {
    max-width: var(--bha-content-width, 1360px);
    margin: 0 auto;
    padding: 0 24px;
}
.section__inner--narrow { max-width: 760px; }
.section__inner--centered { text-align: center; }
.section__inner--two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 860px) {
    .section__inner--two-col { grid-template-columns: 1fr; }
}

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}
.section__heading {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}
.section__heading--xl { font-size: clamp(2rem, 4vw, 2.8rem); text-transform: none; }
.section__view-all {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bha-color-gold-dark, #A07B2A);
}
.section--dark .section__view-all { color: var(--bha-color-gold, #C89B3C); }
.section__subhead { font-size: 1.1rem; color: var(--bha-color-gold-dark, #A07B2A); font-weight: 600; margin-bottom: 16px; }
.section__body { font-size: 1.1rem; color: var(--bha-color-text-mid, #4A4A68); margin-bottom: 24px; }

.section__col--badge { display: flex; justify-content: center; }
.verified-badge-display { text-align: center; }
.verified-badge-display__ring {
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(200,155,60,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid rgba(200,155,60,0.3);
}
.verified-badge-display__ring svg { width: 72px; height: 72px; }
.verified-badge-display__label { color: var(--bha-color-gold, #C89B3C); font-weight: 600; letter-spacing: 0.04em; }
.verified-badge-display--inline { margin-bottom: 20px; }
.verified-badge-display--inline .verified-badge-display__ring { width: 90px; height: 90px; }
.verified-badge-display--inline .verified-badge-display__ring svg { width: 48px; height: 48px; }

.feature-list { display: grid; gap: 14px; }
.feature-list li {
    padding-left: 28px;
    position: relative;
    font-size: 1.02rem;
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 14px; height: 14px;
    border: 2px solid var(--bha-color-gold, #C89B3C);
    border-radius: 50%;
}

/* ---------- GRIDS ---------- */
.artist-grid, .artwork-grid, .collections-grid, .journal-grid {
    display: grid;
    gap: 28px;
}
.artist-grid { grid-template-columns: repeat(6, 1fr); }
.artwork-grid { grid-template-columns: repeat(4, 1fr); }
.collections-grid { grid-template-columns: repeat(3, 1fr); }
.journal-grid { grid-template-columns: repeat(3, 1fr); }
.artist-grid--directory { grid-template-columns: repeat(4, 1fr); }
.journal-grid--index { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1180px) {
    .artist-grid, .artist-grid--directory { grid-template-columns: repeat(3, 1fr); }
    .artwork-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
    .artist-grid, .artist-grid--directory, .artwork-grid, .collections-grid, .journal-grid, .journal-grid--index {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .artist-grid, .artist-grid--directory, .artwork-grid, .collections-grid, .journal-grid, .journal-grid--index {
        grid-template-columns: 1fr;
    }
}

/* ---------- ARTIST CARD ---------- */
.artist-card { display: flex; flex-direction: column; }
.artist-card__image {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--bha-radius-md, 8px);
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--bha-color-surface-dark, #F2EDE6);
}
.artist-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #E2DDD6, #F2EDE6);
}
.artist-card__image img { width: 100%; height: 100%; object-fit: cover; }
.artist-card__verified-badge {
    position: absolute;
    bottom: 10px; left: 10px;
    background: rgba(13,23,33,0.85);
    border-radius: 20px;
    padding: 4px 10px 4px 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.artist-card__verified-badge svg { width: 18px; height: 18px; }
.artist-card__name { font-size: 1.05rem; font-weight: 600; margin-bottom: 2px; }
.artist-card__name a:hover { color: var(--bha-color-gold-dark, #A07B2A); }
.artist-card__medium { font-size: 0.85rem; color: var(--bha-color-text-muted, #7A7A9A); }
.artist-card__location { font-size: 0.8rem; color: var(--bha-color-text-muted, #7A7A9A); }
.artist-card__commission-tag {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--bha-color-gold-dark, #A07B2A);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---------- ARTWORK CARD ---------- */
.artwork-card { display: flex; flex-direction: column; }
.artwork-card__image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--bha-radius-md, 8px);
    overflow: hidden;
    margin-bottom: 14px;
}
.artwork-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(150deg, #E8E0D2, #C8B68F);
}
.artwork-card__badge {
    position: absolute;
    top: 10px; right: 10px;
    background: rgba(13,23,33,0.85);
    border-radius: 50%;
    padding: 5px;
}
.artwork-card__badge svg { width: 20px; height: 20px; display: block; }
.artwork-card__sold-tag {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--bha-color-navy, #0D1721);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}
.artwork-card--sold .artwork-card__placeholder { filter: grayscale(0.4); opacity: 0.7; }
.artwork-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.artwork-card__title a:hover { color: var(--bha-color-gold-dark, #A07B2A); }
.artwork-card__artist { font-size: 0.85rem; color: var(--bha-color-text-mid, #4A4A68); margin-bottom: 2px; }
.artwork-card__artist a:hover { color: var(--bha-color-gold-dark, #A07B2A); }
.artwork-card__meta { font-size: 0.78rem; color: var(--bha-color-text-muted, #7A7A9A); margin-bottom: 6px; }
.artwork-card__price { font-weight: 700; color: var(--bha-color-text, #1A1A2E); }

/* ---------- COLLECTION CARD ---------- */
.collection-card__link { display: block; }
.collection-card__image {
    aspect-ratio: 16 / 10;
    border-radius: var(--bha-radius-md, 8px);
    background: linear-gradient(135deg, #162030, #C89B3C);
    margin-bottom: 16px;
}
.collection-card__title { font-size: 1.3rem; margin-bottom: 6px; }
.collection-card__link:hover .collection-card__title { color: var(--bha-color-gold-dark, #A07B2A); }
.collection-card__tagline { color: var(--bha-color-text-mid, #4A4A68); font-size: 0.95rem; }

/* ---------- JOURNAL CARD ---------- */
.journal-card__image {
    aspect-ratio: 16 / 10;
    border-radius: var(--bha-radius-md, 8px);
    background: linear-gradient(135deg, #F2EDE6, #C89B3C 180%);
    margin-bottom: 16px;
}
.journal-card__date { font-size: 0.78rem; color: var(--bha-color-text-muted, #7A7A9A); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.journal-card__title { font-size: 1.2rem; margin-bottom: 10px; }
.journal-card__title a:hover { color: var(--bha-color-gold-dark, #A07B2A); }
.journal-card__summary { font-size: 0.92rem; color: var(--bha-color-text-mid, #4A4A68); margin-bottom: 10px; }
.journal-card__readmore { font-size: 0.85rem; font-weight: 600; color: var(--bha-color-gold-dark, #A07B2A); }

/* ---------- ARTIST PROFILE ---------- */
.artist-profile__header {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
@media (max-width: 780px) {
    .artist-profile__header { grid-template-columns: 1fr; }
}
.artist-profile__image { position: relative; }
.artist-profile__placeholder {
    aspect-ratio: 1/1;
    border-radius: var(--bha-radius-lg, 16px);
    background: linear-gradient(135deg, #E2DDD6, #F2EDE6);
}
.artist-profile__badge {
    position: absolute;
    bottom: 14px; left: 14px;
    background: rgba(13,23,33,0.88);
    border-radius: 24px;
    padding: 6px 14px 6px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
}
.artist-profile__badge svg { width: 22px; height: 22px; }
.artist-profile__name { font-size: 2.2rem; margin-bottom: 6px; }
.artist-profile__location { color: var(--bha-color-text-muted, #7A7A9A); margin-bottom: 16px; }
.artist-profile__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.artist-profile__facts { display: flex; gap: 32px; margin-bottom: 24px; flex-wrap: wrap; }
.artist-profile__fact { display: flex; flex-direction: column; }
.artist-profile__fact strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--bha-color-text-muted, #7A7A9A); margin-bottom: 4px; }
.artist-profile__section { margin-bottom: 40px; max-width: 760px; }
.artist-profile__section h2 { font-size: 1.4rem; margin-bottom: 14px; }
.artist-profile__statement { border-left: 3px solid var(--bha-color-gold, #C89B3C); padding-left: 20px; font-style: italic; font-size: 1.1rem; }

.tag-chip {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bha-color-surface-alt, #F9F6F0);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--bha-color-text-mid, #4A4A68);
}

/* ---------- ARTWORK SINGLE ---------- */
.artwork-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
@media (max-width: 860px) {
    .artwork-single { grid-template-columns: 1fr; }
}
.artwork-single__visual { position: relative; }
.artwork-single__placeholder {
    aspect-ratio: 4/5;
    border-radius: var(--bha-radius-lg, 16px);
    background: linear-gradient(150deg, #E8E0D2, #C8B68F);
}
.artwork-single__badge {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(13,23,33,0.88);
    border-radius: 24px;
    padding: 6px 14px 6px 8px;
    display: flex; align-items: center; gap: 8px;
    color: #fff; font-size: 0.8rem; font-weight: 600;
}
.artwork-single__badge svg { width: 22px; height: 22px; }
.artwork-single__sold-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--bha-color-navy, #0D1721);
    color: #fff; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 3px;
}
.artwork-single__title { font-size: 2rem; margin-bottom: 6px; }
.artwork-single__artist { color: var(--bha-color-text-mid, #4A4A68); margin-bottom: 24px; font-size: 1.1rem; }
.artwork-single__artist a { color: var(--bha-color-gold-dark, #A07B2A); font-weight: 600; }
.artwork-single__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.artwork-single__facts dt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--bha-color-text-muted, #7A7A9A); margin-bottom: 2px; }
.artwork-single__facts dd { font-weight: 600; }
.artwork-single__price { font-size: 1.6rem; font-weight: 700; margin-bottom: 24px; }
.artwork-single__ctas { margin-bottom: 32px; }
.artwork-single__section { margin-bottom: 28px; }
.artwork-single__section h2 { font-size: 1.2rem; margin-bottom: 10px; }

/* ---------- COLLECTION SINGLE ---------- */
.collection-single__header { max-width: 760px; margin-bottom: 32px; }
.collection-single__title { font-size: 2.2rem; margin-bottom: 10px; }
.collection-single__tagline { font-size: 1.2rem; color: var(--bha-color-gold-dark, #A07B2A); font-weight: 600; margin-bottom: 16px; }
.collection-single__description { font-size: 1.05rem; color: var(--bha-color-text-mid, #4A4A68); }
.collection-single__curator-note {
    border-left: 3px solid var(--bha-color-gold, #C89B3C);
    padding-left: 20px;
    font-style: italic;
    font-size: 1.1rem;
    max-width: 760px;
    margin-bottom: 48px;
}
.collection-single__section { margin-bottom: 48px; }
.collection-single__section h2 { font-size: 1.4rem; margin-bottom: 20px; }

/* ---------- JOURNAL ARTICLE ---------- */
.journal-article { max-width: 760px; margin: 0 auto; }
.journal-article__header { text-align: center; margin-bottom: 32px; }
.journal-article__date { font-size: 0.85rem; color: var(--bha-color-text-muted, #7A7A9A); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.journal-article__title { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 16px; }
.journal-article__summary { font-size: 1.15rem; color: var(--bha-color-text-mid, #4A4A68); }
.journal-article__visual {
    aspect-ratio: 16/9;
    border-radius: var(--bha-radius-lg, 16px);
    background: linear-gradient(135deg, #162030, #C89B3C);
    margin-bottom: 32px;
}
.journal-article__body { font-size: 1.08rem; margin-bottom: 32px; }
.journal-article__body strong { color: var(--bha-color-text, #1A1A2E); }
.journal-article__cta { margin-bottom: 32px; }
.journal-article__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.journal-article__related h2 { font-size: 1.3rem; margin-bottom: 20px; }

/* ---------- GLOSSARY ---------- */
.glossary-jumplinks {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bha-color-border, #E2DDD6);
}
.glossary-jumplinks a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    background: var(--bha-color-surface-alt, #F9F6F0);
}
.glossary-jumplinks a:hover { background: var(--bha-color-gold, #C89B3C); color: #fff; }
.glossary-letter-section { margin-bottom: 40px; }
.glossary-letter-heading {
    font-size: 1.6rem;
    color: var(--bha-color-gold-dark, #A07B2A);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bha-color-border, #E2DDD6);
}
.glossary-term-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 700px) { .glossary-term-grid { grid-template-columns: 1fr; } }
.glossary-term-grid__item dt { font-weight: 700; margin-bottom: 4px; }
.glossary-term-grid__item dt a:hover { color: var(--bha-color-gold-dark, #A07B2A); }
.glossary-term-grid__item dd { font-size: 0.92rem; color: var(--bha-color-text-mid, #4A4A68); }

.glossary-term-page__header { max-width: 700px; margin-bottom: 32px; }
.glossary-term-page__eyebrow { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bha-color-gold-dark, #A07B2A); font-weight: 700; margin-bottom: 10px; }
.glossary-term-page__title { font-size: 2rem; margin-bottom: 14px; }
.glossary-term-page__short-def { font-size: 1.15rem; color: var(--bha-color-text-mid, #4A4A68); margin-bottom: 8px; }
.glossary-term-page__aka { font-size: 0.9rem; color: var(--bha-color-text-muted, #7A7A9A); }
.glossary-term-page__body { max-width: 700px; font-size: 1.05rem; margin-bottom: 40px; }
.glossary-term-page__body li { margin-left: 20px; }
.glossary-term-list { display: flex; flex-direction: column; gap: 8px; }
.glossary-term-list a:hover { color: var(--bha-color-gold-dark, #A07B2A); }

/* ---------- FAQ ---------- */
.faq-category { margin-bottom: 40px; }
.faq-category__heading { font-size: 1.4rem; margin-bottom: 16px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    border: 1px solid var(--bha-color-border, #E2DDD6);
    border-radius: var(--bha-radius-md, 8px);
    padding: 4px 20px;
}
.faq-item__question {
    padding: 16px 0;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::after {
    content: '+';
    float: right;
    font-size: 1.3rem;
    color: var(--bha-color-gold-dark, #A07B2A);
}
.faq-item[open] .faq-item__question::after { content: '-'; }
.faq-item__answer { padding: 0 0 18px; color: var(--bha-color-text-mid, #4A4A68); }

/* ---------- LIBRARY ---------- */
.library-section { margin-bottom: 56px; }
.resource-list { display: flex; flex-direction: column; gap: 10px; }
.resource-list a { font-weight: 600; color: var(--bha-color-gold-dark, #A07B2A); }
.resource-list a:hover { text-decoration: underline; }

/* ---------- FORMS ---------- */
.inquiry-form-section { max-width: 640px; margin-top: 40px; }
.inquiry-form-section h2 { font-size: 1.4rem; margin-bottom: 20px; }
.inquiry-form { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.88rem; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
    padding: 12px 14px;
    border: 1px solid var(--bha-color-border, #E2DDD6);
    border-radius: var(--bha-radius-sm, 4px);
    font-size: 0.95rem;
    font-family: inherit;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: 2px solid var(--bha-color-gold, #C89B3C);
    outline-offset: 1px;
}
.form-success {
    background: var(--bha-color-surface-alt, #F9F6F0);
    border: 1px solid var(--bha-color-gold, #C89B3C);
    border-radius: var(--bha-radius-md, 8px);
    padding: 20px;
    font-weight: 600;
}

/* ---------- MISC SHARED ---------- */
.page-cta-banner {
    background: var(--bha-color-navy, #0D1721);
    color: #fff;
    border-radius: var(--bha-radius-lg, 16px);
    padding: 48px;
    text-align: center;
    margin-top: 56px;
}
.page-cta-banner h2 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.page-cta-banner p { color: rgba(255,255,255,0.78); margin-bottom: 24px; }

.checklist { display: grid; gap: 12px; }
.checklist li { padding-left: 26px; position: relative; }
.checklist li::before {
    content: '\2713';
    position: absolute; left: 0;
    color: var(--bha-color-gold-dark, #A07B2A);
    font-weight: 700;
}
.checklist--not li::before { content: '\2715'; color: var(--bha-color-text-muted, #7A7A9A); }

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin: 32px 0; }
@media (max-width: 700px) { .two-col-list { grid-template-columns: 1fr; } }

.how-it-works { margin: 40px 0; }
.how-it-works h2 { margin-bottom: 20px; font-size: 1.4rem; }
.how-it-works__list { display: flex; flex-direction: column; gap: 24px; }
.how-it-works__step { display: flex; gap: 20px; align-items: flex-start; }
.how-it-works__number {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bha-color-gold, #C89B3C);
    color: #16100A;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.how-it-works__step strong { display: block; margin-bottom: 4px; }
.how-it-works__step p { color: var(--bha-color-text-mid, #4A4A68); font-size: 0.95rem; }

.commission-types, .what-you-get, .use-cases, .resource-section { margin-bottom: 36px; max-width: 760px; }
.commission-types h2, .what-you-get h2, .use-cases h2, .resource-section h2 { font-size: 1.3rem; margin-bottom: 16px; }
.resource-section { margin-bottom: 32px; }
.link-arrow { font-weight: 600; color: var(--bha-color-gold-dark, #A07B2A); }
.link-arrow:hover { text-decoration: underline; }

.text-muted { color: var(--bha-color-text-muted, #7A7A9A); }

/* ---------- ERROR PAGE ---------- */
.error-page { text-align: center; padding: 60px 0; }
.error-page__code { font-size: 5rem; color: var(--bha-color-gold, #C89B3C); }
.error-page__title { font-size: 1.8rem; margin-bottom: 16px; }
.error-page__body { color: var(--bha-color-text-mid, #4A4A68); max-width: 480px; margin: 0 auto 32px; }
.error-page__links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--bha-color-navy, #0D1721);
    color: rgba(255,255,255,0.82);
    padding: 64px 0 32px;
}
.site-footer__inner {
    max-width: var(--bha-content-width, 1360px);
    margin: 0 auto;
    padding: 0 24px;
}
.site-footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
.site-footer__logo { font-family: var(--bha-font-heading); font-size: 1.3rem; color: #fff; margin-bottom: 12px; }
.site-footer__logo span { color: var(--bha-color-gold, #C89B3C); }
.site-footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.site-footer__contact a { color: var(--bha-color-gold-light, #D4A954); font-size: 0.9rem; }
.site-footer__col-heading { color: #fff; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; }
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.site-footer__links a:hover { color: var(--bha-color-gold, #C89B3C); }
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}

@media (max-width: 980px) {
    .site-footer__top { grid-template-columns: 1fr 1fr; }
}

/* Mobile footer: single column, all text/links 2x size */
@media (max-width: 640px) {
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .site-footer__logo { font-size: 2.2rem; }
    .site-footer__tagline { font-size: 1.6rem; }
    .site-footer__contact a { font-size: 1.6rem; }
    .site-footer__col-heading { font-size: 1.5rem; }
    .site-footer__links { gap: 16px; }
    .site-footer__links a { font-size: 1.6rem; }
    .site-footer__bottom {
        flex-direction: column;
        font-size: 1.3rem;
        gap: 12px;
    }
}
