/*
Theme Name: NovaMuseum
Theme URI: https://novamuseum.org
Author: RT7 Media
Author URI: https://rt7.media
Description: A custom WordPress theme for NovaMuseum.org - Celebrating Northern Virginia's rich history with a directory of historical societies, museums, and walking tours.
Version: 1.3.9
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: novamuseum
Tags: history, museums, directory, custom-post-types

NovaMuseum WordPress Theme, (C) 2026 RT7 Media
NovaMuseum is distributed under the terms of the GNU GPL v2 or later.
*/

:root {
    --navy: #1A3264;
    --terracotta: #C85C41;
    --sage: #739E82;
    --cream: #F8F4E9;
    --slate: #575E6A;
    --sand: #E1D3C1;
    --shadow: rgba(26, 50, 100, 0.12);
    --radius: 16px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--slate);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    color: var(--navy);
    margin: 0 0 0.35em;
}

a {
    color: inherit;
}

/* Header Styles */
header {
    position: fixed;
    inset: 0 0 auto 0;
    padding: 20px 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 50, 100, 0.92);
    color: white;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo-mobile {
    display: none;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: white;
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: white;
    margin-left: 24px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav a:hover::after,
nav a:focus-visible::after {
    transform: scaleX(1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 11;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 45vh;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    padding: 140px 7vw 100px;
    background: linear-gradient(120deg, rgba(26, 50, 100, 0.8), rgba(19, 33, 73, 0.85)),
                url('assets/images/workhouse.jpg') center/cover;
    color: white;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 760px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.92);
}

.hero h1 {
    color: white;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    padding-top: 1em;
}

.hero-partner-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-partner-badge img {
    max-width: 280px;
    height: auto;
}

/* Hero Two Column Layout */
.hero-two-col {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    text-align: left;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left img {
    max-width: 320px;
    height: auto;
}

.hero-right {
    max-width: 700px;
}

.hero-right h1 {
    padding-top: 0;
}

@media (max-width: 900px) {
    .hero-two-col {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-left img {
        max-width: 240px;
    }

    .hero-right {
        max-width: 100%;
    }
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    background: var(--terracotta);
    color: white;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 26px rgba(0,0,0,0.2);
}

/* Main Content */
main {
    padding: 80px 6vw;
}

.section-heading {
    margin-bottom: 18px;
}

.directory-section {
    margin-bottom: 60px;
}

.directory-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 20px 50px var(--shadow);
    border: 1px solid rgba(26, 50, 100, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.directory-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 92, 65, 0.4);
}

/* Filters */
.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 24px 0 40px;
}

.filters input,
.filters select {
    padding: 14px 16px;
    border-radius: 999px;
    border: 1px solid rgba(26, 50, 100, 0.2);
    background: white;
    font-size: 0.95rem;
    font-family: inherit;
}

/* Directory Grid */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.directory-card h3 {
    font-size: 1.35rem;
}

.meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sage);
    margin-bottom: 12px;
}

.meta .location {
    color: var(--sage);
    flex: 1;
}

.type-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.52rem;
    letter-spacing: 0.09em;
    color: white;
    background: var(--navy);
    white-space: nowrap;
}

.contact {
    margin: 6px 0;
    font-size: 0.9rem;
}

.contact i {
    margin-right: 8px;
    color: var(--terracotta);
}

.contact a {
    text-decoration: none;
    color: var(--navy);
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 50px 6vw;
    background: var(--navy);
    color: white;
    text-align: center;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-logo-left,
.footer-logo-right {
    display: flex;
    align-items: center;
}

.footer-logo-left img,
.footer-logo-right img {
    height: 80px;
    width: auto;
}

.footer-logo-divider {
    width: 1px;
    height: 60px;
    background-color: white;
}

footer a {
    color: white;
}

.empty-state {
    text-align: center;
    padding: 40px;
    font-family: 'Fraunces', serif;
    color: var(--navy);
    display: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .directory-grid {
        grid-template-columns: 1fr;
    }

    header {
        flex-wrap: wrap;
        padding: 15px 4vw;
    }

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        flex: 1;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding-top: 15px;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        margin: 10px 0;
        font-size: 0.85rem;
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    /* Homepage mobile fixes */
    .homepage-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .featured-artifact-inner {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .image-of-week-inner {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .section-heading {
        font-size: 1.5rem !important;
    }

    .hero h1 {
        font-size: 2rem !important;
    }

    .hero p {
        font-size: 1rem !important;
    }

    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    main {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .site-main {
        padding: 40px 4vw !important;
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Force all grids to single column on mobile */
    .homepage-grid,
    .featured-artifact-inner,
    .image-of-week-inner,
    .directory-intro-grid,
    .category-grid-v2,
    .cards-container-v2,
    .vision-section,
    .directory-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Override ALL inline grid styles on mobile */
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Contain all cards and sections */
    .directory-card,
    section,
    article {
        max-width: 100%;
        overflow-x: hidden;
        word-wrap: break-word;
    }

    /* Prevent images from overflowing */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Fix flex containers that might overflow */
    [style*="display: flex"],
    [style*="display:flex"] {
        flex-wrap: wrap !important;
    }

    .hero {
        padding-top: 160px;
    }

    .hero-partner-badge img {
        max-width: 200px;
    }

    .logo img {
        height: 64px;
    }
}


/* ========================================
   V2 HOMEPAGE - ACCORDION STYLE
   ======================================== */

/* Two Column Layout: Intro + Category Grid */
.directory-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.directory-intro-text {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 50, 100, 0.08);
    border: 1px solid rgba(26, 50, 100, 0.06);
}

/* Category Grid V2 */
.category-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-tile-v2 {
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(26, 50, 100, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    color: white;
}

.category-tile-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,0.3);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-tile-v2:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(26, 50, 100, 0.3);
}

.category-tile-v2:hover::before {
    transform: scaleX(1);
}

.category-tile-v2.active {
    border-color: rgba(255,255,255,0.5);
    transform: scale(0.98);
    animation: pulse 2s ease-in-out infinite;
}

/* Category-specific gradients */
.category-tile-v2:nth-child(1) {
    background: linear-gradient(135deg, #1A3264 0%, #2A5291 100%);
}

.category-tile-v2:nth-child(2) {
    background: linear-gradient(135deg, #C85C41 0%, #D67359 100%);
}

.category-tile-v2:nth-child(3) {
    background: linear-gradient(135deg, #8B6F47 0%, #A68A5E 100%);
}

.category-tile-v2:nth-child(4) {
    background: linear-gradient(135deg, #5A7C6B 0%, #6E9683 100%);
}

.category-icon-v2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
    transition: transform 0.3s ease;
}

.category-tile-v2:hover .category-icon-v2 {
    transform: scale(1.1) rotate(5deg);
}

.category-title-v2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.category-count-v2 {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Expanded Section V2 */
.expanded-section-v2 {
    max-width: 1400px;
    margin: 30px auto;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s ease;
}

.expanded-section-v2.active {
    max-height: 5000px;
    opacity: 1;
}

.expanded-header-v2 {
    background: linear-gradient(135deg, var(--navy), #2A4684);
    color: white;
    padding: 30px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.expanded-section-v2.active .expanded-header-v2 {
    transform: translateY(0);
    opacity: 1;
}

.expanded-header-v2 h2 {
    margin: 0;
    font-size: 2rem;
    color: white;
}

/* Category-specific header colors */
.expanded-header-v2.museums,
.expanded-header-v2.museums-historic-sites {
    background: linear-gradient(135deg, #8B6F47, #A68A5E);
}

.expanded-header-v2.historical-societies {
    background: linear-gradient(135deg, #C85C41, #D67359);
}

.expanded-header-v2.heritage-sites,
.expanded-header-v2.heritage-cultural-sites {
    background: linear-gradient(135deg, #8B6F47, #A68A5E);
}

.expanded-header-v2.preservation-organizations {
    background: linear-gradient(135deg, #5A7C6B, #6E9683);
}

.close-btn-v2 {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.close-btn-v2:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

/* Cards Container V2 */
.cards-container-v2 {
    background: white;
    padding: 30px;
    border-radius: 0 0 16px 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Flip animation */
@keyframes flipIn {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(-90deg) scale(0.8);
    }
    50% {
        transform: perspective(1000px) rotateY(10deg) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg) scale(1);
    }
}

.org-card-v2 {
    background: white;
    border: 2px solid rgba(26, 50, 100, 0.1);
    border-radius: 12px;
    padding: 20px;
    opacity: 0;
    animation: flipIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: all 0.3s ease;
    cursor: pointer;
    transform-style: preserve-3d;
}

.org-card-v2:hover {
    box-shadow: 0 8px 30px rgba(26, 50, 100, 0.25);
    transform: translateY(-4px);
}

/* Category-specific hover colors for subcards */
.org-card-v2.museums:hover,
.org-card-v2.museums-historic-sites:hover {
    background: linear-gradient(135deg, #8B6F47, #A68A5E);
    border-color: #A68A5E;
}

.org-card-v2.historical-societies:hover {
    background: linear-gradient(135deg, #C85C41, #D67359);
    border-color: #D67359;
}

.org-card-v2.heritage-sites:hover,
.org-card-v2.heritage-cultural-sites:hover {
    background: linear-gradient(135deg, #8B6F47, #A68A5E);
    border-color: #A68A5E;
}

.org-card-v2.preservation-organizations:hover {
    background: linear-gradient(135deg, #5A7C6B, #6E9683);
    border-color: #6E9683;
}

.org-card-v2.museums:hover h3,
.org-card-v2.museums:hover .org-location-v2,
.org-card-v2.museums:hover .org-description-v2,
.org-card-v2.museums:hover .contact,
.org-card-v2.museums:hover .contact a,
.org-card-v2.museums-historic-sites:hover h3,
.org-card-v2.museums-historic-sites:hover .org-location-v2,
.org-card-v2.museums-historic-sites:hover .org-description-v2,
.org-card-v2.museums-historic-sites:hover .contact,
.org-card-v2.museums-historic-sites:hover .contact a,
.org-card-v2.historical-societies:hover h3,
.org-card-v2.historical-societies:hover .org-location-v2,
.org-card-v2.historical-societies:hover .org-description-v2,
.org-card-v2.historical-societies:hover .contact,
.org-card-v2.historical-societies:hover .contact a,
.org-card-v2.heritage-sites:hover h3,
.org-card-v2.heritage-sites:hover .org-location-v2,
.org-card-v2.heritage-sites:hover .org-description-v2,
.org-card-v2.heritage-sites:hover .contact,
.org-card-v2.heritage-sites:hover .contact a,
.org-card-v2.heritage-cultural-sites:hover h3,
.org-card-v2.heritage-cultural-sites:hover .org-location-v2,
.org-card-v2.heritage-cultural-sites:hover .org-description-v2,
.org-card-v2.heritage-cultural-sites:hover .contact,
.org-card-v2.heritage-cultural-sites:hover .contact a,
.org-card-v2.preservation-organizations:hover h3,
.org-card-v2.preservation-organizations:hover .org-location-v2,
.org-card-v2.preservation-organizations:hover .org-description-v2,
.org-card-v2.preservation-organizations:hover .contact,
.org-card-v2.preservation-organizations:hover .contact a {
    color: white;
}

.org-card-v2.museums:hover .contact i,
.org-card-v2.museums-historic-sites:hover .contact i,
.org-card-v2.historical-societies:hover .contact i,
.org-card-v2.heritage-sites:hover .contact i,
.org-card-v2.heritage-cultural-sites:hover .contact i,
.org-card-v2.preservation-organizations:hover .contact i {
    color: rgba(255,255,255,0.8);
}

/* Stagger animation delays */
.org-card-v2:nth-child(1) { animation-delay: 0.05s; }
.org-card-v2:nth-child(2) { animation-delay: 0.15s; }
.org-card-v2:nth-child(3) { animation-delay: 0.1s; }
.org-card-v2:nth-child(4) { animation-delay: 0.2s; }
.org-card-v2:nth-child(5) { animation-delay: 0.05s; }
.org-card-v2:nth-child(6) { animation-delay: 0.25s; }
.org-card-v2:nth-child(7) { animation-delay: 0.15s; }
.org-card-v2:nth-child(8) { animation-delay: 0.3s; }
.org-card-v2:nth-child(9) { animation-delay: 0.1s; }
.org-card-v2:nth-child(10) { animation-delay: 0.35s; }

.org-card-v2 h3 {
    color: var(--navy);
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.org-location-v2 {
    color: var(--sage);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.org-description-v2 {
    color: var(--slate);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(200, 92, 65, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(200, 92, 65, 0);
    }
}

/* Mobile responsiveness for V2 */
@media (max-width: 768px) {
    .directory-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .category-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .cards-container-v2 {
        grid-template-columns: 1fr;
    }
    
    .expanded-header-v2 {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .expanded-header-v2 h2 {
        font-size: 1.5rem;
    }
}


/* ========================================
   ABOUT MARTY PAGE
   ======================================== */

.about-marty-page {
    background: var(--cream);
}

.about-hero {
    background: var(--navy);
    color: white;
    padding: 120px 6vw 80px;
    text-align: center;
}

.about-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-byline {
    font-family: 'DM Mono', monospace;
    font-size: 0.95rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 6vw 80px;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.3rem !important;
    color: var(--navy) !important;
    font-weight: 500;
    line-height: 1.7 !important;
}

.pull-quote {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem !important;
    color: var(--terracotta) !important;
    font-style: italic;
    padding: 30px 0;
    border-left: 4px solid var(--terracotta);
    padding-left: 30px;
    margin: 30px 0;
}

.emphasis {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem !important;
    color: var(--navy) !important;
    text-align: center;
    padding: 20px 0;
}

.vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.vision-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vision-card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.vision-card p {
    font-size: 1rem !important;
    margin-bottom: 0;
}

.vision-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.vision-card.digital .vision-icon {
    background: rgba(115, 158, 130, 0.15);
    color: var(--sage);
}

.vision-card.physical .vision-icon {
    background: rgba(200, 92, 65, 0.15);
    color: var(--terracotta);
}

.closing {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(26, 50, 100, 0.1);
}

.closing-statement {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem !important;
    color: var(--navy) !important;
    line-height: 1.5 !important;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .vision-section {
        grid-template-columns: 1fr;
    }

    .pull-quote {
        font-size: 1.25rem !important;
    }

    .closing-statement {
        font-size: 1.3rem !important;
    }
}

/* ===================================
   DIGITAL EXHIBIT SINGLE PAGE
   Museum-Quality Immersive Experience
   =================================== */

.digital-exhibit-single {
    max-width: 100%;
    padding: 0;
}

/* Paper Texture Background */
.digital-exhibit-article {
    background-color: var(--cream);
    background-image:
        radial-gradient(circle at 25% 25%, rgba(139, 90, 43, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(26, 50, 100, 0.02) 0%, transparent 50%);
    position: relative;
}

.digital-exhibit-article::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
}

/* Reading Progress Bar */
.exhibit-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(26, 50, 100, 0.1);
    z-index: 1000;
}

.exhibit-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--terracotta), #e07a5f);
    width: 0%;
    transition: width 0.1s ease-out;
}

@media (min-width: 769px) {
    .exhibit-progress {
        top: var(--exhibit-progress-top, 120px);
        height: 2px;
        z-index: 9;
    }
}

/* ========== FULL-BLEED HERO ========== */
.exhibit-hero-fullbleed {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 80vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-parallax-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 25, 41, 0.2) 0%,
        rgba(10, 25, 41, 0.4) 50%,
        rgba(10, 25, 41, 0.85) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 40px;
}

.exhibit-date-badge {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.exhibit-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.exhibit-subtitle {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 3;
}

/* Fallback Header (no featured image) */
.exhibit-header {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #0a1929 100%);
    padding: 100px 40px 80px;
    text-align: center;
    color: white;
}

.exhibit-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.exhibit-intro {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.35rem;
    opacity: 0.9;
    line-height: 1.6;
}

.exhibit-intro p {
    margin: 0;
}

/* ========== CONTENT SECTIONS ========== */
.exhibit-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.exhibit-section {
    margin-bottom: 100px;
    scroll-margin-top: 140px; /* Account for fixed header (120px) + breathing room */
}

.exhibit-section:last-child {
    margin-bottom: 0;
}

/* Scroll Reveal Animation */
.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Two-column sections with alternating layout */
.exhibit-section-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.exhibit-section-columns.image-left .exhibit-section-image {
    order: 1;
}

.exhibit-section-columns.image-left .exhibit-section-text {
    order: 2;
}

.exhibit-section-columns.image-right .exhibit-section-image {
    order: 2;
}

.exhibit-section-columns.image-right .exhibit-section-text {
    order: 1;
}

/* Museum-Style Artifact Frame */
.exhibit-artifact-frame {
    background: #f5f2eb;
    padding: 24px;
    border-radius: 4px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
}

.exhibit-artifact-frame::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    pointer-events: none;
    border-radius: 2px;
}

.exhibit-section-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.exhibit-section-image figure {
    margin: 0;
}

.exhibit-section-image figcaption {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    color: #666;
    padding: 16px 0 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 16px;
    letter-spacing: 0.02em;
}

/* Enhanced Text Styling */
.exhibit-section-text {
    padding: 20px 0;
}

.exhibit-section-text h2 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
    border-left: 3px solid var(--terracotta);
    padding-left: 20px;
    line-height: 1.3;
}

.exhibit-section-text h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.exhibit-section-text p {
    font-family: 'Source Serif Pro', 'Georgia', serif;
    font-size: 1.1rem;
    color: #2a2a2a;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.exhibit-section-text ul,
.exhibit-section-text ol {
    margin: 1.5rem 0;
    padding-left: 1.75rem;
}

.exhibit-section-text li {
    font-family: 'Source Serif Pro', 'Georgia', serif;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #2a2a2a;
}

.exhibit-section-text strong {
    color: var(--navy);
}

/* Full-width text sections */
.exhibit-section-full {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
    background: white;
    border-radius: 8px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 40px rgba(0, 0, 0, 0.08);
}

.exhibit-section-full h2 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1.25rem;
    border-left: 3px solid var(--terracotta);
    padding-left: 20px;
}

.exhibit-section-full h3 {
    font-family: 'DM Serif Display', serif;
    color: var(--navy);
}

.exhibit-section-full p {
    font-family: 'Source Serif Pro', 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.85;
    color: #2a2a2a;
}

.exhibit-section-full table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Source Serif Pro', 'Georgia', serif;
}

.exhibit-section-full th,
.exhibit-section-full td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e8e2d5;
}

.exhibit-section-full th {
    background: var(--navy);
    color: white;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.exhibit-section-full tr:nth-child(even) {
    background: #faf8f5;
}

/* ========== RESPONSIVE TABLES (Mobile) ========== */
@media (max-width: 768px) {
    /* Wrap tables in scrollable container */
    .exhibit-section-full figure.wp-block-table,
    .exhibit-section figure.wp-block-table,
    .exhibit-content figure.wp-block-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 1.5rem -20px;
        padding: 0 20px;
    }

    /* Stacked card layout for tables on mobile */
    .exhibit-section-full table,
    .exhibit-section table,
    .exhibit-content table {
        display: block;
        width: 100%;
    }

    .exhibit-section-full thead,
    .exhibit-section thead,
    .exhibit-content thead {
        display: none; /* Hide headers on mobile */
    }

    .exhibit-section-full tbody,
    .exhibit-section tbody,
    .exhibit-content tbody {
        display: block;
    }

    .exhibit-section-full tr,
    .exhibit-section tr,
    .exhibit-content tr {
        display: block;
        background: white;
        border: 1px solid #e8e2d5;
        border-radius: 12px;
        margin-bottom: 16px;
        padding: 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .exhibit-section-full tr:nth-child(even),
    .exhibit-section tr:nth-child(even),
    .exhibit-content tr:nth-child(even) {
        background: white;
    }

    .exhibit-section-full td,
    .exhibit-section td,
    .exhibit-content td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #f0ebe3;
        text-align: right;
    }

    .exhibit-section-full td:last-child,
    .exhibit-section td:last-child,
    .exhibit-content td:last-child {
        border-bottom: none;
    }

    /* Use first column as row label */
    .exhibit-section-full td:first-child,
    .exhibit-section td:first-child,
    .exhibit-content td:first-child {
        font-weight: 700;
        color: var(--navy);
        font-family: 'DM Sans', sans-serif;
        font-size: 1rem;
        text-align: left;
        padding-bottom: 12px;
        margin-bottom: 8px;
        border-bottom: 2px solid var(--terracotta);
        display: block;
    }

    /* Data cells after the first */
    .exhibit-section-full td:not(:first-child)::before,
    .exhibit-section td:not(:first-child)::before,
    .exhibit-content td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--slate);
        font-family: 'DM Sans', sans-serif;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-align: left;
    }
}

/* ========== PULL QUOTES ========== */
.exhibit-pullquote-section {
    max-width: 900px;
    margin: 100px auto;
}

.exhibit-pullquote {
    position: relative;
    margin: 0;
    padding: 60px 80px;
    background: white;
    border: none;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.exhibit-pullquote::before,
.exhibit-pullquote::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid var(--terracotta);
}

.exhibit-pullquote::before {
    top: 25px;
    left: 25px;
    border-right: none;
    border-bottom: none;
}

.exhibit-pullquote::after {
    bottom: 25px;
    right: 25px;
    border-left: none;
    border-top: none;
}

.exhibit-pullquote p {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    font-size: 1.65rem;
    line-height: 1.55;
    color: var(--navy);
    margin: 0 0 24px;
}

.exhibit-pullquote cite {
    display: block;
    font-style: normal;
    font-family: 'DM Sans', sans-serif;
}

.exhibit-pullquote cite strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: normal;
    color: var(--navy);
    margin-bottom: 4px;
}

.exhibit-pullquote cite span,
.exhibit-pullquote cite em {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

/* ========== CHAPTER DIVIDER ========== */
.exhibit-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 80px 0;
    color: var(--terracotta);
    opacity: 0.4;
}

.exhibit-divider::before,
.exhibit-divider::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--terracotta), transparent);
}

.exhibit-divider-icon {
    font-size: 0.9rem;
}

/* ========== EXHIBIT FOOTER ========== */
.exhibit-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    border-top: 1px solid rgba(26, 50, 100, 0.1);
    position: relative;
    z-index: 1;
}

.exhibit-meta {
    text-align: center;
    color: #666;
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    margin-bottom: 40px;
}

.exhibit-navigation {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.exhibit-nav-link {
    flex: 1;
    max-width: 350px;
    padding: 24px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.exhibit-nav-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.exhibit-nav-link.prev {
    text-align: left;
}

.exhibit-nav-link.next {
    text-align: right;
}

.exhibit-nav-link.all {
    flex: 0 0 auto;
    text-align: center;
    background: var(--navy);
    color: white;
}

.exhibit-nav-link.all .nav-label {
    color: rgba(255, 255, 255, 0.8);
}

.exhibit-nav-link.all .nav-icon {
    display: block;
    font-size: 1.5rem;
    margin-top: 8px;
}

.exhibit-nav-link .nav-label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--terracotta);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.exhibit-nav-link .nav-title {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.4;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .exhibit-section-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .exhibit-section-columns.image-left .exhibit-section-image,
    .exhibit-section-columns.image-right .exhibit-section-image {
        order: 1;
    }

    .exhibit-section-columns.image-left .exhibit-section-text,
    .exhibit-section-columns.image-right .exhibit-section-text {
        order: 2;
    }

    .exhibit-pullquote {
        padding: 40px 50px;
    }

    .exhibit-pullquote p {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .exhibit-hero-fullbleed {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-overlay {
        padding-bottom: 60px;
    }

    .exhibit-title {
        font-size: 2rem;
    }

    .exhibit-subtitle {
        font-size: 1.1rem;
    }

    .exhibit-header {
        padding: 80px 20px 60px;
    }

    .exhibit-content {
        padding: 60px 20px;
    }

    .exhibit-section {
        margin-bottom: 70px;
    }

    .exhibit-section-text h2 {
        font-size: 1.75rem;
        padding-left: 16px;
    }

    .exhibit-section-full {
        padding: 30px 24px;
    }

    .exhibit-pullquote {
        padding: 30px 24px;
    }

    .exhibit-pullquote::before,
    .exhibit-pullquote::after {
        width: 30px;
        height: 30px;
    }

    .exhibit-pullquote::before {
        top: 15px;
        left: 15px;
    }

    .exhibit-pullquote::after {
        bottom: 15px;
        right: 15px;
    }

    .exhibit-pullquote p {
        font-size: 1.25rem;
    }

    .exhibit-navigation {
        flex-direction: column;
    }

    .exhibit-nav-link {
        max-width: none;
    }

    .exhibit-nav-link.next,
    .exhibit-nav-link.prev {
        text-align: left;
    }

    .exhibit-artifact-frame {
        padding: 16px;
    }
}

/* ===================================
   DIGITAL EXHIBIT - PHASE 2 COMPONENTS
   Artifact Spotlight, Context Sidebar,
   Primary Source Quotes, Lightbox
   =================================== */

/* ========== ARTIFACT SPOTLIGHT ========== */
.exhibit-artifact-spotlight {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    background: linear-gradient(135deg, #1a3264 0%, #0a1929 100%);
    color: white;
    padding: 50px;
    border-radius: 12px;
    margin: 80px 0;
    box-shadow: 0 20px 60px rgba(10, 25, 41, 0.3);
}

.spotlight-image {
    position: relative;
}

.spotlight-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.spotlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-label {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.spotlight-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75rem;
    color: white;
    margin: 0 0 16px;
    line-height: 1.3;
}

.spotlight-description {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.spotlight-metadata {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 20px;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.spotlight-metadata dt {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.spotlight-metadata dd {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 768px) {
    .exhibit-artifact-spotlight {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .spotlight-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .spotlight-title {
        font-size: 1.5rem;
    }
}

/* ========== HISTORICAL CONTEXT SIDEBAR ========== */
.exhibit-context-box {
    position: relative;
    background: linear-gradient(135deg, #f8f6f1 0%, #f0ebe0 100%);
    border-left: 4px solid var(--sage);
    padding: 28px 32px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

.exhibit-context-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, var(--sage), transparent);
}

.context-icon {
    position: absolute;
    top: -18px;
    left: 20px;
    font-size: 1.75rem;
    background: var(--cream);
    padding: 4px 12px;
    border-radius: 4px;
}

.context-title {
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sage);
    margin: 0 0 12px;
}

.exhibit-context-box p {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.exhibit-context-box p + p {
    margin-top: 12px;
}

/* Alternate style: Did You Know */
.exhibit-context-box.did-you-know {
    border-left-color: var(--terracotta);
}

.exhibit-context-box.did-you-know::before {
    background: linear-gradient(to right, var(--terracotta), transparent);
}

.exhibit-context-box.did-you-know .context-title {
    color: var(--terracotta);
}

/* ========== PRIMARY SOURCE QUOTE BLOCKS ========== */
.exhibit-primary-source {
    position: relative;
    margin: 70px auto;
    padding: 55px 65px;
    background: white;
    border: none;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 850px;
}

.exhibit-primary-source::before,
.exhibit-primary-source::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    border: 3px solid var(--terracotta);
}

.exhibit-primary-source::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.exhibit-primary-source::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.exhibit-primary-source p {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.55rem;
    line-height: 1.6;
    color: var(--navy);
    margin: 0 0 24px;
    text-align: center;
}

.exhibit-primary-source cite {
    display: block;
    font-style: normal;
    text-align: center;
}

.exhibit-primary-source cite strong,
.exhibit-primary-source .source-name {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: normal;
    color: var(--navy);
    margin-bottom: 4px;
}

.exhibit-primary-source cite span,
.exhibit-primary-source cite em,
.exhibit-primary-source .source-title {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

.exhibit-primary-source .source-date {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    color: #888;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .exhibit-primary-source {
        padding: 40px 30px;
        margin: 50px 0;
    }

    .exhibit-primary-source::before,
    .exhibit-primary-source::after {
        width: 30px;
        height: 30px;
    }

    .exhibit-primary-source::before {
        top: 12px;
        left: 12px;
    }

    .exhibit-primary-source::after {
        bottom: 12px;
        right: 12px;
    }

    .exhibit-primary-source p {
        font-size: 1.25rem;
    }
}

/* ========== IMAGE LIGHTBOX ========== */
.exhibit-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 41, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

.exhibit-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav.prev {
    left: 20px;
    border-radius: 4px;
}

.lightbox-nav.next {
    right: 20px;
    border-radius: 4px;
}

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
}

/* Zoomable images cursor hint */
.exhibit-section-image img,
.exhibit-artifact-frame img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.exhibit-section-image:hover img,
.exhibit-artifact-frame:hover img {
    transform: scale(1.02);
}

/* ========== DIG DEEPER EXPANDABLE ========== */
.exhibit-dig-deeper {
    background: #f0f4f8;
    border-radius: 8px;
    margin: 35px 0;
    overflow: hidden;
}

.exhibit-dig-deeper summary {
    padding: 20px 25px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    transition: background 0.2s;
}

.exhibit-dig-deeper summary::-webkit-details-marker {
    display: none;
}

.exhibit-dig-deeper summary:hover {
    background: #e8ecf0;
}

.exhibit-dig-deeper summary::after {
    content: '+';
    margin-left: auto;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--terracotta);
    transition: transform 0.3s;
}

.exhibit-dig-deeper[open] summary::after {
    content: '−';
}

.dig-icon {
    font-size: 1.25rem;
}

.dig-content {
    padding: 0 25px 25px;
    border-top: 1px solid rgba(26, 50, 100, 0.1);
}

.dig-content p {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    margin: 16px 0 0;
}

.dig-content p:first-child {
    margin-top: 20px;
}

/* ===================================
   DIGITAL EXHIBIT - PHASE 3 COMPONENTS
   Sticky Nav, Table of Contents, Related
   =================================== */

/* ========== STICKY SECTION NAVIGATION ========== */
.exhibit-sticky-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 50, 100, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    z-index: 100;
    box-shadow: 0 10px 40px rgba(10, 25, 41, 0.4);
}

.exhibit-sticky-nav.visible {
    opacity: 1;
    visibility: visible;
}

.exhibit-sticky-nav.hidden {
    transform: translateX(-50%) translateY(100px);
}

.sticky-nav-title {
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-nav-dots {
    display: flex;
    gap: 8px;
}

.sticky-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.sticky-nav-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.sticky-nav-dot.active {
    background: var(--terracotta);
    transform: scale(1.3);
}

.sticky-nav-dot[data-has-title]:hover::after {
    content: attr(data-title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .exhibit-sticky-nav {
        padding: 12px 20px;
        bottom: 20px;
    }

    .sticky-nav-title {
        display: none;
    }
}

/* ========== TABLE OF CONTENTS ========== */
.exhibit-toc {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 90;
}

.exhibit-toc.visible {
    opacity: 1;
    visibility: visible;
}

.toc-label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}

.toc-list a:hover {
    color: var(--navy);
    background: #f5f5f5;
}

.toc-list a.active {
    color: var(--navy);
    background: rgba(26, 50, 100, 0.08);
    border-left-color: var(--terracotta);
    font-weight: 500;
}

.toc-progress {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.toc-progress-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: #999;
    margin-bottom: 8px;
}

.toc-progress-bar {
    height: 4px;
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
}

.toc-progress-fill {
    height: 100%;
    background: var(--terracotta);
    width: 0%;
    transition: width 0.2s ease;
}

/* Hide TOC on smaller screens */
@media (max-width: 1400px) {
    .exhibit-toc {
        display: none;
    }
}

/* ========== RELATED EXHIBITS GRID ========== */
.exhibit-related {
    background: linear-gradient(135deg, #1a3264 0%, #0a1929 100%);
    padding: 80px 40px;
    margin-top: 60px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.exhibit-related::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}

.related-header {
    text-align: center;
    margin-bottom: 50px;
}

.related-label {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.related-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: white;
    margin: 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
}

.related-card-image {
    height: 180px;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.08);
}

.related-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-card-date {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.related-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: white;
    margin: 0 0 12px;
    line-height: 1.3;
}

.related-card-excerpt {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    flex: 1;
}

.related-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--terracotta);
    margin-top: 16px;
    transition: gap 0.3s ease;
}

.related-card:hover .related-card-link {
    gap: 12px;
}

.related-view-all {
    text-align: center;
    margin-top: 50px;
}

.related-view-all a {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.related-view-all a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .exhibit-related {
        padding: 60px 20px;
    }

    .related-title {
        font-size: 1.5rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   HOMEPAGE DIGITAL EXHIBIT FEATURE
   =================================== */

.digital-exhibit-feature {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 550px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 4px solid var(--sage);
    border-bottom: 4px solid var(--sage);
    box-shadow:
        inset 0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 -4px 8px rgba(0, 0, 0, 0.15);
}

.digital-exhibit-feature .exhibit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 50, 100, 0.75) 0%,
        rgba(10, 25, 41, 0.6) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.exhibit-feature-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px;
}

.exhibit-feature-label {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.exhibit-feature-title {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.exhibit-feature-title a {
    color: white;
    text-decoration: none;
}

.exhibit-feature-title a:hover {
    text-decoration: underline;
}

.exhibit-feature-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.exhibit-feature-link {
    display: inline-block;
    background: white;
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.exhibit-feature-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.exhibit-slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.slide-indicator.active,
.slide-indicator:hover {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .digital-exhibit-feature {
        height: 500px;
    }

    .exhibit-feature-title {
        font-size: 2rem;
    }

    .exhibit-feature-excerpt {
        font-size: 1rem;
    }

    .exhibit-feature-content {
        padding: 20px;
    }
}

/* ===================================
   DIGITAL EXHIBITS ARCHIVE PAGE
   =================================== */

.digital-exhibits-archive {
    background: var(--cream);
    min-height: 100vh;
}

/* Archive Hero */
.exhibits-archive-hero {
    padding: 180px 40px 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, #0a1929 100%);
    color: white;
    position: relative;
}

.archive-hero-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 16px;
}

.archive-hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
    color: white;
}

.archive-hero-intro {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.archive-hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}

.decoration-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage), transparent);
}

.decoration-icon {
    color: var(--sage);
    font-size: 0.875rem;
}

/* Archive Content */
.exhibits-archive-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 12px;
}

/* Featured Exhibit Section */
.featured-exhibit-section {
    margin-bottom: 100px;
}

.featured-exhibit-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(26, 50, 100, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(26, 50, 100, 0.08);
}

.featured-exhibit-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.featured-exhibit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-exhibit-card:hover .featured-exhibit-image img {
    transform: scale(1.03);
}

.featured-exhibit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 50, 100, 0.1), transparent);
    pointer-events: none;
}

.featured-exhibit-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-exhibit-content .exhibit-date-badge {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
}

.featured-exhibit-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 20px;
    color: var(--navy);
}

.featured-exhibit-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.featured-exhibit-title a:hover {
    color: var(--terracotta);
}

.featured-exhibit-excerpt {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.featured-exhibit-excerpt p {
    margin: 0;
}

.exhibit-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.exhibit-category-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: rgba(115, 158, 130, 0.12);
    color: var(--sage);
    border-radius: 2px;
}

.featured-exhibit-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    text-decoration: none;
    transition: gap 0.3s;
}

.featured-exhibit-link:hover {
    gap: 14px;
}

/* More Exhibits Grid */
.more-exhibits-section {
    margin-bottom: 100px;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0;
}

.exhibits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.exhibit-grid-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 50, 100, 0.08);
    border: 1px solid rgba(26, 50, 100, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.exhibit-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 50, 100, 0.12);
}

.exhibit-grid-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.exhibit-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.exhibit-grid-card:hover .exhibit-grid-image img {
    transform: scale(1.05);
}

.exhibit-grid-content {
    padding: 24px;
}

.exhibit-grid-content .exhibit-date-badge {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: transparent;
    padding: 0;
    margin-bottom: 10px;
    display: block;
}

.exhibit-grid-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 12px;
    color: var(--navy);
}

.exhibit-grid-title a {
    color: inherit;
    text-decoration: none;
}

.exhibit-grid-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 16px;
}

.exhibit-grid-link {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-bottom: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(26, 50, 100, 0.1);
}

.coming-soon-header {
    text-align: center;
    margin-bottom: 50px;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.coming-soon-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 4px;
    border: 1px dashed rgba(26, 50, 100, 0.15);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.coming-soon-card:hover {
    border-color: var(--sage);
    box-shadow: 0 4px 16px rgba(115, 158, 130, 0.1);
}

.coming-soon-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(115, 158, 130, 0.1);
    border-radius: 50%;
    color: var(--sage);
    font-size: 1.5rem;
}

.coming-soon-card h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin: 0 0 12px;
}

.coming-soon-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* CTA Section */
.exhibits-cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--navy) 0%, #0a1929 100%);
    border-radius: 4px;
    color: white;
}

.exhibits-cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 1.25rem;
    color: var(--sage);
    display: block;
    margin-bottom: 20px;
}

.exhibits-cta-section h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 16px;
}

.exhibits-cta-section p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0 0 28px;
}

.exhibits-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--terracotta);
    color: white;
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s, transform 0.3s;
}

.exhibits-cta-button:hover {
    background: #b54d36;
    transform: translateY(-2px);
}

/* No Exhibits */
.no-exhibits {
    text-align: center;
    padding: 80px 40px;
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 1.1rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-exhibit-card {
        grid-template-columns: 1fr;
    }

    .featured-exhibit-image {
        min-height: 300px;
    }

    .exhibits-grid,
    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .exhibits-archive-hero {
        padding: 150px 24px 60px;
    }

    .archive-hero-title {
        font-size: 2.5rem;
    }

    .archive-hero-intro {
        font-size: 1.1rem;
    }

    .exhibits-archive-content {
        padding: 50px 24px;
    }

    .featured-exhibit-content {
        padding: 30px;
    }

    .featured-exhibit-title {
        font-size: 1.5rem;
    }

    .exhibits-grid,
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }

    .coming-soon-card {
        padding: 30px 24px;
    }

    .exhibits-cta-section {
        padding: 50px 24px;
    }
}