/* ==========================================================================
   THEME 3: VERDIGRIS EMERALD PATINA & ROSE GOLD SPECIFICATION
   ========================================================================== */

:root {
    --bg-obsidian-base: #021411;
    --bg-obsidian-surface: #06241e;
    --bg-obsidian-card: rgba(8, 42, 35, 0.82);
    --bg-obsidian-glass: rgba(5, 30, 25, 0.75);
    
    /* Verdigris Emerald Oxide Tones */
    --copper-primary: #00e6b8;
    --copper-bright: #33ffd6;
    --copper-light: #b3ffe9;
    --copper-highlight: #e6fff8;
    --copper-dark: #008f73;
    --copper-shadow: #004d3e;
    --copper-gradient: linear-gradient(135deg, #e6fff8 0%, #33ffd6 30%, #00e6b8 60%, #008f73 100%);

    /* Flame Rose Gold & Coral Tones */
    --brass-primary: #ff476c;
    --brass-bright: #ff708d;
    --brass-light: #ffb3c2;
    --brass-highlight: #ffe6eb;
    --brass-dark: #cc1138;
    --brass-shadow: #660017;
    --brass-gradient: linear-gradient(135deg, #ffe6eb 0%, #ff708d 35%, #ff476c 65%, #cc1138 100%);

    --anisotropic-sheen: repeating-linear-gradient(
        90deg,
        rgba(51, 255, 214, 0.02) 0px,
        rgba(255, 112, 141, 0.06) 2px,
        rgba(51, 255, 214, 0.02) 4px
    );
    
    --text-primary: #f0fdf9;
    --text-muted: #99f6e4;
    --text-subtle: #5eead4;
    
    --font-heading: 'Outfit', system-ui, sans-serif;
    --font-body: 'Space Grotesk', system-ui, sans-serif;
    
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

    --mouse-x-pct: 50%;
    --mouse-y-pct: 50%;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --specular-angle: 45deg;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body.anisotropic-body {
    background-color: var(--bg-obsidian-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.ambient-glow {
    position: fixed; border-radius: 50%; filter: blur(160px); pointer-events: none; z-index: -1; opacity: 0.28;
}

.glow-copper { width: 700px; height: 700px; background: #00e6b8; top: -150px; left: -150px; }
.glow-brass { width: 700px; height: 700px; background: #ff476c; bottom: -150px; right: -150px; }

.anisotropic-noise-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: var(--anisotropic-sheen); pointer-events: none; z-index: 0; opacity: 0.75;
}

.anisotropic-canvas {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 0; opacity: 0.5;
}

h1, h2, h3, h4 { font-family: var(--font-heading); letter-spacing: 0.02em; font-weight: 800; color: var(--text-primary); }
p { color: var(--text-muted); }

.text-copper-brass {
    background: linear-gradient(135deg, #ffffff 0%, #33ffd6 35%, #00e6b8 65%, #ff708d 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(51, 255, 214, 0.45));
}

.text-center { text-align: center; }

/* THEME SWITCHER BANNER */
.theme-switcher-bar {
    background: rgba(2, 20, 17, 0.95); border-bottom: 1px solid rgba(51, 255, 214, 0.4);
    padding: 0.5rem 1rem; display: flex; align-items: center; justify-content: center; gap: 1rem;
    position: fixed; top: 0; left: 0; width: 100%; z-index: 9999; backdrop-filter: blur(15px);
}

.theme-switcher-label { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--copper-bright); }
.theme-btn { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.2); color: #99f6e4; padding: 0.25rem 0.8rem; border-radius: 4px; font-size: 0.78rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: var(--transition-smooth); }
.theme-btn:hover, .theme-btn.active { background: var(--copper-gradient); color: #021411; border-color: transparent; box-shadow: 0 0 12px rgba(51, 255, 214, 0.5); }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    padding: 0.8rem 1.8rem; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
    letter-spacing: 0.04em; border-radius: 8px; cursor: pointer; text-decoration: none;
    transition: var(--transition-smooth); border: none; position: relative; overflow: hidden;
}

.btn-metal-copper { background: var(--copper-gradient); color: #021411; box-shadow: 0 4px 25px rgba(0, 230, 184, 0.4); }
.btn-metal-copper:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(51, 255, 214, 0.7); }
.btn-metal-brass { background: var(--brass-gradient); color: #ffffff; box-shadow: 0 4px 25px rgba(255, 71, 108, 0.4); }
.btn-metal-brass:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(255, 112, 141, 0.7); }
.btn-metal-outline { background: rgba(6, 36, 30, 0.7); color: var(--text-primary); border: 1px solid rgba(51, 255, 214, 0.5); backdrop-filter: blur(12px); }
.btn-metal-outline:hover { border-color: var(--copper-bright); color: var(--copper-bright); box-shadow: 0 0 25px rgba(51, 255, 214, 0.5); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.08rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

.badge-tag {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem;
    border-radius: 50px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; background: rgba(6, 36, 30, 0.95); margin-bottom: 1rem;
}

.metallic-border-copper { border: 1px solid rgba(51, 255, 214, 0.6); color: var(--copper-bright); box-shadow: inset 0 0 12px rgba(51, 255, 214, 0.25); }
.metallic-border-brass { border: 1px solid rgba(255, 112, 141, 0.6); color: var(--brass-bright); box-shadow: inset 0 0 12px rgba(255, 112, 141, 0.25); }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }

.anisotropic-metal-card {
    position: relative; background: var(--bg-obsidian-card); border-radius: 14px;
    border: 1px solid rgba(51, 255, 214, 0.35); backdrop-filter: blur(20px);
    overflow: hidden; transition: transform 0.2s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 230, 184, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d; perspective: 1000px;
}

.anisotropic-specular-glow {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(450px circle at var(--mouse-x-pct) var(--mouse-y-pct), rgba(51, 255, 214, 0.35), rgba(255, 71, 108, 0.18) 40%, transparent 70%);
    pointer-events: none; z-index: 2; transition: opacity 0.3s ease;
}

.anisotropic-metal-card:hover {
    transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateZ(15px);
    border-color: rgba(51, 255, 214, 0.9); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95), 0 0 50px rgba(51, 255, 214, 0.5);
}

.main-header { position: fixed; top: 42px; left: 0; width: 100%; z-index: 100; padding: 1.2rem 2rem; transition: var(--transition-smooth); }
.main-header.scrolled { padding: 0.8rem 2rem; background: var(--bg-obsidian-glass); backdrop-filter: blur(24px); border-bottom: 1px solid rgba(51, 255, 214, 0.4); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9); }
.header-container { max-width: 1350px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.brand-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.brand-title { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 900; letter-spacing: 0.08em; color: var(--copper-bright); text-shadow: 0 0 12px rgba(51, 255, 214, 0.4); }
.brand-subtitle { font-size: 0.68rem; letter-spacing: 0.2em; color: var(--brass-bright); font-weight: 700; }
.nav-menu { display: flex; align-items: center; gap: 2.2rem; }
.nav-link { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 600; transition: var(--transition-smooth); display: flex; align-items: center; gap: 0.4rem; }
.nav-link:hover, .nav-link.active { color: var(--copper-bright); text-shadow: 0 0 10px rgba(51, 255, 214, 0.5); }
.link-bullet { width: 5px; height: 5px; border-radius: 50%; background: var(--copper-bright); opacity: 0; transition: var(--transition-smooth); box-shadow: 0 0 8px var(--copper-bright); }
.nav-link:hover .link-bullet, .nav-link.active .link-bullet { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--copper-bright); }

.hero-section { padding: 12rem 2rem 6rem 2rem; max-width: 1350px; margin: 0 auto; }
.hero-content { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.hero-headline { font-size: 3.8rem; line-height: 1.1; margin-bottom: 1.6rem; color: var(--text-primary); }
.hero-description { font-size: 1.18rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1.2rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 2.2rem; padding-top: 1.8rem; border-top: 1px solid rgba(51, 255, 214, 0.25); }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; filter: drop-shadow(0 0 10px rgba(51, 255, 214, 0.5)); }
.stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
.stat-divider { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(51, 255, 214, 0.4), transparent); }

.hero-frame-container { padding: 1.2rem; z-index: 2; }
.hero-image-wrapper { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 16/10; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8); }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.hero-frame-container:hover .hero-image-wrapper img { transform: scale(1.06); }
.hero-caption { padding: 1.4rem 0.5rem 0.4rem 0.5rem; }
.caption-title { font-family: var(--font-heading); font-size: 1.2rem; color: var(--copper-bright); }
.caption-meta { font-size: 0.85rem; color: var(--text-muted); }

.shows-section { padding: 6.5rem 2rem; max-width: 1350px; margin: 0 auto; }
.section-header { margin-bottom: 3.8rem; }
.section-title { font-size: 2.8rem; margin-bottom: 0.9rem; }
.section-subtitle { font-size: 1.12rem; color: var(--text-muted); max-width: 680px; margin: 0 auto; }

.shows-controls-bar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.8rem; flex-wrap: wrap; }
.search-input-wrapper { position: relative; flex: 1; min-width: 280px; max-width: 420px; }
.search-input-wrapper svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--copper-bright); }
.search-input-wrapper input { width: 100%; padding: 0.8rem 2.6rem; background: var(--bg-obsidian-surface); border: 1px solid rgba(51, 255, 214, 0.4); border-radius: 8px; color: var(--text-primary); font-family: var(--font-body); font-size: 0.95rem; outline: none; }
.search-input-wrapper input:focus { border-color: var(--copper-bright); box-shadow: 0 0 20px rgba(51, 255, 214, 0.4); }
.clear-search-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; display: none; }

.filter-pills { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.pill-btn { background: var(--bg-obsidian-surface); border: 1px solid rgba(255, 255, 255, 0.15); color: var(--text-muted); padding: 0.55rem 1.2rem; border-radius: 50px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: var(--transition-smooth); }
.pill-btn:hover, .pill-btn.active { background: var(--copper-gradient); color: #021411; border-color: transparent; font-weight: 700; box-shadow: 0 4px 20px rgba(51, 255, 214, 0.5); }

.view-toggle { display: flex; background: var(--bg-obsidian-surface); border: 1px solid rgba(51, 255, 214, 0.3); border-radius: 8px; padding: 4px; }
.view-btn { background: none; border: none; color: var(--text-muted); padding: 6px 12px; border-radius: 6px; cursor: pointer; transition: var(--transition-smooth); display: flex; align-items: center; }
.view-btn.active { background: rgba(51, 255, 214, 0.3); color: var(--copper-bright); }

.shows-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 2.2rem; }
.shows-grid.timeline-view { grid-template-columns: 1fr; }

.show-card-inner { padding: 2rem; display: flex; flex-direction: column; height: 100%; position: relative; z-index: 2; transform-style: preserve-3d; }
.show-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.4rem; }
.show-date-badge { background: var(--copper-gradient); color: #021411; padding: 0.45rem 1rem; border-radius: 6px; font-family: var(--font-heading); font-weight: 800; font-size: 0.9rem; box-shadow: 0 4px 15px rgba(51, 255, 214, 0.4); }
.show-status-tag { font-size: 0.78rem; font-weight: 700; color: var(--copper-bright); text-transform: uppercase; padding: 0.3rem 0.7rem; background: rgba(51, 255, 214, 0.18); border: 1px solid rgba(51, 255, 214, 0.4); border-radius: 4px; }
.show-title { font-size: 1.4rem; color: var(--text-primary); margin-bottom: 1rem; line-height: 1.3; }
.show-details-list { margin-bottom: 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; }
.show-detail-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.92rem; color: var(--text-muted); }
.show-highlights { font-size: 0.88rem; background: rgba(0, 0, 0, 0.45); padding: 0.9rem 1.1rem; border-radius: 8px; border-left: 3px solid var(--copper-bright); color: var(--text-muted); margin-bottom: 1.6rem; margin-top: auto; }
.show-card-actions { display: flex; gap: 0.8rem; }

.empty-shows-state { text-align: center; padding: 4.5rem 2rem; background: var(--bg-obsidian-card); border-radius: 14px; border: 1px dashed rgba(51, 255, 214, 0.4); }
.empty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.empty-shows-state h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.empty-shows-state p { color: var(--text-muted); margin-bottom: 1.8rem; }
.hidden { display: none !important; }

.gallery-section { padding: 6.5rem 2rem; max-width: 1350px; margin: 0 auto; }
.gallery-category-tabs { display: flex; justify-content: center; gap: 1.2rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.gallery-tab { background: none; border: none; color: var(--text-muted); font-family: var(--font-heading); font-size: 1.1rem; cursor: pointer; padding: 0.5rem 1.4rem; position: relative; transition: var(--transition-smooth); }
.gallery-tab:hover, .gallery-tab.active { color: var(--copper-bright); text-shadow: 0 0 10px rgba(51, 255, 214, 0.5); }
.gallery-tab::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--copper-gradient); transition: var(--transition-smooth); border-radius: 2px; }
.gallery-tab.active::after { width: 85%; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2.5rem; }
.gallery-card { display: flex; flex-direction: column; }
.gallery-img-box { position: relative; aspect-ratio: 4/3; overflow: hidden; z-index: 2; }
.gallery-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(2, 20, 17, 0.78); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition-smooth); backdrop-filter: blur(4px); }
.gallery-card:hover .gallery-img-box img { transform: scale(1.08); }
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-info { padding: 1.6rem; z-index: 2; background: var(--bg-obsidian-surface); }
.art-tag { font-size: 0.78rem; color: var(--copper-bright); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.art-title { font-size: 1.3rem; color: var(--text-primary); margin: 0.4rem 0; }
.art-specs { font-size: 0.88rem; color: var(--text-muted); }

.craftsmanship-section { padding: 6.5rem 2rem; max-width: 1350px; margin: 0 auto; }
.process-steps-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2.2rem; }
.process-step-card { padding: 2.5rem 2rem; display: flex; flex-direction: column; z-index: 2; }
.step-num { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 900; line-height: 1; margin-bottom: 1.2rem; filter: drop-shadow(0 0 15px rgba(51, 255, 214, 0.5)); }
.step-title { font-size: 1.3rem; margin-bottom: 0.9rem; color: var(--copper-bright); }
.step-desc { font-size: 0.95rem; color: var(--text-muted); }

.commission-section { padding: 6.5rem 2rem; max-width: 1100px; margin: 0 auto; }
.commission-card { padding: 3.8rem; z-index: 2; }
.estimator-form { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.7rem; }
.form-label { font-size: 0.98rem; font-weight: 700; color: var(--copper-bright); }
.metal-radio-group { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.metal-radio-btn { cursor: pointer; }
.metal-radio-btn input { display: none; }
.radio-chip { display: inline-block; padding: 0.7rem 1.6rem; border-radius: 8px; background: var(--bg-obsidian-surface); border: 1px solid rgba(255, 255, 255, 0.15); font-size: 0.92rem; font-weight: 600; color: var(--text-muted); transition: var(--transition-smooth); }
.metal-radio-btn input:checked + .radio-chip { border-color: var(--copper-bright); background: rgba(51, 255, 214, 0.25); color: #ffffff; box-shadow: 0 0 20px rgba(51, 255, 214, 0.4); }
.form-control { width: 100%; padding: 0.9rem 1.2rem; background: var(--bg-obsidian-surface); border: 1px solid rgba(51, 255, 214, 0.4); border-radius: 8px; color: var(--text-primary); font-family: var(--font-body); font-size: 0.98rem; outline: none; }
.slider-header { display: flex; justify-content: space-between; align-items: center; }
.slider-value { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; }
.custom-range { width: 100%; accent-color: var(--copper-bright); cursor: pointer; }
.estimate-result-box { background: rgba(6, 36, 30, 0.95); border: 1px solid rgba(51, 255, 214, 0.5); border-radius: 10px; padding: 1.8rem; text-align: center; box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(51, 255, 214, 0.2); }
.estimate-label { font-size: 0.88rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.estimate-price { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; margin: 0.4rem 0; filter: drop-shadow(0 0 15px rgba(51, 255, 214, 0.5)); }
.estimate-note { font-size: 0.82rem; color: var(--text-muted); }

.studio-footer { background: #010c0a; border-top: 1px solid rgba(51, 255, 214, 0.3); padding: 5.5rem 2rem 2.2rem 2rem; position: relative; z-index: 2; }
.footer-container { max-width: 1350px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 4rem; margin-bottom: 4.5rem; }
.footer-desc { color: var(--text-muted); margin: 1.2rem 0 1.8rem 0; max-width: 380px; }
.contact-details { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.94rem; color: var(--text-muted); }
.footer-heading { color: var(--copper-bright); margin-bottom: 1.4rem; font-size: 1.15rem; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.footer-nav a { color: var(--text-muted); text-decoration: none; transition: var(--transition-smooth); }
.footer-nav a:hover { color: var(--copper-bright); }
.newsletter-form { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.newsletter-form input { flex: 1; padding: 0.8rem 1.1rem; background: var(--bg-obsidian-surface); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 6px; color: var(--text-primary); outline: none; }
.footer-bottom { max-width: 1350px; margin: 0 auto; padding-top: 2.2rem; border-top: 1px solid rgba(255, 255, 255, 0.08); text-align: center; font-size: 0.88rem; color: var(--text-muted); }

.modal-backdrop { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(1, 15, 12, 0.9); backdrop-filter: blur(20px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 2rem; opacity: 1; transition: opacity 0.35s ease; }
.modal-window { width: 100%; max-width: 620px; padding: 2.8rem; position: relative; z-index: 2; }
.art-modal-window { max-width: 880px; }
.modal-close { position: absolute; top: 1.4rem; right: 1.8rem; background: none; border: none; color: var(--text-muted); font-size: 2.2rem; cursor: pointer; z-index: 10; }
.modal-close:hover { color: var(--copper-bright); }
.modal-title { font-size: 1.9rem; margin: 0.5rem 0; }
.modal-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 1.8rem 0; }
.m-info-card { background: rgba(0, 0, 0, 0.4); padding: 1rem; border-radius: 8px; border-left: 3px solid var(--copper-primary); }
.m-label { display: block; font-size: 0.8rem; color: var(--text-muted); }
.m-val { font-size: 0.98rem; font-weight: 700; color: var(--text-primary); }
.modal-desc { color: var(--text-muted); margin-bottom: 2.2rem; font-size: 0.98rem; }
.modal-actions { display: flex; flex-direction: column; gap: 0.9rem; }
.art-modal-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; align-items: center; }
.art-modal-img-box { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.art-modal-img-box img { width: 100%; height: 100%; object-fit: cover; }

.toast-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 2000; display: flex; flex-direction: column; gap: 0.9rem; }
.toast-msg { background: var(--bg-obsidian-surface); border: 1px solid var(--copper-bright); color: var(--text-primary); padding: 1rem 1.6rem; border-radius: 10px; box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(51, 255, 214, 0.5); font-weight: 600; }

@media (max-width: 992px) { .hero-content { grid-template-columns: 1fr; } .footer-container { grid-template-columns: 1fr; gap: 2.5rem; } .art-modal-layout { grid-template-columns: 1fr; } .hero-headline { font-size: 3rem; } }
@media (max-width: 768px) { .nav-menu { position: fixed; top: 70px; left: 0; width: 100%; background: var(--bg-obsidian-surface); flex-direction: column; padding: 2rem; display: none; } .nav-menu.mobile-open { display: flex; } .mobile-toggle { display: flex; } .shows-controls-bar { flex-direction: column; align-items: stretch; } }
