/* ===================================
   NOVA MUSIC GROUP - Premium Design System
   =================================== */

/* CSS Variables - Clean & Modern Color Palette */
:root {
    /* Primary Colors - Deep Blue & White */
    --color-primary: #1e2330;
    --color-secondary: #2a3142;
    --color-accent: #4a90e2;
    --color-accent-dark: #357abd;
    
    /* Neutrals - Clean Grayscale */
    --color-background: #0d1117;
    --color-surface: #161b22;
    --color-surface-light: #21262d;
    
    /* Text Colors */
    --color-text-primary: #f0f6fc;
    --color-text-secondary: #c9d1d9;
    --color-text-muted: #8b949e;
    
    /* Typography */
    --font-display: 'Raleway', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.3);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(15, 20, 25, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 100;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
}

.brand-nova {
    color: var(--color-accent);
}

.brand-studio {
    color: var(--color-text-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(42, 49, 66, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, var(--color-background) 0%, var(--color-primary) 100%);
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-full);
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 100;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: 12px;
    text-transform: uppercase;
}

.title-nova {
    display: block;
    background: linear-gradient(135deg, var(--color-accent) 0%, #6db3f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-studio {
    display: block;
    color: var(--color-text-primary);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--color-text-secondary);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.hero-partner {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--color-text-secondary);
    backdrop-filter: blur(10px);
}

.hero-partner i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-accent);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-surface) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: all var(--transition-base);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.stat-sublabel {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   TEAM SECTION
   =================================== */

.team-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-surface);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 3rem;
    transition: all var(--transition-base);
    min-height: 800px;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    border-color: rgba(74, 144, 226, 0.4);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.team-card-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: flex-start;
}

.team-avatar {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
}

.team-avatar-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--color-accent);
    display: block;
    box-shadow: var(--shadow-md);
}

.avatar-placeholder {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(42, 49, 66, 0.2) 100%);
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-accent);
}

.team-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin: 0;
}

.name-kr {
    font-size: 1.6rem;
    color: var(--color-text-secondary);
    margin-left: 1rem;
    font-weight: 500;
}

.team-role {
    font-size: 1.15rem;
    color: var(--color-accent);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.team-affiliation {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(74, 144, 226, 0.08);
    border-left: 3px solid var(--color-accent);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.team-affiliation i {
    color: var(--color-accent);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.team-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    transition: all var(--transition-base);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--color-accent);
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.team-credits,
.team-education {
    margin-top: 2rem;
    flex: 1;
}

.credits-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(74, 144, 226, 0.2);
}

.credits-list {
    list-style: none;
}

.credits-list li {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(74, 144, 226, 0.3);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.credits-list li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-left-color: var(--color-accent);
    transform: translateX(5px);
}

.credits-list strong {
    display: block;
    font-size: 1.15rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.credit-detail {
    display: block;
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.credit-role {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.4;
}

/* ===================================
   ARTISTS SECTION
   =================================== */

.artists-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-background);
}

.artist-category {
    margin-bottom: var(--spacing-xl);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.category-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-accent);
    white-space: nowrap;
}

.category-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.5) 0%, transparent 100%);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.artist-name-item {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-align: center;
    padding: 1.5rem 1rem;
    transition: all var(--transition-base);
    cursor: default;
    position: relative;
    line-height: 1.4;
}

.artist-name-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.artist-name-item:hover {
    color: var(--color-accent);
    transform: translateY(-5px);
}

.artist-name-item:hover::after {
    width: 80%;
}

.artist-card {
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.artist-card:hover {
    transform: translateY(-10px);
}

.artist-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(74, 144, 226, 0.3);
    transition: all var(--transition-base);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(42, 49, 66, 0.1) 100%);
    position: relative;
}

.artist-card:hover .artist-photo {
    border-color: var(--color-accent);
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.4);
}

.artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.artist-card:hover .artist-photo img {
    transform: scale(1.1);
}

.artist-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-accent);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(42, 49, 66, 0.15) 100%);
}

.artist-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
    transition: color var(--transition-base);
}

.artist-card:hover .artist-name {
    color: var(--color-accent);
}

.artist-role {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */

.portfolio-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-surface);
}

.portfolio-category {
    margin-bottom: var(--spacing-xl);
}

.portfolio-category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-lg);
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(74, 144, 226, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.portfolio-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.portfolio-thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    overflow: hidden;
}

.portfolio-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.portfolio-item:hover .portfolio-thumbnail img {
    transform: scale(1.08);
}

.portfolio-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(74, 144, 226, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all var(--transition-base);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.4);
}

.portfolio-item:hover .portfolio-play-btn {
    background: var(--color-accent);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.6);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.4;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-background) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
}

.contact-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.contact-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

.contact-btn i {
    transition: transform var(--transition-base);
}

.contact-btn:hover i {
    transform: translateX(5px);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--color-background);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-info {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-section h4 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1400px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    }
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 2rem;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .nav-menu {
        display: none; /* Implement mobile menu if needed */
    }
    
    .hero {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
    }
    
    .hero-partner {
        flex-direction: column;
        text-align: center;
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
        min-height: 240px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        padding: 2rem;
        min-height: auto;
    }
    
    .team-card-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1.5rem;
    }
    
    .team-name {
        font-size: 1.8rem;
    }
    
    .name-kr {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
        font-size: 1.4rem;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .artist-name-item {
        font-size: 1.1rem;
        padding: 1rem 0.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-avatar,
    .team-avatar-img,
    .avatar-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .artist-name-item {
        font-size: 1rem;
        padding: 0.75rem 0.25rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading State */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Smooth Transitions */
* {
    transition: opacity var(--transition-base), transform var(--transition-base);
}

a, button {
    transition: all var(--transition-base);
}