/* ==================== CSS Reset & Base ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    /* Colors - Minimal Light Theme */
    --color-bg: #FFFFFF;
    --color-bg-secondary: #FAFAFA;
    --color-bg-card: #F5F5F5;
    --color-primary: #1F2937;
    --color-accent: #D4AF37;
    --color-text: #1F2937;
    --color-text-secondary: #6B7280;
    --color-text-muted: #9CA3AF;
    --color-border: #E5E7EB;
    --color-overlay: rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-sans: 'Noto Sans SC', 'Inter', system-ui, sans-serif;
    --font-serif: 'Inter', Georgia, serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 120px 0;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ==================== Utilities ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: var(--section-padding);
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--color-border);
    padding: 16px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--color-text);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    max-width: 800px;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .hero-video {
        width: 100%;
        max-width: 400px;
    }
}

.hero-fallback {
    display: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 32px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-slogan {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: #000;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn-small.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.scroll-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* ==================== Section Headers ==================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--color-text-secondary);
    font-size: 1rem;
    font-weight: 300;
}

/* ==================== About Section ==================== */
.about {
    background: var(--color-bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    border: 1px solid var(--color-accent);
    z-index: -1;
}

.about-content {
    max-width: 500px;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-text {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

/* ==================== Works Section ==================== */
.works-slider {
    overflow: hidden;
    margin: 0 -32px;
    padding: 0 32px;
}

/* Artists Slider - 自适应终端不撑开 */
.artists-slider {
    overflow: hidden;
    margin: 0 -32px;
    padding: 0 32px;
    max-width: 100vw;
}

.artists-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 20px;
    max-width: 100%;
}

.artists-track::-webkit-scrollbar {
    display: none;
}

.artist-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--color-bg-card);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-normal);
    max-width: 100%;
}

.works-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 20px;
}

.works-track::-webkit-scrollbar {
    display: none;
}

.work-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    background: var(--color-bg-card);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.work-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.work-card:hover .work-media img {
    transform: scale(1.05);
}

.work-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.work-play svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
    margin-left: 3px;
}

.work-card:hover .work-play {
    opacity: 1;
}

.work-info {
    padding: 24px;
}

.work-year {
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.work-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.work-genre {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==================== Shows Section ==================== */
.shows {
    background: var(--color-bg-secondary);
}

.shows-list {
    max-width: 800px;
    margin: 0 auto;
}

.show-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.show-item:first-child {
    border-top: 1px solid var(--color-border);
}

.show-date {
    text-align: center;
    min-width: 60px;
}

.date-month {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.date-day {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
}

.show-details {
    flex: 1;
}

.show-details h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.show-details p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.show-status {
    min-width: 80px;
    text-align: center;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    border-radius: 2px;
}

.status-badge.available {
    background: var(--color-accent);
    color: #fff;
}

.status-badge.soldout {
    background: var(--color-text-muted);
    color: #fff;
}

/* ==================== Contact Section ==================== */
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
}

.contact-info h3,
.contact-email h3 {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--color-bg-card);
    border-radius: 2px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-normal);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--color-primary);
    color: #fff;
}

.contact-email a {
    font-size: 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 300;
    transition: var(--transition-fast);
}

.contact-email a:hover {
    color: var(--color-accent);
}

/* ==================== Footer ==================== */
.footer {
    padding: 80px 0;
    border-top: 1px solid var(--color-border);
}

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

.copyright {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 2px;
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .contact-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .work-card {
        flex: 0 0 300px;
    }

    .show-item {
        flex-wrap: wrap;
        gap: 16px;
    }

    .show-status {
        order: 3;
        width: 100%;
        text-align: left;
    }

    .contact-grid {
        flex-direction: column;
        gap: 48px;
        align-items: center;
    }

    /* Mobile image fixes */
    .hero-bg {
        width: 100%;
        overflow: hidden;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%;
    }

    .about-image {
        width: 100%;
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .artists-slider {
        width: 100%;
        overflow: hidden;
        padding: 0 16px;
        margin: 0 -16px;
    }

    .artists-track {
        width: 100%;
        gap: 16px;
    }

    .artist-card {
        flex: 0 0 280px;
        width: 280px;
        max-width: 100%;
    }

    .artist-image {
        width: 100%;
        overflow: hidden;
    }

    .artist-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .work-card {
        flex: 0 0 280px;
    }

    .social-links {
        flex-wrap: wrap;
    }
}
