/* 全局样式重置 */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Roboto", "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", BlinkMacSystemFont, -apple-system, "Segoe UI", "Microsoft Yahei", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    background-color: #000;
    color: #fff;
}

a {
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #0066ff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    width: 185px;
    height: auto;
    object-fit: contain;
    margin-bottom: 5px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #0066ff;
}

.logo-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #0066ff;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #0066ff;
}

.nav-right {
    font-size: 18px;
}

.search-icon {
    cursor: pointer;
}

/* Page Container */
.page-container {
    position: relative;
    min-height: 100vh;
    padding-top: 70px;
}

.page {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.page.active {
    display: block;
}

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

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

.home-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.home-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-words {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.word-item {
    font-size: 48px;
    font-weight: 450;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 8px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out forwards;
}

.word-item:nth-child(1) { animation-delay: 0.2s; opacity: 0; }
.word-item:nth-child(2) { animation-delay: 0.5s; opacity: 0; }
.word-item:nth-child(3) { animation-delay: 0.8s; opacity: 0; }

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

/* Other Hero Styles */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cases-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.cases-hero .hero-image-wrapper {
    background: url('https://neeko-copilot.bytedance.net/api/text2image?prompt=modern%20architecture%20building%20exterior%20with%20curved%20green%20roof%20overlooking%20river%20at%20sunset%20professional%20photography&image_size=landscape_16_9') no-repeat center;
    background-size: cover;
}

.office-hero {
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

.office-hero .hero-image-wrapper {
    background: url('https://neeko-copilot.bytedance.net/api/text2image?prompt=modern%20minimalist%20office%20interior%20with%20white%20furniture%20and%20concrete%20walls%20professional%20photography&image_size=landscape_16_9') no-repeat center;
    background-size: cover;
}

.about-hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.about-hero .hero-image-wrapper {
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibition-hero {
    background: linear-gradient(135deg, #1a0a2e 0%, #0a0a0a 100%);
}

.exhibition-hero .hero-image-wrapper {
    background: url('https://neeko-copilot.bytedance.net/api/text2image?prompt=modern%20art%20exhibition%20hall%20with%20colorful%20hanging%20installations%20and%20people%20viewing%20professional%20photography&image_size=landscape_16_9') no-repeat center;
    background-size: cover;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.title-en {
    display: block;
    font-size: 64px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 10px;
}

.title-cn {
    display: block;
    font-size: 24px;
    color: #0066ff;
    margin-top: 10px;
    letter-spacing: 4px;
}

.office-badge {
    position: absolute;
    top: 50px;
    right: 100px;
    font-size: 120px;
    font-weight: bold;
    color: rgba(0, 102, 255, 0.1);
    z-index: 1;
}

.exhibition-badge {
    position: absolute;
    top: 50px;
    right: 100px;
    font-size: 120px;
    font-weight: bold;
    color: rgba(0, 102, 255, 0.2);
    z-index: 1;
}

.hero-title-large {
    text-align: center;
    z-index: 2;
}

.title-en-big {
    display: block;
    font-size: 72px;
    font-weight: bold;
    color: #0066ff;
    letter-spacing: 8px;
}

.title-cn-big {
    display: block;
    font-size: 32px;
    color: #fff;
    margin-top: 15px;
    letter-spacing: 4px;
}

.title-sub {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    letter-spacing: 2px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin: 0;
    letter-spacing: 4px;
}

.section-title-cn {
    display: block;
    font-size: 14px;
    color: #0066ff;
    margin-top: 10px;
    letter-spacing: 2px;
}

.section-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 60px;
}

.btn-primary {
    background-color: #0066ff;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #0055cc;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 40px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #0066ff;
    color: #0066ff;
}

/* Designer Section */
.designer-section {
    padding: 40px 30px;
    background-color: #0a0a0a;
}

.designer-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    max-width: 1300px;
    margin: 0 auto;
}

.designer-item {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    cursor: pointer;
}

.designer-item:hover {
    transform: translateY(-5px);
    border-color: #0066ff;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

/* Designer Item Content */
.designer-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.designer-avatar {
    width: 100%;
    flex: 1;
    object-fit: cover;
    min-height: 0;
}

.designer-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(0, 0, 0, 0.8);
}

.designer-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.designer-position {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.designer-tags {
    font-size: 10px;
    color: #0066ff;
}

.designer-views {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

/* Loading/Error/Empty Styles */
.loading-text, .error-text, .empty-text, .debug-text {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    font-size: 14px;
}

.loading-text {
    color: rgba(255, 255, 255, 0.6);
}

.error-text {
    color: #ff4444;
}

.empty-text {
    color: rgba(255, 255, 255, 0.4);
}

.debug-text {
    color: #ffff00;
    font-family: monospace;
    margin-bottom: 10px;
    padding: 10px;
    background: rgba(255, 255, 0, 0.1);
    border-radius: 4px;
}

/* Cases Section */
.cases-section {
    padding: 40px 30px;
    background-color: #000;
}

.cases-grid {
    display: grid;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.home-grid {
    grid-template-columns: repeat(3, 1fr);
}

.home-grid .case-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.case-item {
    background-color: #1a1a1a;
    overflow: hidden;
    transition: all 0.3s;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.case-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
}

.case-item.large .case-img {
    aspect-ratio: 16/10;
}

.case-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
}

.case-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-category {
    font-size: 12px;
    color: #0066ff;
}

.case-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Cases Showcase */
.cases-showcase {
    padding: 60px 30px;
    background-color: #0a0a0a;
}

.cases-grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.case-card {
    background-color: #1a1a1a;
    overflow: hidden;
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.case-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.case-card-info {
    padding: 20px;
}

.case-card-category {
    display: block;
    font-size: 12px;
    color: #0066ff;
    margin-bottom: 8px;
}

.case-card-name {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Office Features */
.office-features {
    padding: 60px 30px;
    background-color: #0a0a0a;
}

.feature-header {
    text-align: center;
    margin-bottom: 60px;
}

.feature-header h2 {
    font-size: 32px;
    color: #fff;
    margin: 0 0 15px;
}

.feature-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.1);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 16px;
    color: #fff;
    margin: 0 0 10px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

.designer-avatars {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid rgba(0, 102, 255, 0.3);
}

/* About Content */
.about-content {
    padding: 60px 30px;
    background-color: #0a0a0a;
}

.about-section-box {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 8px;
}

.about-section-box h3 {
    font-size: 20px;
    color: #0066ff;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.about-section-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0 0 15px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.partner-logo {
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.cert-card {
    width: 150px;
    height: 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.team-photo {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    margin: 20px 0;
}

.about-info-bottom {
    text-align: center;
    padding: 20px;
}

.about-info-bottom h4 {
    font-size: 24px;
    color: #fff;
    margin: 0 0 10px;
}

.about-info-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    margin: 0 0 20px;
}

.about-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-item {
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* Exhibition Content */
.exhibition-content {
    padding: 60px 30px;
    background-color: #0a0a0a;
}

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

.exhibition-card {
    background-color: #1a1a1a;
    overflow: hidden;
    transition: all 0.3s;
}

.exhibition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.exhibition-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.exhibition-info {
    padding: 20px;
}

.exhibition-category {
    display: block;
    font-size: 12px;
    color: #0066ff;
    margin-bottom: 8px;
}

.exhibition-name {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.exhibition-date {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* About Us Section */
.about-section {
    padding: 40px 30px;
    background-color: #0a0a0a;
}

.team-image {
    max-width: 1200px;
    margin: 0 auto;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    position: relative;
}

.team-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><rect fill="%231a1a1a" width="1200" height="300"/><text x="600" y="150" text-anchor="middle" fill="%230066ff" font-size="48" font-weight="bold">ABOUT US</text></svg>') no-repeat center;
    background-size: cover;
}

.about-info {
    text-align: center;
    margin-top: 30px;
}

.about-info h3 {
    font-size: 28px;
    color: #fff;
    margin: 0;
}

.about-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px;
    margin: 10px 0 30px;
}

/* CTA Section */
.cta-section {
    padding: 60px 30px;
    background-color: #000;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    background-color: #0066ff;
    color: #fff;
    border: none;
    padding: 20px 30px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    line-height: 1.5;
}

.cta-btn:hover {
    background-color: #0055cc;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 60px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo .logo-text {
    display: block;
    font-size: 32px;
}

.footer-logo .logo-sub {
    font-size: 12px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-nav li a:hover {
    color: #0066ff;
}

.footer-contact p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 5px 0;
}

/* Showcase Section */
.showcase-section {
    padding: 60px 30px;
    background-color: #000;
}

.showcase-item {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.showcase-item:last-child {
    margin-bottom: 0;
}

.showcase-header {
    margin-bottom: 30px;
}

.showcase-header h3 {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    margin: 0;
    letter-spacing: 3px;
}

.showcase-title-cn {
    display: block;
    font-size: 14px;
    color: #0066ff;
    margin-top: 8px;
    letter-spacing: 2px;
}

.showcase-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.showcase-img {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f0f 100%);
    transition: all 0.3s;
    cursor: pointer;
}

.showcase-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.showcase-img-large {
    aspect-ratio: 4/3;
}

.showcase-img-medium {
    aspect-ratio: 1/1;
}

.showcase-img-full {
    width: 100%;
    aspect-ratio: 16/9;
}

.expo-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.expo-grid .showcase-img {
    aspect-ratio: 1/1;
}

.office-grid {
    grid-template-columns: 1fr;
}

.showcase-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-showcase {
    background-color: #0066ff;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-showcase:hover {
    background-color: #0055cc;
    transform: translateY(-2px);
}

.btn-showcase-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 35px;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-showcase-outline:hover {
    border-color: #0066ff;
    color: #0066ff;
}

/* Responsive */
@media (max-width: 1200px) {
    .designer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .exhibition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .word-item {
        font-size: 24px;
    }
    
    .designer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .home-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid-3x3 {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .exhibition-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-nav {
        gap: 15px;
    }
    
    .office-badge,
    .exhibition-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .designer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .title-en {
        font-size: 40px;
    }
    
    .title-en-big {
        font-size: 48px;
    }
}