/* ==========================================
   文淑苑文化藝術傳播公司 - 全站样式
   wenshuyuanart.com
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================
   CSS Variables (Design Tokens)
   ========================================== */
:root {
    /* 主色调 - 墨海蓝（Ink Navy） */
    --primary: #0B1733;
    --primary-dark: #060E22;
    --primary-light: #162650;

    /* 辅色 - 香槟金（Champagne Gold） */
    --accent: #C8A35A;
    --accent-light: #D4B36A;
    --accent-dark: #B08E48;
    --accent-gradient: linear-gradient(135deg, #C8A35A 0%, #DCC07A 50%, #C8A35A 100%);

    /* 背景 - 博物馆色系 */
    --bg-white: #ffffff;
    --bg-light: #fefefe;
    --bg-cream: #FAF8F2;
    --bg-section: #F5F1EA;
    --bg-dark: #0B1733;

    /* 文字 - 静奢层级 */
    --text-dark: #111111;
    --text-body: #555555;
    --text-light: #8A8A8A;
    --text-muted: #ABABAB;
    --text-white: #ffffff;

    /* 边框与阴影 - 柔和扩散 */
    --border: #E7E1D6;
    --border-light: #EDE8DD;
    --shadow-sm: 0 1px 4px rgba(11, 23, 51, 0.04);
    --shadow: 0 2px 12px rgba(11, 23, 51, 0.06);
    --shadow-lg: 0 8px 30px rgba(11, 23, 51, 0.08);
    --shadow-hover: 0 6px 24px rgba(200, 163, 90, 0.15);

    /* 圆角 - 静奢比例 */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* 动画 - 克制过渡 */
    --transition: all 0.24s ease;
    --transition-fast: all 0.18s ease;
    --transition-slow: all 0.5s ease;

    /* 字体 */
    --font-serif-zh: 'Noto Serif SC', 'Songti SC', serif;
    --font-sans-zh: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --font-serif-en: 'Playfair Display', Georgia, serif;
    --font-sans-en: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* 间距 */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 120px;
    --spacing-section: 140px;

    /* 容器宽度 */
    --container-max: 1400px;
    --container-lg: 1200px;
    --container-content: 1040px;
    --container-md: 960px;
    --container-sm: 720px;
}

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

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

body {
    font-family: var(--font-sans-zh);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    background: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* English pages */
body.lang-en {
    font-family: var(--font-sans-en);
}

body.lang-en h1,
body.lang-en h2,
body.lang-en h3,
body.lang-en h4 {
    font-family: var(--font-serif-en);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

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

ul, ol {
    list-style: none;
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif-zh);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-dark);
    letter-spacing: 0.04em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.875rem, 4.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.625rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ==========================================
   Container
   ========================================== */
.container {
    width: 100%;
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 20px;
}

.container-lg {
    max-width: var(--container-max);
}

.container-sm {
    max-width: var(--container-sm);
    margin: 0 auto;
}

/* ==========================================
   Top Bar
   ========================================== */
.top-bar {
    background: var(--primary);
    color: var(--text-white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left a {
    color: var(--text-white);
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover {
    opacity: 1;
    color: var(--accent-light);
}

.top-bar-left i {
    color: var(--accent);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-cta-small {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
}

.btn-cta-small:hover {
    background: var(--accent-light);
    color: var(--primary-dark);
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    text-decoration: none;
}

.logo a:hover {
    opacity: 0.85;
}

.logo-icon {
    display: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-serif-zh);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

@media (min-width: 1200px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 5px;
    }
}

.nav-desktop > a,
.nav-dropdown > .nav-link {
    padding: 10px 15px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-desktop > a:hover,
.nav-dropdown:hover > .nav-link {
    color: var(--accent);
    background: var(--bg-cream);
}

.nav-desktop > a.active,
.nav-dropdown > .nav-link.active {
    color: var(--accent);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-link i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 280px;
    padding: 15px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-category {
    padding: 8px 20px 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-cream);
    color: var(--accent);
    padding-left: 25px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 10px 0;
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid var(--border);
}

.lang-switch a {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.lang-switch a:hover,
.lang-switch a.active {
    color: var(--accent);
}

.lang-switch .divider {
    color: var(--border);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

@media (min-width: 1200px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

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

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

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 80px 30px 30px;
    overflow-y: auto;
    transition: var(--transition-slow);
    z-index: 999;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

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

.nav-mobile > a {
    display: block;
    padding: 15px 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
}

.nav-mobile > a:hover,
.nav-mobile > a.active {
    color: var(--accent);
}

.nav-mobile-dropdown {
    border-bottom: 1px solid var(--border-light);
}

.nav-mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
}

.nav-mobile-dropdown-toggle i {
    transition: var(--transition);
}

.nav-mobile-dropdown.active .nav-mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-mobile-dropdown-menu {
    display: none;
    padding: 0 0 15px 15px;
}

.nav-mobile-dropdown.active .nav-mobile-dropdown-menu {
    display: block;
}

.nav-mobile-dropdown-menu .dropdown-category {
    padding: 10px 0 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}

.nav-mobile-dropdown-menu a {
    display: block;
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.nav-mobile-dropdown-menu a:hover {
    color: var(--accent);
}

.nav-mobile-lang {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.nav-mobile-lang a {
    padding: 10px 20px;
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    color: var(--text-body);
    font-weight: 500;
}

.nav-mobile-lang a.active {
    background: var(--accent);
    color: var(--primary-dark);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

@media (min-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

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

@media (min-width: 992px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    margin-bottom: 20px;
}

.hero h1 {
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 0.15em;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero h1 span {
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

@media (min-width: 992px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Hero Slideshow - Museum Grade */
.hero-slideshow {
    background: var(--primary-dark);
    min-height: 100vh;
}

.hero-slideshow .hero-bg {
    display: none;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide-active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
}

.hero-slideshow .container {
    grid-template-columns: 1fr;
}

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

.hero-slideshow .hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.hero-slideshow .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 24px;
    margin-bottom: 48px;
}

.hero-slideshow .hero-cta {
    justify-content: center;
    gap: 20px;
}

.hero-slideshow h1 {
    color: #fff;
}

@media (min-width: 992px) {
    .hero-slideshow .container {
        grid-template-columns: 1fr;
    }

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

    .hero-slideshow .hero-cta {
        justify-content: center;
    }
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.btn-gold {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.btn-gold:hover {
    background: var(--accent-dark);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-white);
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: var(--bg-white);
    border-color: rgba(255,255,255,0.6);
    font-weight: 700;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-dark {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.btn-dark:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ==========================================
   Section Styles
   ========================================== */
.section {
    padding: var(--spacing-xxl) 0;
}

.section-sm {
    padding: var(--spacing-xl) 0;
}

.section-cream {
    background: var(--bg-cream);
}

.section-light {
    background: var(--bg-section);
}

.section-dark {
    background: var(--primary);
    color: var(--text-white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--text-white);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header h2 {
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header .accent-line {
    width: 48px;
    height: 2px;
    background: var(--accent);
    margin: 24px auto 0;
}

/* ==========================================
   Brand Intro (公司介绍 + LOGO)
   ========================================== */
.brand-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .brand-intro {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
}

.brand-intro-text {
    flex: 1;
}

.brand-intro-text h2 {
    font-family: var(--font-serif-zh);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.brand-intro-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.2rem;
}

.brand-intro-text p:last-child {
    margin-bottom: 0;
}

.brand-intro-logo {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.brand-intro-logo img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

@media (min-width: 768px) {
    .brand-intro-logo img {
        max-width: 450px;
    }
}

@media (min-width: 992px) {
    .brand-intro-logo img {
        max-width: 500px;
    }
}

/* ==========================================
   Artist Cards
   ========================================== */
.artists-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .artists-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.artist-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.artist-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.artist-card:hover .artist-card-image img {
    transform: scale(1.08);
}

.artist-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.artist-card-content {
    padding: 25px;
}

.artist-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.artist-card-title {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.artist-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.artist-card-tags span {
    padding: 4px 10px;
    background: var(--bg-section);
    color: var(--text-light);
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
}

.artist-card-actions {
    display: flex;
    gap: 10px;
}

.artist-card-actions .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 0.85rem;
}

/* ==========================================
   Artists Marquee (Auto-scroll)
   ========================================== */
.artists-marquee {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 20px;
}

.artists-marquee-track {
    display: flex;
    gap: 24px;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}

.artists-marquee:hover .artists-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.artist-marquee-card {
    flex: 0 0 300px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.artist-marquee-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.artist-marquee-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.artist-marquee-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.artist-marquee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.artist-marquee-card:hover .artist-marquee-image img {
    transform: scale(1.08);
}

.artist-marquee-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.artist-marquee-content {
    padding: 25px;
}

.artist-marquee-content h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.artist-marquee-content h3 span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.artist-marquee-title {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.artist-marquee-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.artist-marquee-tags span {
    padding: 4px 10px;
    background: var(--bg-section);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-body);
}

@media (max-width: 600px) {
    .artist-marquee-card {
        flex: 0 0 260px;
    }

    .artist-marquee-image {
        height: 240px;
    }

    .artists-marquee-track {
        gap: 16px;
    }
}

/* ==========================================
   Course Cards
   ========================================== */
.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 1x4 Grid Layout */
.courses-grid-1x4 {
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .courses-grid-1x4 {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.course-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-card-image {
    height: 200px;
    overflow: hidden;
}

.course-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-card-content {
    padding: 25px;
}

.course-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.course-card-instructor {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.course-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.course-card-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

/* ==========================================
   Video Gallery
   ========================================== */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .video-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .video-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Featured Video - Large Display */
.featured-video {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 30px auto 0;
    padding-bottom: 54%;
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .featured-video {
        padding-bottom: 56.25%;
        border-radius: var(--radius);
    }
}

/* ==========================================
   Works Gallery
   ========================================== */
.works-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.works-tab {
    padding: 10px 25px;
    background: var(--bg-section);
    color: var(--text-body);
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.works-tab:hover,
.works-tab.active {
    background: var(--accent);
    color: var(--primary-dark);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .works-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.work-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

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

.work-item:hover img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 28, 60, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-overlay i {
    color: var(--bg-white);
    font-size: 2rem;
}

/* ==========================================
   Events
   ========================================== */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.event-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-card-image {
    height: 180px;
    background: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-image i {
    font-size: 3rem;
    color: var(--accent);
}

.event-card-content {
    padding: 25px;
}

.event-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.event-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.event-card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* ==========================================
   CTA Banner
   ========================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--bg-white);
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-banner .btn {
    margin: 0 10px;
}

/* ==========================================
   Floating CTA Button
   ========================================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.floating-cta .btn {
    padding: 14px 24px;
    box-shadow: 0 4px 20px rgba(11, 23, 51, 0.15);
}

.floating-cta .btn:hover {
    box-shadow: 0 6px 28px rgba(11, 23, 51, 0.2);
    transform: translateY(-2px);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--primary);
    color: var(--text-white);
    padding: var(--spacing-xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-col h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-sans-zh);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.footer-links a {
    display: block;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.footer-bottom a {
    color: var(--accent);
}

.footer-credit {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.footer-credit p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.footer-credit a {
    color: var(--accent);
}

/* ==========================================
   Page Header (Inner Pages)
   ========================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page-header h1 {
    color: var(--bg-white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   Artist Detail Page
   ========================================== */
.artist-hero {
    background: var(--bg-cream);
    padding: var(--spacing-xl) 0;
}

.artist-hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .artist-hero .container {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }
}

.artist-profile-image {
    text-align: center;
}

.artist-profile-image img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--bg-white);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.artist-profile-info h1 {
    margin-bottom: 10px;
}

.artist-profile-info h1 span {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-sans-en);
}

.artist-tagline {
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.artist-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.artist-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.artist-highlights span {
    padding: 6px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--text-body);
}

.artist-contact-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.artist-contact-quick a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-body);
    font-size: 0.95rem;
}

.artist-contact-quick i {
    color: var(--accent);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.timeline-year {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Accordion (Courses) */
.accordion {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--bg-cream);
}

.accordion-header h4 {
    font-size: 1.1rem;
    margin: 0;
}

.accordion-header i {
    color: var(--accent);
    transition: var(--transition);
}

.accordion-item.active .accordion-header {
    background: var(--bg-cream);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 25px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content h5 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.accordion-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.accordion-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.accordion-content li {
    list-style: disc;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-body);
}

/* ==========================================
   Contact Form
   ========================================== */
.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label span {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    min-width: 200px;
}

/* ==========================================
   Video Embed
   ========================================== */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.video-card-content {
    padding: 20px;
}

.video-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.video-card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================
   Lightbox
   ========================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bg-white);
    text-align: center;
    max-width: 80%;
}

.lightbox-caption h4 {
    color: var(--bg-white);
    margin-bottom: 5px;
}

.lightbox-caption p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   WeChat QR Modal
   ========================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--bg-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.modal-content h3 {
    margin-bottom: 20px;
}

.modal-content img {
    max-width: 250px;
    margin: 0 auto 20px;
    border-radius: var(--radius);
}

.modal-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================
   Pricing Table
   ========================================== */
.pricing-table {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-header {
    background: var(--primary);
    color: var(--bg-white);
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    color: var(--bg-white);
    margin-bottom: 10px;
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.pricing-header .price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-body {
    padding: 30px;
}

.pricing-body ul {
    margin-bottom: 25px;
}

.pricing-body li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.pricing-body li:last-child {
    border-bottom: none;
}

.pricing-body li i {
    color: var(--accent);
}

.pricing-body .btn {
    width: 100%;
}

/* ==========================================
   FAQ
   ========================================== */
.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-cream);
}

.faq-question h4 {
    font-size: 1rem;
    margin: 0;
    padding-right: 20px;
}

.faq-question i {
    color: var(--accent);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   Google Map
   ========================================== */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ==========================================
   Utilities
   ========================================== */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-xs) !important; }
.mb-2 { margin-bottom: var(--spacing-sm) !important; }
.mb-3 { margin-bottom: var(--spacing-md) !important; }
.mb-4 { margin-bottom: var(--spacing-lg) !important; }
.mb-5 { margin-bottom: var(--spacing-xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-xs) !important; }
.mt-2 { margin-top: var(--spacing-sm) !important; }
.mt-3 { margin-top: var(--spacing-md) !important; }
.mt-4 { margin-top: var(--spacing-lg) !important; }
.mt-5 { margin-top: var(--spacing-xl) !important; }

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

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

@media (max-width: 767px) {
    .d-none-mobile { display: none !important; }
}

@media (min-width: 768px) {
    .d-none-desktop { display: none !important; }
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInDown {
    animation: fadeInDown 0.6s ease forwards;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   金属光泽效果
   ========================================== */
.text-metallic-gold {
    background: linear-gradient(135deg, #C8A35A 0%, #DCC07A 25%, #C8A35A 50%, #DCC07A 75%, #C8A35A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 深蓝背景上的金色文字添加光泽 */
.section-dark .text-accent,
.footer h4,
.footer-col h4,
.cta-banner h2,
.page-header h1 {
    background: linear-gradient(135deg, #C8A35A 0%, #DCC07A 40%, #C8A35A 60%, #DCC07A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer 金色标题光泽效果 */
.footer-col h4 {
    background: linear-gradient(135deg, #C8A35A 0%, #DCC07A 40%, #C8A35A 60%, #DCC07A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   Homepage Museum-Grade Modules
   (zh/index.html only - home-* prefix)
   ========================================== */

/* --- Brand Intro (Museum) --- */
.home-brand-intro {
    max-width: var(--container-content);
    margin: 0 auto;
    text-align: center;
}

.home-brand-intro h2 {
    margin-bottom: 32px;
    letter-spacing: 0.08em;
}

.home-brand-intro p {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-body);
    text-align: justify;
    margin-bottom: 24px;
}

.home-brand-intro p:last-child {
    margin-bottom: 0;
}

/* --- Authority Badge Strip --- */
.home-authority-strip {
    background: var(--bg-white);
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.home-authority-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.home-authority-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-authority-icon {
    color: var(--accent);
    font-size: 0.95rem;
}

.home-authority-text {
    font-size: 0.875rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
    font-weight: 500;
}

.home-authority-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
}

@media (max-width: 767px) {
    .home-authority-items {
        flex-direction: column;
        gap: 12px;
    }
    .home-authority-divider {
        display: none;
    }
}

/* --- Exhibition-Guide Art Direction Cards --- */
.home-art-directions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .home-art-directions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .home-art-directions {
        grid-template-columns: repeat(4, 1fr);
    }
}

.home-art-card {
    display: block;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.24s ease;
    text-decoration: none;
    color: inherit;
}

.home-art-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    color: inherit;
}

.home-art-card:hover .home-art-card-image img {
    transform: scale(1.02);
}

.home-art-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.home-art-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-art-card-content {
    padding: 24px;
}

.home-art-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}

.home-art-card-artist {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.home-art-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.home-art-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.24s ease;
}

.home-art-card:hover .home-art-card-link {
    color: var(--accent);
    gap: 10px;
}

/* --- Artists Full-width Marquee --- */
.home-artists-marquee {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 10px 0 20px;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.home-artists-marquee-track {
    display: flex;
    width: max-content;
    animation: artists-marquee 55s linear infinite;
}

.home-artists-marquee-track:hover {
    animation-play-state: paused;
}

.home-artists-marquee-group {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
    padding-right: 24px;
}

@keyframes artists-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.home-artist-card {
    display: block;
    flex-shrink: 0;
    width: 260px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.24s ease;
    text-decoration: none;
    color: inherit;
}

.home-artist-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    color: inherit;
}

.home-artist-card:hover .home-artist-card-image img {
    transform: scale(1.02);
}

.home-artist-card-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.home-artist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-artist-card-label {
    padding: 24px;
}

.home-artist-card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.home-artist-card-label h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.home-artist-card-label h3 span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-sans-en);
}

.home-artist-card-title {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

.home-artist-card-credentials {
    margin-bottom: 14px;
    padding-left: 0;
}

.home-artist-card-credentials li {
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-body);
    padding: 3px 0;
    padding-left: 14px;
    position: relative;
}

.home-artist-card-credentials li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    transform: translateY(-50%);
}

.home-artist-card-statement {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

/* --- Exhibition-Label Course Highlights --- */
.home-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .home-highlights {
        grid-template-columns: repeat(4, 1fr);
    }
}

.home-highlight-item {
    text-align: left;
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.24s ease;
}

.home-highlight-item:hover {
    box-shadow: var(--shadow);
}

.home-highlight-number {
    display: block;
    font-family: var(--font-serif-en);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
}

.home-highlight-item h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.home-highlight-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* --- Screening Wall (Videos) --- */
.home-screening-featured {
    max-width: 960px;
    margin: 0 auto 48px;
}

.home-screening-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--primary);
}

.home-screening-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.home-screening-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
    letter-spacing: 0.03em;
}

.home-screening-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .home-screening-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .home-screening-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.home-screening-item {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-section);
}

.home-screening-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Annual Report Data Module --- */
.home-data-module {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .home-data-module {
        grid-template-columns: repeat(4, 1fr);
    }
}

.home-data-item {
    text-align: center;
    padding: 40px 20px;
}

.home-data-number {
    display: block;
    font-family: var(--font-serif-en);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.home-data-number small {
    font-size: 2rem;
    font-weight: 400;
}

.home-data-item h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.home-data-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* --- Featured Artworks Gallery (精选作品画廊) --- */
.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 12px;
}

.home-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.home-gallery-item-lg {
    grid-column: span 2;
    grid-row: span 1;
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-gallery-item:hover img {
    transform: scale(1.06);
}

.home-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px;
    background: linear-gradient(transparent, rgba(11, 23, 51, 0.85));
    color: var(--text-white);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.home-gallery-item:hover .home-gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.home-gallery-artist {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-light);
}

.home-gallery-overlay h4 {
    font-family: var(--font-serif-zh);
    color: var(--text-white);
    font-size: 1.15rem;
    margin: 4px 0;
}

.home-gallery-overlay p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 991px) {
    .home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 575px) {
    .home-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .home-gallery-item-lg {
        grid-column: span 1;
    }
}

/* --- Explore Art Courses (探索艺术课程) --- */
.home-courses-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.home-course-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    color: var(--text-body);
    text-decoration: none;
}

.home-course-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    color: var(--text-body);
}

.home-course-card-featured {
    grid-column: span 2;
    flex-direction: row;
}

.home-course-card-img {
    overflow: hidden;
    flex-shrink: 0;
}

.home-course-card-featured .home-course-card-img {
    width: 50%;
}

.home-course-card:not(.home-course-card-featured) .home-course-card-img {
    height: 200px;
}

.home-course-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-course-card:hover .home-course-card-img img {
    transform: scale(1.05);
}

.home-course-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-course-card-featured .home-course-card-content {
    padding: 40px;
}

.home-course-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.home-course-card-content h3 {
    font-family: var(--font-serif-zh);
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.home-course-card-featured .home-course-card-content h3 {
    font-size: 1.5rem;
}

.home-course-card-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 16px;
}

.home-course-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.home-course-card:hover .home-course-link {
    gap: 10px;
}

@media (max-width: 991px) {
    .home-courses-visual {
        grid-template-columns: 1fr;
    }
    .home-course-card-featured {
        grid-column: span 1;
        flex-direction: column;
    }
    .home-course-card-featured .home-course-card-img {
        width: 100%;
        height: 240px;
    }
}

@media (max-width: 575px) {
    .home-course-card:not(.home-course-card-featured) .home-course-card-img {
        height: 180px;
    }
    .home-course-card-content {
        padding: 20px;
    }
    .home-course-card-featured .home-course-card-content {
        padding: 24px;
    }
}

/* --- Student Showcase (学员风采) --- */
.home-students-showcase {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.home-student-story-featured {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.home-student-quote {
    position: relative;
    padding: 40px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.home-student-quote i {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 16px;
    display: block;
}

.home-student-quote p {
    font-family: var(--font-serif-zh);
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.home-student-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-student-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.home-student-course {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.08em;
}

.home-student-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.home-student-img {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
}

.home-student-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-student-img:hover img {
    transform: scale(1.08);
}

.home-student-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
}

.home-student-stat {
    text-align: center;
}

.home-student-stat-num {
    font-family: var(--font-serif-en);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1.2;
}

.home-student-stat-num small {
    font-size: 0.6em;
}

.home-student-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
    display: block;
}

@media (max-width: 767px) {
    .home-student-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    .home-student-stats {
        gap: 32px;
    }
    .home-student-stat-num {
        font-size: 2rem;
    }
    .home-student-quote {
        padding: 24px;
    }
}

/* --- Partners & Honors (合作舞台与荣誉) --- */
.home-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-partner-card {
    background: var(--bg-cream);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.home-partner-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--accent);
}

.home-partner-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.home-partner-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.home-partner-card h4 {
    font-family: var(--font-serif-zh);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.home-partner-card > p {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.home-partner-detail {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.7;
    display: block;
}

@media (max-width: 991px) {
    .home-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .home-partners-grid {
        grid-template-columns: 1fr;
    }
    .home-partner-card {
        padding: 28px 20px;
    }
}

/* --- Art Insights (艺术洞见专栏) --- */
.home-insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.home-insight-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.home-insight-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.home-insight-card-featured {
    grid-column: span 2;
    flex-direction: row;
}

.home-insight-img {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.home-insight-card-featured .home-insight-img {
    width: 45%;
}

.home-insight-card:not(.home-insight-card-featured) .home-insight-img {
    height: 200px;
}

.home-insight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-insight-card:hover .home-insight-img img {
    transform: scale(1.05);
}

.home-insight-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.home-insight-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.home-insight-card-featured .home-insight-content {
    padding: 40px;
}

.home-insight-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.home-insight-content h3 {
    font-family: var(--font-serif-zh);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.home-insight-card-featured .home-insight-content h3 {
    font-size: 1.4rem;
}

.home-insight-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 16px;
}

.home-insight-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.home-insight-card:hover .home-insight-link {
    gap: 10px;
}

@media (max-width: 991px) {
    .home-insights-grid {
        grid-template-columns: 1fr;
    }
    .home-insight-card-featured {
        grid-column: span 1;
        flex-direction: column;
    }
    .home-insight-card-featured .home-insight-img {
        width: 100%;
        height: 240px;
    }
}

@media (max-width: 575px) {
    .home-insight-card:not(.home-insight-card-featured) .home-insight-img {
        height: 180px;
    }
    .home-insight-content {
        padding: 20px;
    }
    .home-insight-card-featured .home-insight-content {
        padding: 24px;
    }
}

/* --- Newsletter Signup (邮件订阅) --- */
.home-newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
}

.home-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.home-newsletter-text h3 {
    font-family: var(--font-serif-zh);
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}

.home-newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.home-newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.home-newsletter-form input[type="email"] {
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 0.95rem;
    min-width: 280px;
    transition: var(--transition);
    font-family: var(--font-sans-zh);
}

.home-newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.home-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 767px) {
    .home-newsletter {
        padding: 48px 0;
    }
    .home-newsletter-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .home-newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .home-newsletter-form input[type="email"] {
        min-width: auto;
        width: 100%;
    }
}

/* --- Final CTA (Deep Navy Full-Screen) --- */
.home-final-cta {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    text-align: center;
}

.home-final-cta h2 {
    color: var(--accent);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #C8A35A 0%, #DCC07A 40%, #C8A35A 60%, #DCC07A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-final-cta-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.home-final-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.home-final-cta-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.home-final-cta-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.home-final-cta-info i {
    color: var(--accent);
    margin-right: 6px;
}

@media (max-width: 767px) {
    .home-final-cta {
        padding: 60px 0;
    }
    .home-final-cta-info {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================
   Print Styles
   ========================================== */
@media print {
    .top-bar,
    .header,
    .floating-cta,
    .footer-credit {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    a {
        color: var(--text-dark);
    }
}
