/* ==========================================================================
   THEME 2: "THE FONZ 2026" — CYAN CHROME & LIQUID OBSIDIAN SPECIFICATION
   ========================================================================== */

:root {
    --bg-obsidian-base: #020408;
    --bg-obsidian-surface: #070d17;
    --bg-obsidian-card: rgba(10, 18, 30, 0.82);
    --bg-obsidian-glass: rgba(7, 13, 23, 0.75);
    
    /* Cyan & Liquid Chrome Accent Tones */
    --copper-primary: #00e5ff;
    --copper-bright: #66f0ff;
    --copper-light: #b3f8ff;
    --copper-highlight: #e6ffff;
    --copper-dark: #00a3b8;
    --copper-shadow: #004d57;
    --copper-gradient: linear-gradient(135deg, #e6ffff 0%, #66f0ff 25%, #00e5ff 55%, #00a3b8 80%, #00363d 100%);

    /* Polished Chrome Tones */
    --brass-primary: #e2e8f0;
    --brass-bright: #ffffff;
    --brass-light: #f8fafc;
    --brass-highlight: #ffffff;
    --brass-dark: #94a3b8;
    --brass-shadow: #334155;
    --brass-gradient: linear-gradient(135deg, #ffffff 0%, #cbd5e1 30%, #94a3b8 70%, #475569 100%);

    --anisotropic-sheen: repeating-linear-gradient(
        90deg,
        rgba(0, 240, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.08) 2px,
        rgba(0, 240, 255, 0.02) 4px
    );
    
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;
    
    --font-heading: 'Cinzel Decorative', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', 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.25;
}

.glow-copper { width: 700px; height: 700px; background: #00e5ff; top: -150px; left: -150px; }
.glow-brass { width: 700px; height: 700px; background: #3b82f6; 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.8;
}

.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.05em; font-weight: 700; color: var(--text-primary); }
p { color: var(--text-muted); }

.text-copper-brass {
    background: linear-gradient(135deg, #ffffff 0%, #66f0ff 40%, #00e5ff 70%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.5));
}

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

/* THEME SWITCHER BANNER */
.theme-switcher-bar {
    background: rgba(2, 4, 8, 0.92);
    border-bottom: 1px solid rgba(0, 240, 255, 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: 700;
    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: #cbd5e1;
    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: #020408;
    border-color: transparent;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
}

/* BUTTONS & METALLIC CARDS */
.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: 6px; cursor: pointer; text-decoration: none;
    transition: var(--transition-smooth); border: none; position: relative; overflow: hidden;
}

.btn-metal-copper {
    background: var(--copper-gradient); color: #020408;
    box-shadow: 0 4px 25px rgba(0, 229, 255, 0.4), inset 0 1px 1px #ffffff;
}

.btn-metal-copper:hover {
    transform: translateY(-3px); box-shadow: 0 8px 35px rgba(0, 229, 255, 0.7), inset 0 1px 1px #ffffff;
}

.btn-metal-brass {
    background: var(--brass-gradient); color: #0f172a;
    box-shadow: 0 4px 25px rgba(226, 232, 240, 0.4), inset 0 1px 1px #ffffff;
}

.btn-metal-brass:hover {
    transform: translateY(-3px); box-shadow: 0 8px 35px rgba(255, 255, 255, 0.7), inset 0 1px 1px #ffffff;
}

.btn-metal-outline {
    background: rgba(7, 13, 23, 0.7); color: var(--text-primary);
    border: 1px solid rgba(0, 240, 255, 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(0, 240, 255, 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(7, 13, 23, 0.95); margin-bottom: 1rem;
}

.metallic-border-copper {
    border: 1px solid rgba(0, 240, 255, 0.6); color: var(--copper-bright);
    box-shadow: inset 0 0 12px rgba(0, 240, 255, 0.25), 0 0 15px rgba(0, 240, 255, 0.3);
}

.metallic-border-brass {
    border: 1px solid rgba(226, 232, 240, 0.6); color: var(--brass-bright);
    box-shadow: inset 0 0 12px rgba(226, 232, 240, 0.25), 0 0 15px rgba(255, 255, 255, 0.3);
}

.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(0, 240, 255, 0.35); backdrop-filter: blur(16px);
    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.9), 0 0 25px rgba(0, 240, 255, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    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(0, 240, 255, 0.35), rgba(59, 130, 246, 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(0, 240, 255, 0.9);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95), 0 0 50px rgba(0, 240, 255, 0.5), inset 0 1px 2px #ffffff;
}

/* HEADER & NAVIGATION */
.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(0, 240, 255, 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.3rem; font-weight: 900; letter-spacing: 0.1em; color: var(--brass-bright); text-shadow: 0 0 12px rgba(255, 255, 255, 0.4); }
.brand-subtitle { font-size: 0.68rem; letter-spacing: 0.2em; color: var(--copper-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.94rem; 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(0, 240, 255, 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); }

/* SECTIONS */
.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); text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9); }
.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(0, 240, 255, 0.25); }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; filter: drop-shadow(0 0 10px rgba(0, 240, 255, 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(0, 240, 255, 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(0, 240, 255, 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(0, 240, 255, 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: #020408; border-color: transparent; font-weight: 700; box-shadow: 0 4px 20px rgba(0, 229, 255, 0.5); }

.view-toggle { display: flex; background: var(--bg-obsidian-surface); border: 1px solid rgba(0, 240, 255, 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(0, 240, 255, 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: #020408; padding: 0.45rem 1rem; border-radius: 6px; font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4); }
.show-status-tag { font-size: 0.78rem; font-weight: 700; color: var(--copper-bright); text-transform: uppercase; letter-spacing: 0.06em; padding: 0.3rem 0.7rem; background: rgba(0, 240, 255, 0.18); border: 1px solid rgba(0, 240, 255, 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(0, 240, 255, 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(0, 240, 255, 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, 4, 8, 0.75); 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(0, 240, 255, 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(0, 240, 255, 0.25); color: #ffffff; box-shadow: 0 0 20px rgba(0, 240, 255, 0.4); }
.form-control { width: 100%; padding: 0.9rem 1.2rem; background: var(--bg-obsidian-surface); border: 1px solid rgba(0, 240, 255, 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(7, 13, 23, 0.95); border: 1px solid rgba(0, 240, 255, 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(0, 240, 255, 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: 700; margin: 0.4rem 0; filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.5)); }
.estimate-note { font-size: 0.82rem; color: var(--text-muted); }

.studio-footer { background: #010204; border-top: 1px solid rgba(0, 240, 255, 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, 2, 4, 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(0, 240, 255, 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; } }
