/* ========== CSS Variables - Light Theme (Default) ========== */
:root {
    --bg: #fff;
    --bg-alt: #f5f5f7;
    --bg-card: #fff;
    --text: #1d1d1f;
    --text-secondary: #6e6e73;
    --accent: #0071e3;
    --accent-hover: #0077ed;
    --border: #d2d2d7;
    --nav-bg: rgba(251,251,253,0.8);
    --shadow: rgba(0,0,0,0.06);
    --shadow-hover: rgba(0,0,0,0.08);
    --tag-bg: rgba(0,113,227,0.08);
    --blue-symbol: #0071e3;
    --pink-symbol: #ff2d55;
}

/* ========== Dark Theme ========== */
[data-theme="dark"] {
    --bg: #1d1d1f;
    --bg-alt: #111;
    --bg-card: #2d2d2f;
    --text: #f5f5f7;
    --text-secondary: #a1a1a6;
    --accent: #2997ff;
    --accent-hover: #5ab0ff;
    --border: #424245;
    --nav-bg: rgba(29,29,31,0.85);
    --shadow: rgba(0,0,0,0.3);
    --shadow-hover: rgba(0,0,0,0.4);
    --tag-bg: rgba(41,151,255,0.15);
    --blue-symbol: #2997ff;
    --pink-symbol: #ff375f;
}

/* ========== Reset & Base ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "PingFang SC", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    transition: background 0.3s, color 0.3s;
}
html { scroll-behavior: smooth; }
a { transition: color 0.3s; }
img { max-width: 100%; height: auto; }

/* ========== Navigation ========== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, border-color 0.3s;
}
nav .nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 52px;
}
nav .logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--text);
}
nav .logo img { height: 32px; width: auto; }
nav .logo-text {
    display: flex; flex-direction: column; line-height: 1.1;
}
nav .logo-text .cn { font-size: 16px; font-weight: 600; letter-spacing: -0.5px; }
nav .logo-text .en { font-size: 9px; font-weight: 400; color: var(--text-secondary); letter-spacing: 0.5px; text-transform: uppercase; }

nav .nav-links { display: flex; gap: 20px; align-items: center; }
nav .nav-links a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 13px; transition: color 0.3s; white-space: nowrap;
}
nav .nav-links a:hover, nav .nav-links a.active { color: var(--text); }

nav .nav-actions { display: flex; align-items: center; gap: 8px; }
nav .nav-actions button {
    background: none; border: 1px solid var(--border);
    border-radius: 6px; padding: 4px 10px; cursor: pointer;
    font-size: 13px; color: var(--text-secondary);
    transition: all 0.3s;
}
nav .nav-actions button:hover { color: var(--text); border-color: var(--text); }

nav .hamburger { display: none; cursor: pointer; padding: 8px; background: none; border: none; }
nav .hamburger svg { width: 22px; height: 22px; fill: var(--text); }

/* ========== Hero ========== */
.hero {
    min-height: 90vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    padding: 120px 24px 80px;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('images/gallery-studio-concept.png') center/cover no-repeat;
    transition: background 0.3s;
    color: #fff;
}
.hero-logo { width: 80px; height: 80px; margin-bottom: 24px; object-fit: contain; }
.hero h1 {
    font-size: clamp(48px, 8vw, 80px); font-weight: 700;
    letter-spacing: -2px; line-height: 1.05; color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero .hero-sub {
    font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 4px;
    letter-spacing: 2px; text-transform: uppercase;
}
.hero .hero-tagline, .hero p {
    font-size: clamp(18px, 3vw, 24px); color: rgba(255,255,255,0.9);
    margin-top: 16px; font-weight: 400; max-width: 600px;
}
.hero .cta {
    margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

/* ========== Page Header ========== */
.page-header {
    padding: 130px 24px 60px;
    text-align: center;
    background: var(--bg-alt);
    transition: background 0.3s;
}
.page-header .label {
    font-size: 14px; color: var(--accent); text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 8px; font-weight: 500;
}
.page-header h1 {
    font-size: clamp(36px, 6vw, 52px); font-weight: 700;
    letter-spacing: -1px; margin-bottom: 12px;
}
.page-header p {
    font-size: 18px; color: var(--text-secondary); max-width: 560px; margin: 0 auto;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 980px; font-size: 17px;
    text-decoration: none; transition: all 0.3s; font-weight: 400;
    cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline {
    border: 1.5px solid var(--accent); color: var(--accent);
    background: transparent; padding: 11px 27px;
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-sm { padding: 8px 20px; font-size: 14px; }

/* ========== Content Section ========== */
.content-section {
    padding: 80px 24px;
    max-width: 1200px; margin: 0 auto;
}
.section-label {
    font-size: 14px; color: var(--accent); text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 8px; font-weight: 500;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px); font-weight: 700;
    letter-spacing: -1px; margin-bottom: 12px;
}
.section-desc {
    font-size: 17px; color: var(--text-secondary); max-width: 560px;
    margin-bottom: 48px;
}

/* ========== Services Grid ========== */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px; max-width: 1200px; margin: 0 auto;
}
.service-card {
    padding: 40px 32px; background: var(--bg-card);
    border-radius: 18px; text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow); }
.service-card .icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--tag-bg);
    margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
}
.service-card .icon svg { width: 28px; height: 28px; fill: var(--accent); }
.service-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ========== Audio/Video Grid ========== */
.audio-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.audio-card {
    background: var(--bg-card); border-radius: 18px;
    padding: 28px; border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.audio-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow-hover); }
.audio-card .tag {
    display: inline-block; font-size: 12px; padding: 4px 10px;
    border-radius: 6px; background: var(--tag-bg);
    color: var(--accent); margin-bottom: 12px; font-weight: 500;
}
.audio-card .title { font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.audio-card .desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.audio-card audio, .audio-card video {
    width: 100%; border-radius: 10px; outline: none;
}
.video-card { grid-column: 1 / -1; }
.video-card video { width: 100%; border-radius: 12px; aspect-ratio: 16/9; background: #000; }

/* ========== Team Grid ========== */
.team-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}
.team-card {
    padding: 36px 28px;
    background: var(--bg-alt); border-radius: 18px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow); }
.team-card .avatar-wrap {
    position: relative; width: 96px; height: 96px; margin: 0 auto 16px;
}
.team-card .avatar-wrap img {
    width: 96px; height: 96px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--border);
}
.team-card .name { font-size: 22px; font-weight: 600; margin-bottom: 4px; text-align: center; }
.team-card .real-name { font-size: 13px; color: var(--text-secondary); text-align: center; margin-bottom: 8px; }
.team-card .edu { font-size: 13px; color: var(--text-secondary); text-align: center; margin-bottom: 4px; }
.team-card .edu strong { color: var(--text); font-weight: 500; }
.team-card .position { font-size: 14px; color: var(--accent); margin-bottom: 16px; font-weight: 500; text-align: center; }
.team-card .bio { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.team-card .exp { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.team-card .exp strong { color: var(--text); font-weight: 500; }

/* ========== Contact ========== */
.contact-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px; max-width: 900px; margin: 0 auto;
}
.contact-card {
    text-align: center; padding: 40px 24px;
    background: var(--bg-alt); border-radius: 18px;
    border: 1px solid var(--border);
    transition: background 0.3s, border-color 0.3s;
}
.contact-card .icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--tag-bg);
    margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
}
.contact-card .icon svg { width: 24px; height: 24px; fill: var(--accent); }
.contact-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.contact-card .phone { font-size: 22px; font-weight: 600; color: var(--accent); text-decoration: none; display: block; margin-top: 8px; }

/* Map buttons */
.map-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.map-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 20px; border-radius: 10px;
    background: var(--tag-bg); color: var(--accent);
    text-decoration: none; font-size: 14px; font-weight: 500;
    transition: all 0.3s;
}
.map-btn:hover { background: var(--accent); color: #fff; }

/* ========== About Page ========== */
.about-intro {
    font-size: 18px; line-height: 1.8; color: var(--text-secondary);
    max-width: 800px; margin: 0 auto 48px;
}
.about-intro strong { color: var(--text); }
.about-tags {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
    margin-bottom: 48px;
}
.about-tags span {
    font-size: 14px; padding: 6px 16px; border-radius: 8px;
    background: var(--tag-bg); color: var(--accent); font-weight: 500;
}
.about-services {
    font-size: 15px; color: var(--text-secondary); text-align: center;
    margin-bottom: 60px; line-height: 1.8;
}

/* Advantage cards */
.advantage-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px; margin-bottom: 60px;
}
.advantage-card {
    padding: 32px 24px; background: var(--bg-card);
    border-radius: 16px; border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.advantage-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px var(--shadow); }
.advantage-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.advantage-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* Flow chart */
.flow-steps {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    align-items: center; margin: 40px 0;
}
.flow-step {
    padding: 12px 20px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: 12px;
    font-size: 14px; font-weight: 500; color: var(--text);
    transition: background 0.3s;
}
.flow-arrow { font-size: 20px; color: var(--accent); font-weight: 700; }

/* Exhibition images gallery */
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px; margin: 40px 0;
}
.gallery-grid img {
    width: 100%; height: 220px; object-fit: cover;
    border-radius: 12px; border: 1px solid var(--border);
    transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.02); }
.gallery-grid .gallery-item-wide { grid-column: span 2; }
.gallery-grid .gallery-item-wide img { height: 280px; }

/* ========== Join Us Page ========== */
.job-list {
    display: flex; flex-direction: column; gap: 32px;
    max-width: 900px; margin: 0 auto;
}
.job-card {
    padding: 36px 32px; background: var(--bg-card);
    border-radius: 18px; border: 1px solid var(--border);
    transition: background 0.3s, border-color 0.3s;
}
.job-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.job-card .job-type {
    display: inline-block; font-size: 12px; padding: 4px 10px;
    border-radius: 6px; background: var(--tag-bg);
    color: var(--accent); margin-bottom: 16px; font-weight: 500;
}
.job-card .job-info { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.job-card .job-info strong { color: var(--text); }
.job-card .job-info ul { margin: 12px 0; padding-left: 20px; }
.job-card .job-info li { margin-bottom: 6px; }
.job-card .job-note {
    margin-top: 16px; padding: 16px; background: var(--bg-alt);
    border-radius: 10px; font-size: 13px; color: var(--text-secondary);
    line-height: 1.7; border-left: 3px solid var(--accent);
}

/* ========== Partners Page ========== */
.partner-card {
    display: flex; gap: 32px; align-items: flex-start;
    padding: 40px 32px; background: var(--bg-card);
    border-radius: 18px; border: 1px solid var(--border);
    margin-bottom: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.partner-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px var(--shadow); }
.partner-card img { width: 120px; height: 120px; object-fit: contain; border-radius: 12px; flex-shrink: 0; }
.partner-card .partner-info h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.partner-card .partner-info p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.partner-card .partner-info .coop-tag {
    display: inline-block; font-size: 12px; padding: 4px 10px;
    border-radius: 6px; background: var(--tag-bg);
    color: var(--accent); margin-top: 12px; font-weight: 500;
}

/* ========== CTA Section ========== */
.cta-section {
    text-align: center; padding: 100px 24px;
    background: var(--bg-alt);
    transition: background 0.3s;
}
.cta-section h2 {
    font-size: clamp(32px, 5vw, 48px); font-weight: 700;
    letter-spacing: -1px; margin-bottom: 16px;
}
.cta-section p {
    font-size: 18px; color: var(--text-secondary); margin-bottom: 36px;
}
.cta-section .cta-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ========== More Link ========== */
.more-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent); text-decoration: none;
    font-size: 17px; font-weight: 400; margin-top: 40px;
    transition: gap 0.3s;
}
.more-link:hover { gap: 12px; }
.more-link::after { content: '→'; }

/* ========== Link Buttons (inline blue links) ========== */
.inline-link {
    color: var(--accent); text-decoration: none; font-weight: 500;
    transition: opacity 0.3s;
}
.inline-link:hover { opacity: 0.7; text-decoration: underline; }

/* ========== Divider ========== */
.section-divider {
    border: none; border-top: 1px solid var(--border);
    max-width: 1200px; margin: 0 auto;
}

/* ========== Footer ========== */
footer {
    border-top: 1px solid var(--border); padding: 28px 24px;
    text-align: center; font-size: 13px; color: var(--text-secondary);
    background: var(--bg-alt);
    transition: background 0.3s, border-color 0.3s;
}
footer a { color: var(--text-secondary); text-decoration: none; margin: 0 4px; }
footer a:hover { color: var(--text); }
footer .footer-links { margin-bottom: 8px; }

/* ========== Featured Section (Homepage) ========== */
.featured-section {
    padding: 80px 24px;
    max-width: 1200px; margin: 0 auto;
}
.featured-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}

/* ========== About Preview (Homepage) ========== */
.about-preview {
    text-align: center; padding: 80px 24px;
    max-width: 800px; margin: 0 auto;
}
.about-preview .about-text {
    font-size: 18px; color: var(--text-secondary); line-height: 1.8;
    margin-bottom: 24px;
}

/* ========== Address Section ========== */
.address-section {
    text-align: center; padding: 24px;
    font-size: 14px; color: var(--text-secondary);
    margin-top: 16px;
}

/* ========== Responsive ========== */
@media (max-width: 968px) {
    nav .nav-links { display: none; flex-direction: column; gap: 0; }
    nav .nav-links.open {
        display: flex; position: absolute; top: 52px; left: 0; right: 0;
        background: var(--nav-bg); backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 12px 0;
    }
    nav .nav-links.open a {
        padding: 12px 24px; font-size: 15px;
        border-bottom: 1px solid var(--border);
    }
    nav .nav-links.open a:last-child { border-bottom: none; }
    nav .hamburger { display: block; }
    nav .nav-actions { gap: 4px; }
    nav .nav-actions button { padding: 4px 8px; font-size: 12px; }
}
@media (max-width: 768px) {
    .content-section, .featured-section { padding: 60px 20px; }
    .hero { padding: 100px 20px 60px; min-height: 80vh; }
    .audio-grid, .team-grid, .services-grid, .contact-grid { grid-template-columns: 1fr; }
    .advantage-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid .gallery-item-wide { grid-column: span 1; }
    .gallery-grid .gallery-item-wide img { height: 220px; }
    .page-header { padding: 120px 20px 40px; }
    .cta-section { padding: 80px 20px; }
    .partner-card { flex-direction: column; align-items: center; text-align: center; }
    .partner-card img { width: 100px; height: 100px; }
    .flow-steps { flex-direction: column; }
    .flow-arrow { transform: rotate(90deg); }
    .job-card { padding: 24px 20px; }
    .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    nav .nav-inner { padding: 0 16px; }
    nav .logo img { height: 28px; }
    nav .logo-text .cn { font-size: 14px; }
    nav .logo-text .en { font-size: 8px; }
    .btn { padding: 10px 22px; font-size: 15px; }
}


/* ========== Music/Audio Grid (alias for audio-grid) ========== */
.music-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.music-card {
    background: var(--bg-card); border-radius: 18px;
    padding: 28px; border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.music-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow-hover); }
.music-card .tag {
    display: inline-block; font-size: 12px; padding: 4px 10px;
    border-radius: 6px; background: var(--tag-bg);
    color: var(--accent); margin-bottom: 12px; font-weight: 500;
}
.music-card .title { font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.music-card .desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.music-card audio { width: 100%; border-radius: 10px; outline: none; }

/* ========== Team Meta ========== */
.team-meta {
    display: flex; flex-direction: column; gap: 4px;
    margin-bottom: 12px; text-align: center;
}
.team-meta-item {
    display: flex; justify-content: center; gap: 8px;
    font-size: 13px; color: var(--text-secondary);
}
.team-meta-label {
    font-weight: 500; color: var(--text);
}
.team-meta-value {
    color: var(--accent);
}

/* ========== Section Alt Background ========== */
.section-alt, section.section-alt {
    background: var(--bg-alt);
    transition: background 0.3s;
}

/* ========== Generic Section & Container ========== */
.section {
    padding: 80px 24px;
}
.container {
    max-width: 1200px; margin: 0 auto;
}
.section h2 {
    font-size: clamp(28px, 4vw, 42px); font-weight: 700;
    letter-spacing: -1px; margin-bottom: 12px;
}
.section .lead {
    font-size: 18px; color: var(--text-secondary); line-height: 1.8;
}

/* ========== Features Grid ========== */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    padding: 32px 24px; background: var(--bg-card);
    border-radius: 16px; border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px var(--shadow); }
.feature-card .feature-icon {
    font-size: 36px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* ========== Timeline ========== */
.timeline {
    position: relative; padding-left: 0;
}
.timeline-item {
    display: flex; align-items: flex-start; gap: 20px;
    margin-bottom: 24px;
}
.timeline-number {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--tag-bg); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.timeline-content h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.timeline-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ========== Contact Icon ========== */
.contact-icon {
    font-size: 36px; margin-bottom: 16px;
}

/* ========== Info Block ========== */
.info-block {
    background: var(--bg-alt); border-radius: 16px;
    padding: 32px; border: 1px solid var(--border);
    text-align: center;
}
.info-block h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.info-block p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; }

/* ========== Job Tags ========== */
.job-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.job-tag {
    display: inline-block; font-size: 12px; padding: 4px 10px;
    border-radius: 6px; background: var(--tag-bg);
    color: var(--accent); font-weight: 500;
}
.job-section {
    margin-top: 16px;
}
.job-section h4 {
    font-size: 15px; font-weight: 600; margin-bottom: 8px;
    color: var(--text);
}
.job-section ul {
    padding-left: 20px; margin-bottom: 8px;
}
.job-section li {
    font-size: 14px; color: var(--text-secondary); line-height: 1.8;
    margin-bottom: 4px;
}

/* ========== Partner Grid ========== */
.partner-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.partner-card {
    padding: 36px 28px; background: var(--bg-card);
    border-radius: 18px; border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.partner-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px var(--shadow); }
.partner-logo {
    margin-bottom: 16px;
}
.partner-logo img {
    width: 100px; height: 100px; object-fit: contain; border-radius: 12px;
}
.partner-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.partner-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* ========== Hero Adjustments ========== */
.hero-logo {
    width: 80px; height: 80px; object-fit: contain; margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 14px; color: var(--text-secondary);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.hero-tagline {
    font-size: clamp(16px, 2.5vw, 20px); color: var(--text-secondary);
    margin-bottom: 36px;
}
.hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

/* ========== Team Avatar Wrapper ========== */
.team-avatar {
    width: 96px; height: 96px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--border);
}
/* ========== Responsive additions ========== */
@media (max-width: 968px) {
    nav .hamburger { display: block; }
    nav .nav-links { display: none; flex-direction: column; gap: 0; }
    nav .nav-links.open {
        display: flex; position: absolute; top: 52px; left: 0; right: 0;
        background: var(--nav-bg); backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 12px 0;
    }
    nav .nav-links.open a {
        padding: 12px 24px; font-size: 15px;
        border-bottom: 1px solid var(--border);
    }
    nav .nav-links.open a:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
    .section { padding: 60px 20px; }
    .music-grid, .features-grid, .contact-grid, .team-grid, .partner-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid .gallery-item-wide { grid-column: span 1; }
    .gallery-grid .gallery-item-wide img { height: 220px; }
    .page-header { padding: 120px 20px 40px; }
    .cta-section { padding: 80px 20px; }
    .partner-card { text-align: center; }
    .partner-logo img { width: 80px; height: 80px; }
    .timeline-item { flex-direction: column; align-items: center; text-align: center; }
    .job-card { padding: 24px 20px; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* ========== Team - Real Name & Works ========== */
.real-name {
    font-size: 0.85em;
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: 4px;
}

.team-card .works {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 0.88em;
    color: var(--text-secondary);
    line-height: 1.6;
}

.team-card .works strong {
    color: var(--text);
    display: block;
    margin-bottom: 6px;
    font-size: 0.9em;
}

.team-card .works ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-card .works ul li {
    padding: 3px 0;
    padding-left: 14px;
    position: relative;
}

.team-card .works ul li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ========== Partners - Enhanced ========== */
.partner-desc {
    font-size: 0.95em;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.partner-coop {
    font-size: 0.92em;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: 8px;
    padding: 12px 16px;
    background: var(--bg-alt);
    border-radius: 8px;
}

.partner-coop strong {
    color: var(--text);
}

.partner-en {
    font-size: 0.7em;
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: 8px;
    vertical-align: middle;
}

.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.partner-logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1d1d1f 0%, #424245 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-logo-placeholder span {
    color: #fff;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 2px;
}

/* ========== Copyright Notice ========== */
.copyright-notice {
    max-width: 700px;
    margin: 32px auto 0;
    padding: 16px 20px;
    font-size: 0.78em;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    background: var(--bg-alt);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

/* ========== Filter Bar ========== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 8px;
    padding: 0 20px;
}

.filter-btn {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 0.85em;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.filter-hint {
    text-align: center;
    font-size: 0.78em;
    color: var(--text-secondary);
    margin-bottom: 24px;
    opacity: 0.7;
}
