@charset "utf-8";

:root {
    --bg-main: #f4f6f4;
    --bg-panel: #fcfdfb;
    --bg-subtle: #e8eeea;
    --text-main: #202723;
    --text-muted: #66726b;
    --accent: #355f52;
    --accent-dark: #203b34;
    --accent-warm: #9a6951;
    --border-soft: #d7e0da;
    --border-strong: #b7c7bf;
    --nav-bg: #17352d;
    --shadow-soft: 0 10px 30px rgba(24, 39, 33, .07);
    --shadow-lift: 0 20px 44px rgba(24, 39, 33, .12);
}

* {
    box-sizing: border-box;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.68;
    margin: 0;
}

a {
    text-underline-offset: .18em;
}

.container {
    max-width: 1180px;
}

.site-navbar {
    background: rgba(252, 253, 251, .98);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 8px 24px rgba(24, 39, 33, .08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    color: var(--accent-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.38rem;
    font-weight: 500;
    letter-spacing: 0;
}

.navbar-brand:hover,
.navbar-brand:focus {
    color: var(--accent);
}

.site-navbar .navbar-toggler {
    border-color: var(--border-strong);
}

.site-navbar .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-nav {
    gap: .05rem;
}

.site-navbar .nav-link {
    border-radius: 999px;
    color: var(--accent-dark);
    font-size: .93rem;
    padding: .52rem .72rem;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
    background: var(--accent-dark);
    color: #fdfefd;
}

.site-main {
    padding: 4.25rem 0;
}

.page-title {
    color: #17211d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4.1rem;
    font-weight: 400;
    line-height: 1.04;
    margin-bottom: 1rem;
}

.page-intro {
    color: var(--text-muted);
    font-size: 1.12rem;
    max-width: 760px;
}

.btn-site,
.btn-outline-site {
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    padding: .72rem 1rem;
    text-decoration: none;
    transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.btn-site {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
}

.btn-site:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-site {
    background: rgba(255,255,255,.86);
    border: 1px solid var(--border-strong);
    color: var(--accent-dark);
}

.btn-outline-site:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
}

.art-grid {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.search-results-grid {
    gap: .85rem;
    grid-template-columns: repeat(auto-fit, minmax(190px, 220px));
    justify-content: center;
}

.art-card,
.book-item,
.search-panel,
.empty-state,
.contact-panel,
.inventory-card,
.article-card,
.article-reading,
.print-image,
.collection-image-strip figure,
.bio-hero-copy,
.bio-overview article,
.bio-facts,
.bio-timeline section,
.bio-featured-works {
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.art-card {
    overflow: hidden;
}

.search-result-card {
    margin: 0 auto;
    max-width: 220px;
}

.art-card-link {
    color: inherit;
    display: block;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.art-card-link:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-lift);
    color: inherit;
    transform: translateY(-4px);
}

.gallery-grid {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2.2rem);
    grid-template-columns: minmax(0, 1fr);
}

.gallery-figure {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-self: center;
    margin: 0;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    width: fit-content;
}

.gallery-image-link {
    color: inherit;
    display: flex;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    transition: opacity .16s ease, transform .16s ease;
    width: fit-content;
    max-width: 100%;
}

.gallery-image-link:hover,
.gallery-image-link:focus {
    opacity: .86;
    transform: translateY(-2px);
}

.gallery-image-link img {
    background: #fff;
    border: 1px solid rgba(32, 39, 35, .14);
    box-shadow: 0 12px 26px rgba(24, 39, 33, .11);
    display: block;
    height: auto;
    max-height: 800px;
    max-width: min(100%, 800px);
    object-fit: contain;
    width: auto;
}

.gallery-figure figcaption {
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    font-size: .9rem;
    line-height: 1.35;
    margin-top: .6rem;
    text-align: center;
    width: 100%;
}

.has-gallery-lightbox {
    overflow: hidden;
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: clamp(1rem, 3vw, 2.5rem);
    position: fixed;
    z-index: 2000;
}

.gallery-lightbox-backdrop {
    background: rgba(12, 20, 17, .82);
    inset: 0;
    position: absolute;
}

.gallery-lightbox-panel {
    background: var(--bg-panel);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
    display: grid;
    gap: 1rem;
    max-height: min(92vh, 960px);
    max-width: min(94vw, 1120px);
    padding: clamp(.75rem, 2vw, 1.15rem);
    position: relative;
    width: max-content;
    z-index: 1;
}

.gallery-lightbox-close {
    align-items: center;
    background: rgba(252, 253, 251, .94);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    color: var(--accent-dark);
    display: flex;
    font-size: 1.7rem;
    height: 2.35rem;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: .65rem;
    top: .65rem;
    width: 2.35rem;
    z-index: 2;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus {
    background: var(--accent-dark);
    color: #fff;
}

.gallery-lightbox-image-wrap {
    align-items: center;
    background: #101813;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    min-height: 220px;
    overflow: hidden;
}

.gallery-lightbox-image {
    display: block;
    height: auto;
    max-height: calc(92vh - 170px);
    max-width: min(90vw, 1060px);
    object-fit: contain;
    width: auto;
}

.gallery-lightbox-info {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.gallery-lightbox-info h2 {
    color: var(--accent-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 3vw, 1.9rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 0;
}

.gallery-lightbox-meta {
    color: var(--text-muted);
    margin: .2rem 0 0;
}

.gallery-lightbox-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    justify-content: flex-end;
}

.art-card img,
.art-card-img {
    aspect-ratio: 4 / 5;
    display: block;
    object-fit: cover;
    width: 100%;
}

.print-frame {
    background: #25312d;
    border: 1px solid #16201d;
    box-shadow: 0 18px 36px rgba(24, 39, 33, .22);
    display: inline-block;
    max-width: 100%;
    padding: 9px;
}

.print-mat {
    align-items: center;
    background: #f5f7f3;
    border: 1px solid #d4ddd7;
    display: flex;
    justify-content: center;
    padding: clamp(18px, 7%, 52px) clamp(18px, 7%, 52px) clamp(28px, 10%, 72px);
}

.print-mat img {
    background: #fff;
    border: 1px solid rgba(62, 53, 43, .18);
    box-shadow: 0 8px 18px rgba(36, 33, 29, .12);
    display: block;
    height: auto;
    object-fit: contain;
}

.print-frame-card {
    display: block;
    padding: 2px;
}

.print-frame-card .print-mat {
    aspect-ratio: auto;
    height: 320px;
    max-height: 320px;
    padding: 3% 3% 4%;
}

.print-frame-card img,
.print-frame-card .art-card-img {
    aspect-ratio: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    width: auto;
}

.home-feature {
    display: flex;
    justify-content: center;
}

.home-feature-frame {
    width: min(100%, 42rem);
}

.home-feature-frame .print-mat {
    min-height: clamp(320px, 56vh, 680px);
    padding: clamp(22px, 5vw, 56px) clamp(22px, 5vw, 56px) clamp(32px, 7vw, 76px);
}

.home-feature-frame img {
    height: auto;
    max-height: clamp(250px, 46vh, 560px);
    max-width: 100%;
    object-fit: contain;
    width: auto;
}

.art-card-body {
    padding: 1rem;
}

.search-result-card .art-card-body {
    padding: .7rem .75rem .8rem;
}

.search-result-card .art-title {
    font-size: .95rem;
    margin-bottom: .15rem;
}

.search-result-card .art-meta {
    font-size: .84rem;
    line-height: 1.35;
}

.art-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: .25rem;
}

.art-meta {
    color: var(--text-muted);
    font-size: .88rem;
}

.art-card .art-card-body,
.book-item,
.article-card,
.collection-item {
    position: relative;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.filter-link {
    background: rgba(255,255,255,.78);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    color: var(--accent-dark);
    font-size: .92rem;
    font-weight: 650;
    padding: .44rem .66rem;
    text-decoration: none;
}

.filter-link.active,
.filter-link:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

.search-panel,
.empty-state {
    padding: 1.15rem;
}

.search-panel {
    border-top: 3px solid var(--border-strong);
}


.form-control,
.form-select {
    border-color: var(--border-soft);
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 .2rem rgba(52, 93, 115, .16);
}

.admin-page-heading {
    align-items: start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.admin-page-heading .page-title {
    margin-bottom: 0;
}

.admin-settings-form {
    display: grid;
    gap: 2rem;
}

.admin-save-bar {
    align-items: center;
    background: rgba(252, 253, 251, .96);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    color: var(--text-muted);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: .85rem 1rem;
    position: sticky;
    top: 5.25rem;
    z-index: 20;
}

.admin-save-bar strong {
    color: var(--accent-dark);
}

.admin-section {
    display: grid;
    gap: 1rem;
}

.admin-section-heading {
    align-items: end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.admin-section-heading p {
    color: var(--text-muted);
    margin: 0;
}

.admin-medium-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.admin-medium-card,
.admin-panel,
.admin-gallery-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.admin-panel {
    padding: 1.25rem;
}

.admin-medium-card {
    display: grid;
    gap: 1rem;
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 150px;
    padding: 1rem;
}

.admin-medium-preview {
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    min-height: 120px;
    overflow: hidden;
}

.admin-medium-preview img {
    display: block;
    max-height: 118px;
    max-width: 100%;
    object-fit: contain;
}

.admin-medium-body {
    align-self: center;
    min-width: 0;
}

.admin-gallery-tools {
    display: grid;
    gap: .5rem;
    grid-template-columns: minmax(180px, 260px) auto auto;
}

.admin-gallery-grid {
    display: grid;
    gap: .9rem;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.admin-gallery-card {
    cursor: pointer;
    display: grid;
    gap: .6rem;
    grid-template-rows: auto 150px auto;
    padding: .75rem;
    transition: border-color .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.admin-gallery-card.is-selected {
    border-color: var(--accent);
    box-shadow: 0 12px 28px rgba(53, 95, 82, .16);
}

.admin-gallery-card.is-hidden-by-search {
    display: none;
}

.admin-gallery-check {
    align-items: center;
    color: var(--text-muted);
    display: flex;
    font-size: .85rem;
    font-weight: 650;
    gap: .45rem;
    justify-content: space-between;
    line-height: 1.2;
}

.admin-gallery-card.is-selected .admin-gallery-check {
    color: var(--accent-dark);
}

.admin-gallery-card img {
    align-self: center;
    background: #fff;
    border: 1px solid rgba(32, 39, 35, .12);
    display: block;
    height: 150px;
    justify-self: center;
    max-width: 100%;
    object-fit: contain;
    width: auto;
}

.admin-gallery-name {
    color: var(--text-muted);
    display: block;
    font-size: .82rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
    text-align: center;
}

.search-button {
    border: 0;
    min-height: 3.3rem;
    width: 100%;
}

.result-count {
    color: var(--text-muted);
}


.store-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.print-detail {
    align-items: start;
    display: grid;
    gap: 1.75rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
}

.print-image {
    padding: 1rem;
    text-align: center;
}

.print-frame-detail {
    padding: 10px;
}

.print-frame-detail .print-mat {
    min-height: min(70vh, 680px);
    padding: clamp(24px, 6vw, 72px) clamp(24px, 6vw, 72px) clamp(34px, 8vw, 92px);
}

.print-image img,
.print-frame-detail img {
    max-height: 76vh;
    object-fit: contain;
}

.print-info {
    position: sticky;
    top: 6rem;
}

.back-link {
    color: var(--accent-dark);
    display: inline-block;
    font-weight: 650;
    margin-bottom: 1rem;
    text-decoration: none;
}

.back-link:hover {
    color: var(--accent-warm);
}

.detail-list {
    border-top: 1px solid var(--border-soft);
    margin: 1.5rem 0;
}

.detail-list div {
    border-bottom: 1px solid var(--border-soft);
    display: grid;
    gap: 1rem;
    grid-template-columns: 7rem minmax(0, 1fr);
    padding: .82rem 0;
}

.detail-list dt {
    color: var(--text-muted);
    font-weight: 650;
}

.detail-list dd {
    margin: 0;
}

.detail-list dd span {
    color: var(--text-muted);
    display: block;
    font-size: .9rem;
}

.detail-actions,
.inventory-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.collection-image-strip {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-image-strip figure {
    margin: 0;
    overflow: hidden;
}

.collection-image-strip img {
    aspect-ratio: 1 / 1;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.collection-list {
    columns: 2 280px;
    column-gap: 1.15rem;
}

.collection-item {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    break-inside: avoid;
    margin-bottom: .5rem;
    padding: .65rem .82rem;
}

.book-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.book-item {
    align-items: start;
    display: grid;
    gap: .9rem;
    grid-template-columns: minmax(0, 1fr) 82px;
    min-height: 148px;
    padding: 1.05rem;
}

.book-item h2 {
    font-size: 1rem;
    line-height: 1.3;
    margin: 0 0 .45rem;
}

.book-item p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.45;
    margin: 0;
}

.book-item img {
    background: var(--bg-subtle);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    max-height: 108px;
    max-width: 82px;
    object-fit: contain;
    padding: .22rem;
    width: 100%;
}

.section-heading {
    font-size: 1.35rem;
    margin: 2.5rem 0 1rem;
}

.exhibition-list {
    columns: 2 340px;
}

.contact-panel {
    overflow: hidden;
}

.contact-image {
    display: block;
    max-height: 280px;
    object-fit: cover;
    width: 100%;
}

.contact-copy {
    padding: 1.5rem;
}

.contact-copy p {
    margin: 0 0 1rem;
}

.contact-email {
    font-size: 1.15rem;
    font-weight: 700;
}

.contact-email a {
    color: var(--accent-dark);
}

.inventory-toolbar {
    margin-bottom: 1rem;
}

.inventory-toolbar button {
    background: transparent;
}

.inventory-card {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    padding: 1.15rem;
}

.inquiry-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    margin-top: 1.5rem;
    padding: 1.5rem;
}

.inquiry-panel.is-collapsed {
    display: none;
}

.inquiry-panel.is-collapsed:target {
    display: block;
}

.inquiry-panel h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.section-kicker {
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: .35rem;
    text-transform: uppercase;
}

.inquiry-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.inquiry-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.print-form-summary {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.5;
    padding: .9rem 1rem;
}

.inquiry-form-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-field-honey {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.inventory-details h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0 0 1rem;
}

.inventory-list {
    margin-bottom: 0;
}

.inventory-image {
    align-items: center;
    background: var(--bg-subtle);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    min-height: 320px;
    padding: 1rem;
}

.inventory-image img {
    background: #fff;
    border: 1px solid var(--border-strong);
    max-height: 70vh;
    object-fit: contain;
    padding: .6rem;
}

.inventory-image .print-frame-detail img {
    border-color: rgba(62, 53, 43, .18);
    padding: 0;
}

.article-index {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.article-card {
    color: inherit;
    display: block;
    padding: 1.25rem;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease;
}

.article-card:hover {
    box-shadow: var(--shadow-lift);
    color: inherit;
    transform: translateY(-4px);
}

.article-card-kicker,
.article-card-meta {
    color: var(--text-muted);
    font-size: .88rem;
}

.article-card h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.42rem;
    line-height: 1.22;
    margin: .35rem 0;
}

.article-card::after {
    color: var(--accent);
    content: "Read";
    display: inline-block;
    font-size: .82rem;
    font-weight: 700;
    margin-top: .9rem;
    text-transform: uppercase;
}

.article-card p {
    margin-bottom: 0;
}

.article-page {
    margin: 0 auto;
    max-width: 900px;
    padding: 0 1rem;
}

.article-reading {
    color: #2b2f30;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    line-height: 1.78;
    padding: 3rem;
}

.article-header {
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    text-align: center;
}

.article-reading h1 {
    color: #17211d;
    font-size: 2.75rem;
    font-weight: normal;
    line-height: 1.15;
    margin: 0 0 .5rem;
}

.article-reading h2 {
    border-bottom: 1px solid var(--border-soft);
    color: #17211d;
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.25;
    margin: 2.5rem 0 1rem;
    padding-bottom: .35rem;
}

.article-reading .subtitle,
.article-reading .byline,
.article-reading .date {
    color: #68756d;
    margin: .25rem 0;
}

.article-reading .subtitle {
    font-size: 1.25rem;
    font-style: italic;
}

.article-reading p {
    margin: 0 0 1.15rem;
}

.article-reading blockquote {
    background: #edf2ee;
    border-left: 5px solid var(--accent);
    color: #26352f;
    font-style: italic;
    margin: 1.75rem 0;
    padding: 1rem 1.5rem;
}

.article-reading .author-note {
    border-top: 1px solid var(--border-soft);
    color: var(--text-muted);
    font-size: .95rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
}

.policy-page {
    max-width: 980px;
}

.policy-content {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.72;
    padding: 2.25rem;
}

.policy-content h2 {
    border-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    margin-top: 0;
}

.policy-content ul {
    margin-bottom: 1.2rem;
    padding-left: 1.3rem;
}

.caption-block {
    background: var(--bg-subtle);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: .95rem;
    margin: 1.75rem 0;
    padding: 1rem 1.25rem;
}

.caption-block p:last-child {
    margin-bottom: 0;
}

.themes-page {
    display: grid;
    gap: 1.5rem;
}

.theme-feature {
    align-items: center;
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
    padding: 1.5rem;
}

.theme-feature h2,
.theme-card h2,
.theme-notes h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.2;
}

.theme-feature blockquote {
    background: var(--bg-subtle);
    border-left: 5px solid var(--accent);
    color: #26352f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-style: italic;
    margin: 0;
    padding: 1rem 1.25rem;
}

.theme-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.theme-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.theme-card img {
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
    width: 100%;
}

.theme-card-body {
    padding: 1.2rem;
}

.theme-card h2 {
    font-size: 1.5rem;
    margin-bottom: .6rem;
}

.theme-card p {
    color: var(--text-muted);
}

.theme-links {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}

.theme-links a {
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    color: var(--accent-dark);
    font-size: .9rem;
    padding: .38rem .55rem;
    text-decoration: none;
}

.theme-links a:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fdfefd;
}

.theme-notes {
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    padding: 1.3rem;
}

.biography-page {
    display: grid;
    gap: 1.5rem;
}

.bio-hero {
    align-items: stretch;
    display: grid;
    gap: 1.75rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
}

.bio-hero-copy,
.bio-overview article,
.bio-facts,
.bio-timeline section,
.bio-featured-works {
    padding: 1.5rem;
}

.bio-hero img {
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    width: 100%;
}

.bio-dates {
    color: var(--accent-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.bio-hero-copy {
    align-content: center;
    display: grid;
}

.bio-overview {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
}

.bio-overview h2,
.bio-timeline h2,
.bio-featured-works h2 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.2;
    margin-bottom: .85rem;
}

.bio-facts dl {
    margin: 0;
}

.bio-facts div {
    border-top: 1px solid var(--border-soft);
    padding: .75rem 0;
}

.bio-facts div:first-child {
    border-top: 0;
}

.bio-facts dt {
    color: var(--text-muted);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bio-facts dd {
    margin: .15rem 0 0;
}

.bio-timeline {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.bio-featured-works {
    padding: 1.25rem;
}

.bio-work-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.bio-work-grid article {
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    overflow: hidden;
}

.bio-work-grid img {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    width: 100%;
}

.bio-work-grid h3,
.bio-work-grid p {
    margin-left: 1rem;
    margin-right: 1rem;
}

.bio-work-grid h3 {
    font-size: 1.05rem;
    margin-top: 1rem;
}

.bio-work-grid p {
    color: var(--text-muted);
    font-size: .93rem;
    margin-bottom: 1rem;
}

.site-footer {
    background: #e7ede9;
    border-top: 1px solid var(--border-soft);
    color: var(--text-muted);
    font-size: .9rem;
    padding: 2rem 0;
    text-align: center;
}

.site-footer a {
    color: var(--accent-dark);
    font-weight: 650;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .75rem;
    justify-content: center;
}

.footer-nav a:not(:last-child)::after {
    color: var(--text-muted);
    content: ".";
    margin-left: .75rem;
}

.footer-legal-nav {
    font-size: .82rem;
    margin-top: .65rem;
}

.helen-profile {
    line-height: 1.75;
}

.helen-profile h1,
.helen-profile h2,
.helen-profile h3 {
    line-height: 1.2;
}

.helen-profile blockquote {
    color: #444;
}

.helen-profile .card {
    border-color: var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.helen-profile .card img {
    height: 260px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .site-main {
        padding: 2.5rem 0;
    }

    .page-title {
        font-size: 2.5rem;
    }


    .collection-image-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .print-detail,
    .inventory-card,
    .inquiry-form-grid,
    .bio-hero,
    .bio-overview,
    .theme-feature {
        grid-template-columns: 1fr;
    }

    .print-info {
        position: static;
    }

    .detail-list div {
        gap: .25rem;
        grid-template-columns: 1fr;
    }

    .book-grid {
        grid-template-columns: 1fr;
    }

    .article-reading {
        padding: 1.5rem;
    }

    .article-reading h1 {
        font-size: 2.25rem;
    }

    .article-reading h2 {
        font-size: 1.5rem;
    }

    .helen-profile .card img {
        height: auto;
    }

    .helen-profile h1 {
        font-size: 2.25rem;
    }

    .gallery-lightbox {
        align-items: stretch;
        padding: .75rem;
    }

    .gallery-lightbox-panel {
        align-self: center;
        max-height: 94vh;
        width: 100%;
    }

    .gallery-lightbox-image {
        max-height: calc(94vh - 210px);
        max-width: 100%;
    }

    .gallery-lightbox-info {
        align-items: stretch;
        flex-direction: column;
    }

    .gallery-lightbox-actions {
        justify-content: stretch;
    }

    .gallery-lightbox-actions a {
        flex: 1 1 10rem;
        text-align: center;
    }

    .admin-page-heading,
    .admin-save-bar,
    .admin-section-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-save-bar {
        top: 4.5rem;
    }

    .admin-gallery-tools {
        grid-template-columns: 1fr;
    }

    .admin-medium-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }
}
