/* --- CSS Variables & Global Styles --- */
:root {
    --bg-color: #F8F5F2;
    --surface-color: #FFFFFF;
    --primary-text-color: #3D352E;
    --secondary-text-color: #7A6A5C;
    --accent-color: #A84C32; /* A classic Chinese seal red */
    --border-color: #EAE3DC;
    --gallery-bg-color: #A6A19D; /* 修改: 更浅的画廊背景色 */
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--primary-text-color);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-weight: 600; line-height: 1.3; }
h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h2.section-title { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 60px; }
a { text-decoration: none; color: var(--accent-color); transition: color 0.3s ease; }
a:hover { color: var(--primary-text-color); }
img { max-width: 100%; display: block; }

/* --- Reusable Components: Header, Footer, Buttons --- */
.site-header {
    background-color: rgba(248, 245, 242, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0; /* 修改: 从 20px 0 变为 10px 0 */
    position: sticky; top: 0; z-index: 1000;
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.site-logo { font-size: 1.75rem; font-weight: 700; color: var(--primary-text-color); }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 40px; }
.main-nav a { font-weight: 500; color: var(--primary-text-color); padding-bottom: 5px; border-bottom: 2px solid transparent; transition: all 0.3s ease; }
.main-nav a:hover { color: var(--accent-color); border-bottom-color: var(--accent-color); }
.main-nav a.active { color: var(--accent-color); font-weight: 600; border-bottom-color: var(--accent-color); }
.nav-button {
    background-color: var(--accent-color);
    color: var(--bg-color) !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav-button:hover { background-color: var(--primary-text-color); color: var(--bg-color) !important; }
.cta-button, .cta-button-outline {
    display: inline-block; padding: 14px 32px; font-size: 1rem;
    font-weight: 600; border-radius: 8px; transition: all 0.3s ease;
    cursor: pointer;
}
.cta-button {
    background-color: var(--primary-text-color);
    color: #FFFFFF;
    border: 1px solid var(--primary-text-color);
}
.cta-button:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}
.cta-button-outline { border: 1px solid var(--accent-color); color: var(--accent-color); }
.cta-button-outline:hover { background-color: var(--accent-color); color: var(--bg-color); }
.site-footer {
    background-color: var(--surface-color);
    padding: 40px 0 20px; /* 修改: 从 80px 0 40px 变为 40px 0 20px */
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px; /* 修改: 从 60px 变为 30px */
}
.footer-column h4 { font-size: 1.5rem; }
.footer-column h5 { font-size: 1rem; margin-bottom: 15px; color: var(--primary-text-color); }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 10px; }
.footer-column a { color: var(--secondary-text-color); }
.social-links { display: flex; gap: 20px; }
.social-links a { font-size: 1.25rem; color: var(--secondary-text-color); }
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px; /* 修改: 从 40px 变为 20px */
    text-align: center;
    color: var(--secondary-text-color);
    font-size: 0.9rem;
}
.hamburger-menu { display: none; background: none; border: none; cursor: pointer; z-index: 1001; }
.hamburger-menu span { display: block; width: 25px; height: 2px; background-color: var(--primary-text-color); margin: 5px 0; transition: all 0.3s ease; }

/* --- Page Specific Styles --- */
/* Hero Section */
.hero-section {
    position: relative; /* 为遮罩层定位 */
    text-align: center;
    padding: 240px 0; /* <<<<<<< 唯一的修改: 再次增加上下 padding 以显示更多背景图片内容 >>>>>>> */
    color: #FFFFFF; /* 默认文字颜色改为白色 */
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(40, 40, 40, 0.45); /* 半透明黑色遮罩层，让文字更清晰 */
    z-index: 1;
}
.hero-section .container {
    position: relative; /* 确保内容在遮罩层之上 */
    z-index: 2;
}
.hero-section .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9); /* 副标题使用带透明度的白色 */
    max-width: 700px;
    margin: 20px auto 0;
}

.hero-cta-container {
    margin-top: 40px;
}
.cta-button-hero {
    display: inline-block;
    background-color: var(--accent-color);
    color: #FFFFFF;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3); /* 可选：给按钮一个细微的亮边 */
    animation: float-animation 3s ease-in-out infinite;
}
.cta-button-hero:hover {
    background-color: #c45a40; /* 鼠标悬停时颜色加深一点 */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation-play-state: paused; /* 可选：鼠标悬停时暂停动画 */
}
.hero-cta-subtext {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9); /* 副标题使用带透明度的白色 */
    font-size: 1rem;
}

/* --- Digital Gallery Showcase (MODIFIED) --- */
.gallery-showcase {
    padding: 100px 0;
    background-color: var(--surface-color); /* 修改: 背景色改为白色 */
    color: var(--primary-text-color); /* 修改: 确保文本在白色背景上可读 */
}
.gallery-showcase .section-title {
    color: var(--primary-text-color); /* 修改: 标题颜色恢复为默认 */
}
.gallery-showcase .section-subtitle {
    text-align: center;
    color: var(--secondary-text-color); /* 修改: 副标题颜色恢复为默认 */
    font-size: 1.1rem;
    max-width: 600px;
    margin: -40px auto 60px;
}

.section-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px; /* 定义网格行高 */
    gap: 20px;
    margin-bottom: 60px;
}
.gallery-artwork {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
}
/* 定义不同尺寸作品的网格跨度 */
.gallery-artwork.artwork-tall {
    grid-row: span 2;
}
.gallery-artwork.artwork-wide {
    grid-column: span 2;
}
/* 修改：移除所有手动调整的 nth-child 规则，让布局自动生成 */

.gallery-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-artwork:hover img {
    transform: scale(1.05);
}
.artwork-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-artwork:hover .artwork-overlay {
    opacity: 1;
}
.artwork-info {
    color: #FFFFFF;
    width: 100%;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.gallery-artwork:hover .artwork-info {
    transform: translateY(0);
}
.artwork-info h3 {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 4px;
}
.artwork-info span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
/*
   下面的 .gallery-showcase .cta-button-outline 样式已被移除，
   以使其继承全局 .cta-button-outline 的样式 (红色边框和文字)，
   这在白色背景上更合适。
*/


/* News Section */
.news-section { padding: 100px 0; background-color: var(--surface-color); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.article-preview { background: var(--bg-color); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.article-preview:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.07); }
.article-preview img { width: 100%; height: 200px; object-fit: cover; }
.article-preview-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.article-category { font-size: 0.8rem; font-weight: 600; color: var(--accent-color); text-transform: uppercase; }
.article-preview-content h3 { font-size: 1.3rem; margin: 10px 0; }
.article-preview-content p { color: var(--secondary-text-color); margin-bottom: 20px; flex-grow: 1; }
.read-more { font-weight: 600; }

.news-section .hero-cta-subtext {
    color: var(--primary-text-color);
}

/* Customer Story Section */
.stories-from-the-studio { padding: 100px 0; }
.stories-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}
.stories-feed {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.story-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background-color: transparent;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}
.story-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.story-card-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}
.story-card-content .story-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
}
.story-card-content .story-title {
    font-size: 1.5rem;
    margin: 5px 0 10px;
    font-weight: 600;
}
.story-card-content .story-title a {
    color: var(--primary-text-color);
}
.story-card-content .story-title a:hover {
    color: var(--accent-color);
}
.story-card-content .story-excerpt {
    color: var(--secondary-text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}
.story-card-content .story-date {
    font-size: 0.9rem;
    color: var(--secondary-text-color);
}
.stories-sidebar .sidebar-widget {
    background-color: var(--surface-color);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 30px;
}
.stories-sidebar .search-form {
    display: flex;
}
.stories-sidebar .search-form input {
    flex-grow: 1;
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    border-radius: 6px 0 0 6px;
    font-size: 1rem;
    background-color: var(--bg-color);
}
.stories-sidebar .search-form input:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: -1px;
}
.stories-sidebar .search-form button {
    border: 1px solid var(--primary-text-color);
    background-color: var(--primary-text-color);
    color: white;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.stories-sidebar .search-form button:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}
.stories-sidebar .widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}
.stories-sidebar .recent-posts-widget ul {
    list-style-type: none;
}
.stories-sidebar .recent-posts-widget li {
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}
.stories-sidebar .recent-posts-widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.stories-sidebar .recent-posts-widget a {
    color: var(--primary-text-color);
    font-weight: 500;
}
.stories-sidebar .recent-posts-widget a:hover {
    color: var(--accent-color);
}
.sidebar-cta-container {
    margin-top: 25px;
    text-align: center; 
}

/* --- Artists Page Styles --- */
.page-header { padding: 60px 20px; text-align: center; border-bottom: 1px solid var(--border-color); }
.page-header h1 { font-size: 2.8rem; }
.page-header .subtitle { font-size: 1.1rem; color: var(--secondary-text-color); max-width: 600px; margin: 15px auto 0; }
.artist-directory { padding: 80px 0 100px; }
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 60px; }
.filter-btn { background: none; border: 1px solid var(--border-color); color: var(--secondary-text-color); padding: 10px 20px; border-radius: 20px; cursor: pointer; transition: all 0.3s ease; font-size: 1rem; }
.filter-btn.active, .filter-btn:hover { background-color: var(--accent-color); color: var(--surface-color); border-color: var(--accent-color); }
.artist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; }
.artist-card-long { background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 12px; padding: 30px; display: flex; align-items: center; gap: 30px; transition: all 0.3s ease; }
.artist-card-long:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.07); }
.artist-card-long img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.artist-info h3 { font-size: 1.5rem; }
.artist-info span { color: var(--accent-color); font-weight: 500; display: block; margin: 5px 0 15px; }
.artist-card-long.hide { display: none; }

/* START OF STYLE REVISION: Story Archive Page Styles */
.story-archive {
    padding: 80px 0 100px;
}

.story-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.story-card-archive {
    background: var(--surface-color);
    border-radius: 16px; /* 更圆润的边角 */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* 默认添加轻微阴影 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card-archive:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.story-card-archive-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--primary-text-color);
}
.story-card-archive-link:hover {
    color: var(--primary-text-color);
}
.story-card-archive-link:hover .story-title {
    color: var(--accent-color);
}

.story-card-archive-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.story-card-archive-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-card-archive .story-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.story-card-archive .story-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.story-card-archive .story-excerpt {
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}
/* 新增的卡片 "按钮" 样式 */
.story-card-cta {
    display: block;
    width: 100%;
    margin-top: auto; /* 将此元素推到卡片底部 */
    padding: 12px 20px;
    background-color: var(--primary-text-color);
    color: #FFFFFF;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.story-card-archive-link:hover .story-card-cta {
    background-color: var(--accent-color);
}


/* 筛选动画效果 */
.story-card-archive.hide {
    opacity: 0;
    transform: scale(0.95);
    /* 确保隐藏的卡片不占用空间 */
    /* JS会处理 display: none，但为了平滑过渡，可以设置高度 */
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    border: none;
}
/* END OF STYLE REVISION */

/* START OF FIX: New rule to ensure sidebar button text is white */
.stories-sidebar .recent-posts-widget .cta-button {
    color: #FFFFFF;
}
/* END OF FIX */

/* <<< 修改之处：在动画中加入了 scale 变换 >>> */
@keyframes float-animation {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* ======================================= */
/* --- START: Artist Profile Page Styles --- */
/* ======================================= */

.artist-profile-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
    padding: 80px 0 100px;
}
.artist-sidebar {
    position: sticky;
    top: 85px; 
}
.artist-sidebar .sidebar-sticky-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.artist-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--surface-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.artist-name {
    font-size: 2.2rem;
    margin-bottom: 1.5rem; /* 增加与下方盒子的间距 */
    color: var(--primary-text-color);
}

/* 新的社交关注框样式 */
.artist-follow-box {
    width: 100%;
    border: 1px solid var(--secondary-text-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}
.artist-follow-box p {
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.artist-follow-box .follow-icons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
.artist-follow-box .follow-icons a {
    color: var(--secondary-text-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.artist-follow-box .follow-icons a:hover {
    color: var(--accent-color);
}

/* 新的定制按钮样式 */
.cta-button.cta-button-accent {
    width: 100%;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--surface-color);
    font-size: 1.2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-transform: none; /* 如果需要，取消大写 */
    font-weight: 500;
}
.cta-button.cta-button-accent:hover {
    background-color: #c45a40; /* 沿用hero按钮的悬停色 */
    border-color: #c45a40;
    transform: translateY(-2px);
}

.artist-sidebar .cta-button {
    width: 100%;
}
.artist-specialties {
    margin-top: 1.5rem;
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}
.artist-specialties h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--primary-text-color);
    text-align: center;
}
.artist-specialties ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--secondary-text-color);
}
.artist-specialties li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}
.artist-specialties li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}
.artist-main-content .content-section {
    margin-bottom: 4rem;
}
.artist-main-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.portfolio-item {
    text-align: center;
}
.portfolio-item a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
}
.portfolio-item a:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-item a:hover img {
    transform: scale(1.05);
}
.portfolio-item .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(61, 53, 46, 0.6);
    color: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}
.portfolio-item a:hover .overlay {
    opacity: 1;
}
.portfolio-caption h4 {
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
    color: var(--primary-text-color);
}
.portfolio-caption span {
    color: var(--secondary-text-color);
    font-size: 0.9rem;
}

/* ======================================= */
/* ---  END: Artist Profile Page Styles  --- */
/* ======================================= */

/* ============================================= */
/* --- START: NEW Pricing Page Styles --- */
/* ============================================= */
.pricing-section {
    padding: 80px 0;
    background-color: var(--bg-color); /* 使用现有背景色 */
}
.pricing-section .section-title {
    margin-bottom: 20px;
}
.pricing-section .section-subtitle {
    max-width: 600px;
    margin: 0 auto 60px auto;
    color: var(--secondary-text-color);
    text-align: center;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}
.pricing-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 40px;
    border: 2px solid var(--border-color);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.pricing-card.highlighted {
    border-color: var(--accent-color); /* 使用主题色 */
    transform: scale(1.05);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color); /* 使用主题色 */
    color: var(--surface-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-text-color);
}
.price {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--primary-text-color);
}
.price .currency {
    font-size: 24px;
    font-weight: 600;
    margin-right: 4px;
}
.price .amount {
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}
.price .period {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-text-color);
    margin-left: 4px;
}
.plan-description {
    color: var(--secondary-text-color);
    margin-bottom: 30px;
    min-height: 40px;
}
.cta-button-pricing {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.cta-button-pricing.primary {
    background-color: var(--accent-color);
    color: var(--surface-color);
    border: 2px solid var(--accent-color);
}
.cta-button-pricing.primary:hover {
    background-color: #c45a40; /* 主题悬停色 */
    border-color: #c45a40;
}
.cta-button-pricing.secondary {
    background-color: var(--surface-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}
.cta-button-pricing.secondary:hover {
    background-color: var(--accent-color);
    color: var(--surface-color);
}
.cta-button-pricing.disabled {
    background-color: var(--border-color);
    color: var(--secondary-text-color);
    cursor: not-allowed;
    border: 2px solid var(--border-color);
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--primary-text-color);
}
.feature-list li i {
    color: var(--accent-color); /* 使用主题色 */
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}
.plan-footer {
    margin-top: 20px;
    font-size: 14px;
    color: var(--secondary-text-color);
}
/* ============================================= */
/* ---  END: NEW Pricing Page Styles  --- */
/* ============================================= */


/* Responsive */
@media (max-width: 992px) {
    .carousel-slide { min-width: 50%; }
    .stories-layout-grid { grid-template-columns: 1fr; }
    
    /* Responsive Gallery Grid for Tablet */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }
    .gallery-artwork:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
    .gallery-artwork.artwork-wide {
        grid-column: span 2;
    }

    /* Artist Profile Page Responsive (Tablet) */
    .artist-profile-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 40px;
    }
    .artist-sidebar {
        position: static;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 3rem;
    }
    /* Pricing Responsive */
    .pricing-card.highlighted {
        transform: scale(1.02);
    }
}
@media (max-width: 768px) {
    .main-nav {
        display: none; position: fixed; top: 0; right: -100%;
        width: 80%; max-width: 300px; height: 100vh;
        background-color: var(--bg-color); padding-top: 100px;
        flex-direction: column; justify-content: flex-start;
        transition: right 0.4s ease-in-out; z-index: 1000;
        border-left: 1px solid var(--border-color);
    }
    .main-nav.is-open { display: flex; right: 0; }
    .main-nav ul { flex-direction: column; align-items: flex-start; width: 100%; padding: 0 30px; }
    .main-nav ul li { width: 100%; }
    .main-nav a { display: block; padding: 15px 0; }
    .hamburger-menu { display: block; }
    .hamburger-menu.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger-menu.is-active span:nth-child(2) { opacity: 0; }
    .hamburger-menu.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .news-grid, .artist-grid { grid-template-columns: 1fr; }
    .artist-card-long { flex-direction: column; text-align: center; }
    .story-card { flex-direction: column; align-items: center; text-align: center; }
    .carousel-slide { min-width: 100%; }
    .carousel-btn.prev { left: 10px; }
    .carousel-btn.next { right: 10px; }

    /* Responsive Gallery Grid for Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 350px;
    }
     .gallery-artwork.artwork-wide {
        grid-column: auto;
    }
    /* Pricing Responsive */
    .pricing-card.highlighted {
        transform: scale(1); /* 在移动端取消放大 */
    }
}