:root {
            --primary: #1A1512;
            --primary-strong: #241A13;
            --tea-brown: #2C1E14;
            --sprout-green: #5E7F5A;
            --porcelain-green: #3F6655;
            --accent: #C49A5C;
            --bg: #F6F1E7;
            --surface: #FFFFFF;
            --text: #1A1512;
            --muted: #6B625A;
            --line: rgba(26, 21, 18, 0.12);
            --radius: 16px;
            --shadow-sm: 0 2px 12px rgba(26, 21, 18, 0.06);
            --shadow-md: 0 8px 24px rgba(26, 21, 18, 0.08);
            --shadow-lg: 0 16px 40px rgba(26, 21, 18, 0.12);
            --transition: 0.25s ease;
        }
        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            background-color: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { color: inherit; text-decoration: none; transition: color var(--transition); }
        img { max-width: 100%; display: block; }
        button, input { font-family: inherit; outline: none; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--tea-brown);
            height: 68px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(196, 154, 92, 0.2);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .brand-logo {
            font-size: 1.15rem;
            font-weight: 700;
            color: #F6F1E7;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .brand-logo:hover { color: var(--accent); }
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 1.75rem;
        }
        .desktop-nav a {
            font-size: 0.925rem;
            color: rgba(246, 241, 231, 0.82);
            padding: 0.4rem 0.25rem;
            border-bottom: 2px solid transparent;
            transition: color var(--transition), border-color var(--transition);
            white-space: nowrap;
        }
        .desktop-nav a:hover { color: var(--accent); }
        .desktop-nav a.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
            font-weight: 600;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #F6F1E7;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.25rem;
            line-height: 1;
        }
        .mobile-menu-btn:hover { color: var(--accent); }
        /* Mobile Nav */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background: var(--tea-brown);
            padding: 1.25rem 1.5rem;
            z-index: 99;
            border-bottom: 1px solid rgba(196, 154, 92, 0.3);
            flex-direction: column;
            gap: 0.75rem;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        }
        .mobile-nav.open { display: flex; }
        .mobile-nav a {
            color: #F6F1E7;
            font-size: 1rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(246, 241, 231, 0.1);
        }
        .mobile-nav a.active { color: var(--accent); font-weight: 600; }
        /* Hero */
        .hero-section {
            background-image: linear-gradient(135deg, rgba(26, 21, 18, 0.92) 0%, rgba(44, 30, 20, 0.82) 60%, rgba(36, 26, 19, 0.9) 100%), url('/assets/images/backpic/back-1.jpg');
            background-size: cover;
            background-position: center;
            min-height: 520px;
            display: flex;
            align-items: center;
            padding: 4rem 0 3rem;
            position: relative;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, rgba(26, 21, 18, 0.55), transparent);
            pointer-events: none;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .hero-text h1 {
            font-size: 2.25rem;
            line-height: 1.4;
            color: #F6F1E7;
            margin: 0 0 1.25rem;
            font-weight: 700;
            letter-spacing: 0.01em;
        }
        .hero-text .hero-sub {
            font-size: 1rem;
            line-height: 1.85;
            color: rgba(246, 241, 231, 0.82);
            margin-bottom: 1.75rem;
            max-width: 540px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 2rem;
            border-radius: 999px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            border: none;
            line-height: 1.5;
        }
        .btn-primary {
            background: var(--accent);
            color: #1A1512;
        }
        .btn-primary:hover {
            background: #d4aa6c;
            box-shadow: 0 6px 20px rgba(196, 154, 92, 0.35);
            transform: translateY(-2px);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: none;
        }
        .btn-outline {
            background: transparent;
            color: #F6F1E7;
            border: 2px solid rgba(246, 241, 231, 0.5);
        }
        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(196, 154, 92, 0.08);
        }
        .hero-quiz-card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 1.75rem 1.5rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(196, 154, 92, 0.25);
        }
        .hero-quiz-card h2 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--tea-brown);
            margin: 0 0 1rem;
            text-align: center;
        }
        .quiz-question {
            margin-bottom: 1rem;
        }
        .quiz-question p {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text);
            margin: 0 0 0.5rem;
        }
        .quiz-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .quiz-option {
            background: var(--bg);
            border: 1.5px solid var(--line);
            border-radius: 999px;
            padding: 0.4rem 1rem;
            font-size: 0.8125rem;
            color: var(--muted);
            cursor: pointer;
            transition: all var(--transition);
        }
        .quiz-option:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        .quiz-option.selected {
            background: var(--accent);
            color: #1A1512;
            border-color: var(--accent);
            font-weight: 600;
        }
        .quiz-result {
            background: #f9f5ee;
            border: 1.5px dashed var(--accent);
            border-radius: 12px;
            padding: 0.9rem 1.1rem;
            margin-top: 0.75rem;
            font-size: 0.875rem;
            color: var(--tea-brown);
            line-height: 1.6;
        }
        .quiz-result strong { color: var(--porcelain-green); }
        /* Pill Nav */
        .pill-nav {
            background: var(--surface);
            border-bottom: 1px solid var(--line);
            padding: 0.85rem 0;
        }
        .pill-nav .container {
            display: flex;
            gap: 0.6rem;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .pill-nav .container::-webkit-scrollbar { display: none; }
        .pill-chip {
            flex-shrink: 0;
            background: var(--bg);
            border: 1.5px solid var(--line);
            border-radius: 999px;
            padding: 0.45rem 1.25rem;
            font-size: 0.875rem;
            color: var(--muted);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .pill-chip:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        .pill-chip.active {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            font-weight: 600;
        }
        /* Section Common */
        section { padding: 4rem 0; }
        .section-header {
            margin-bottom: 2rem;
        }
        .section-header h2 {
            font-size: 1.65rem;
            font-weight: 700;
            color: var(--tea-brown);
            margin: 0 0 0.75rem;
            line-height: 1.4;
        }
        .section-header p {
            font-size: 0.95rem;
            color: var(--muted);
            max-width: 680px;
            line-height: 1.85;
            margin: 0;
        }
        .section-tag {
            display: inline-block;
            background: rgba(196, 154, 92, 0.14);
            color: #a07d42;
            font-size: 0.8125rem;
            font-weight: 600;
            padding: 0.3rem 1rem;
            border-radius: 999px;
            margin-bottom: 0.75rem;
            letter-spacing: 0.04em;
        }
        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--line);
            transition: box-shadow var(--transition), transform var(--transition);
        }
        .card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--tea-brown);
            margin: 0 0 0.5rem;
            line-height: 1.45;
        }
        .card p {
            font-size: 0.875rem;
            color: var(--muted);
            line-height: 1.7;
            margin: 0;
        }
        .card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(196, 154, 92, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--porcelain-green);
        }
        /* Steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        .step-item {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 1.5rem;
            border: 1px solid var(--line);
            position: relative;
        }
        .step-item .step-num {
            font-size: 2.2rem;
            font-weight: 700;
            color: rgba(196, 154, 92, 0.35);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .step-item h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--tea-brown);
            margin: 0 0 0.5rem;
        }
        .step-item p {
            font-size: 0.875rem;
            color: var(--muted);
            margin: 0;
            line-height: 1.7;
        }
        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        .stat-card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 1.75rem 1.25rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--line);
        }
        .stat-card .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--porcelain-green);
            line-height: 1.2;
            margin-bottom: 0.4rem;
        }
        .stat-card .stat-label {
            font-size: 0.875rem;
            color: var(--muted);
        }
        /* Testimonials */
        .testimonial-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        .testimonial-card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 1.5rem;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
        }
        .testimonial-card .quote {
            font-size: 0.925rem;
            color: var(--text);
            line-height: 1.75;
            margin-bottom: 1rem;
        }
        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .testimonial-card .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(196, 154, 92, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--porcelain-green);
        }
        .testimonial-card .author-name {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--tea-brown);
        }
        .testimonial-card .author-meta {
            font-size: 0.75rem;
            color: var(--muted);
        }
        /* Personas */
        .persona-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .persona-tag {
            background: var(--surface);
            border: 1.5px solid var(--line);
            border-radius: 999px;
            padding: 0.6rem 1.4rem;
            font-size: 0.925rem;
            color: var(--tea-brown);
            font-weight: 500;
            transition: all var(--transition);
        }
        .persona-tag:hover {
            border-color: var(--accent);
            background: rgba(196, 154, 92, 0.06);
        }
        /* Topic Cards */
        .topic-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
        }
        .topic-card {
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--line);
            transition: box-shadow var(--transition), transform var(--transition);
        }
        .topic-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .topic-card img {
            width: 100%;
            height: 170px;
            object-fit: cover;
        }
        .topic-card .topic-body {
            padding: 1.1rem 1.25rem;
        }
        .topic-card .topic-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--tea-brown);
            margin: 0 0 0.4rem;
        }
        .topic-card .topic-body p {
            font-size: 0.8125rem;
            color: var(--muted);
            line-height: 1.65;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        /* News / CMS */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .news-card {
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--line);
            transition: box-shadow var(--transition), transform var(--transition);
        }
        .news-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .news-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .news-card .news-body {
            padding: 1.2rem 1.25rem;
        }
        .news-card .news-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--tea-brown);
            margin: 0 0 0.5rem;
            line-height: 1.45;
        }
        .news-card .news-body p {
            font-size: 0.875rem;
            color: var(--muted);
            line-height: 1.65;
            margin: 0 0 0.75rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card .news-meta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.75rem;
            color: var(--muted);
        }
        .news-card .news-meta .news-tag {
            background: rgba(196, 154, 92, 0.14);
            color: #a07d42;
            padding: 0.2rem 0.8rem;
            border-radius: 999px;
            font-weight: 500;
        }
        .empty-state {
            background: var(--surface);
            border: 1.5px dashed var(--line);
            border-radius: var(--radius);
            padding: 2.5rem 1.5rem;
            text-align: center;
            color: var(--muted);
            font-size: 0.95rem;
        }
        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }
        .gallery-grid img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid var(--line);
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .gallery-grid img:hover {
            transform: scale(1.04);
            box-shadow: var(--shadow-md);
        }
        /* FAQ */
        .faq-list {
            max-width: 780px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 14px;
            margin-bottom: 0.75rem;
            overflow: hidden;
            transition: box-shadow var(--transition);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1rem 1.25rem;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--tea-brown);
            transition: color var(--transition);
        }
        .faq-question:hover { color: var(--accent); }
        .faq-question .faq-icon {
            flex-shrink: 0;
            font-size: 1.2rem;
            color: var(--muted);
            transition: transform var(--transition);
        }
        .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 1.25rem;
        }
        .faq-item.open .faq-answer {
            max-height: 250px;
            padding: 0 1.25rem 1rem;
        }
        .faq-answer p {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.75;
            margin: 0;
            border-top: 1px solid var(--line);
            padding-top: 0.75rem;
        }
        /* CTA */
        .cta-section {
            background: var(--tea-brown);
            padding: 3.5rem 0;
        }
        .cta-section .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .cta-section h2 {
            font-size: 1.5rem;
            color: #F6F1E7;
            margin: 0;
            font-weight: 700;
            line-height: 1.4;
        }
        .cta-section p {
            font-size: 0.9rem;
            color: rgba(246, 241, 231, 0.75);
            margin: 0.25rem 0 0;
        }
        .cta-form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .cta-form input {
            background: rgba(246, 241, 231, 0.08);
            border: 1.5px solid rgba(246, 241, 231, 0.3);
            border-radius: 999px;
            padding: 0.7rem 1.25rem;
            color: #F6F1E7;
            font-size: 0.9rem;
            min-width: 260px;
            transition: border-color var(--transition);
        }
        .cta-form input::placeholder {
            color: rgba(246, 241, 231, 0.5);
        }
        .cta-form input:focus {
            border-color: var(--accent);
        }
        /* Footer */
        .site-footer {
            background: var(--primary);
            padding: 3.5rem 0 1.5rem;
            color: rgba(246, 241, 231, 0.72);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        .footer-brand h3 {
            font-size: 1.1rem;
            color: #F6F1E7;
            margin: 0 0 0.75rem;
            font-weight: 700;
        }
        .footer-brand p {
            font-size: 0.875rem;
            color: rgba(246, 241, 231, 0.55);
            line-height: 1.7;
            margin: 0;
        }
        .footer-col h4 {
            font-size: 0.925rem;
            color: #F6F1E7;
            margin: 0 0 0.75rem;
            font-weight: 600;
        }
        .footer-col a {
            display: block;
            font-size: 0.875rem;
            color: rgba(246, 241, 231, 0.55);
            padding: 0.3rem 0;
            transition: color var(--transition);
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(246, 241, 231, 0.1);
            padding-top: 1.25rem;
            font-size: 0.8125rem;
            color: rgba(246, 241, 231, 0.4);
            text-align: center;
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonial-row { grid-template-columns: repeat(2, 1fr); }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .hero-grid { grid-template-columns: 1fr; gap: 1.75rem; }
            .hero-section { padding: 2.5rem 0 2.5rem; min-height: auto; }
            .hero-text h1 { font-size: 1.6rem; }
            .hero-text .hero-sub { font-size: 0.9rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .steps-grid { grid-template-columns: 1fr; }
            .testimonial-row { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
            .cta-section .container { flex-direction: column; align-items: flex-start; }
            .cta-form input { min-width: 100%; }
            section { padding: 2.5rem 0; }
            .section-header h2 { font-size: 1.35rem; }
            .container { padding-left: 16px; padding-right: 16px; }
        }
        @media (max-width: 520px) {
            .gallery-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .hero-text h1 { font-size: 1.4rem; }
            .btn { padding: 0.65rem 1.5rem; font-size: 0.875rem; }
            .quiz-option { font-size: 0.75rem; padding: 0.35rem 0.85rem; }
        }

:root {
            --primary: #1A1512;
            --primary-strong: #241A13;
            --tea-brown: #2C1E14;
            --sprout-green: #5E7F5A;
            --porcelain-green: #3F6655;
            --accent: #C49A5C;
            --bg: #F6F1E7;
            --surface: #FFFFFF;
            --text: #1A1512;
            --muted: #6B625A;
            --line: rgba(26, 21, 18, 0.12);
            --radius: 16px;
            --shadow-sm: 0 2px 12px rgba(26, 21, 18, 0.06);
            --shadow-md: 0 8px 24px rgba(26, 21, 18, 0.08);
            --shadow-lg: 0 16px 40px rgba(26, 21, 18, 0.12);
            --transition: 0.25s ease;
        }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            background-color: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { color: inherit; text-decoration: none; transition: color var(--transition); }
        img { max-width: 100%; display: block; }
        button, input { font-family: inherit; outline: none; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--tea-brown);
            height: 68px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(196, 154, 92, 0.2);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .brand-logo {
            font-size: 1.15rem;
            font-weight: 700;
            color: #F6F1E7;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .brand-logo:hover { color: var(--accent); }
        .desktop-nav { display: flex; align-items: center; gap: 1.75rem; }
        .desktop-nav a {
            font-size: 0.925rem;
            color: rgba(246, 241, 231, 0.82);
            padding: 0.4rem 0.25rem;
            border-bottom: 2px solid transparent;
            transition: color var(--transition), border-color var(--transition);
            white-space: nowrap;
        }
        .desktop-nav a:hover { color: var(--accent); }
        .desktop-nav a.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
            font-weight: 600;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #F6F1E7;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.25rem;
            line-height: 1;
        }
        .mobile-menu-btn:hover { color: var(--accent); }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background: var(--tea-brown);
            padding: 1.25rem 1.5rem;
            z-index: 99;
            border-bottom: 1px solid rgba(196, 154, 92, 0.3);
            flex-direction: column;
            gap: 0.75rem;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        }
        .mobile-nav.open { display: flex; }
        .mobile-nav a {
            color: #F6F1E7;
            font-size: 1rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(246, 241, 231, 0.1);
        }
        .mobile-nav a.active { color: var(--accent); font-weight: 600; }
        .breadcrumb-section {
            background: linear-gradient(180deg, #F6F1E7 0%, #FBF7EF 100%);
            border-bottom: 1px solid var(--line);
            padding: 1.5rem 0 1rem;
        }
        .breadcrumb {
            font-size: 0.875rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb a { color: var(--porcelain-green); }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: var(--accent); }
        .breadcrumb .current { color: var(--muted); font-weight: 500; }
        .category-chip {
            display: inline-block;
            padding: 0.35rem 1.1rem;
            border-radius: 999px;
            background: var(--surface);
            border: 1px solid var(--line);
            font-size: 0.8rem;
            color: var(--porcelain-green);
            font-weight: 500;
            margin-top: 0.75rem;
            transition: all var(--transition);
        }
        .category-chip:hover {
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: var(--shadow-sm);
        }
        .article-main { padding: 3rem 0 4rem; }
        .article-header-area { margin-bottom: 2rem; }
        .article-h1 {
            font-size: 2rem;
            line-height: 1.45;
            color: var(--text);
            margin: 0 0 1.25rem;
            font-weight: 700;
            letter-spacing: 0.01em;
        }
        .article-meta-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem 1.5rem;
            padding: 1rem 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            font-size: 0.85rem;
            color: var(--muted);
        }
        .article-meta-bar .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }
        .article-meta-bar .meta-icon {
            color: var(--accent);
        }
        .article-cover {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .article-cover img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .article-body {
            font-size: 1rem;
            line-height: 1.9;
            color: var(--text);
        }
        .article-body h2 {
            font-size: 1.5rem;
            line-height: 1.45;
            margin: 2.5rem 0 1rem;
            color: var(--primary);
            font-weight: 700;
        }
        .article-body h3 {
            font-size: 1.2rem;
            line-height: 1.5;
            margin: 2rem 0 0.875rem;
            color: var(--primary-strong);
            font-weight: 600;
        }
        .article-body h4 {
            font-size: 1.05rem;
            margin: 1.5rem 0 0.75rem;
            color: var(--primary-strong);
            font-weight: 600;
        }
        .article-body p { margin: 0 0 1.25rem; }
        .article-body ul, .article-body ol {
            margin: 0 0 1.5rem 1.5rem;
            padding: 0;
        }
        .article-body ul { list-style-type: disc; }
        .article-body ol { list-style-type: decimal; }
        .article-body li { margin-bottom: 0.5rem; }
        .article-body blockquote {
            margin: 2rem 0;
            padding: 1.25rem 1.5rem;
            background: rgba(196, 154, 92, 0.08);
            border-left: 4px solid var(--accent);
            border-radius: 0 var(--radius) var(--radius) 0;
            color: var(--muted);
            font-style: italic;
        }
        .article-body img {
            border-radius: var(--radius);
            margin: 1.5rem 0;
            box-shadow: var(--shadow-md);
        }
        .article-body a {
            color: var(--porcelain-green);
            border-bottom: 1px solid rgba(63, 102, 85, 0.3);
        }
        .article-body a:hover { color: var(--accent); border-bottom-color: var(--accent); }
        .pull-quote {
            margin: 2.5rem 0;
            padding: 2rem 2.5rem;
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            position: relative;
        }
        .pull-quote::before {
            content: '"';
            position: absolute;
            top: 0.5rem;
            left: 1.5rem;
            font-size: 3.5rem;
            color: var(--accent);
            opacity: 0.3;
            line-height: 1;
            font-family: serif;
        }
        .pull-quote p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--primary);
            margin: 0;
            font-weight: 500;
            position: relative;
            padding-left: 1.5rem;
        }
        .not-found-box {
            padding: 4rem 2rem;
            text-align: center;
            background: var(--surface);
            border-radius: var(--radius);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
        }
        .not-found-box h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .not-found-box p {
            color: var(--muted);
            margin-bottom: 1.5rem;
        }
        .tag-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem;
            margin: 2rem 0;
            padding: 1.25rem 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }
        .tag-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            margin-right: 0.25rem;
        }
        .tag-chip {
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 999px;
            background: rgba(196, 154, 92, 0.12);
            color: var(--porcelain-green);
            font-size: 0.8rem;
            font-weight: 500;
            transition: all var(--transition);
        }
        .tag-chip:hover {
            background: var(--accent);
            color: #1A1512;
        }
        .share-row {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2.5rem;
        }
        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.55rem 1.25rem;
            border-radius: 999px;
            border: 1px solid var(--line);
            background: var(--surface);
            font-size: 0.85rem;
            color: var(--muted);
            cursor: pointer;
            transition: all var(--transition);
        }
        .share-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: var(--shadow-sm);
        }
        .related-section { margin-top: 3rem; }
        .section-title {
            font-size: 1.5rem;
            line-height: 1.4;
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-weight: 700;
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
        }
        .related-card {
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--line);
            transition: all var(--transition);
        }
        .related-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: rgba(196, 154, 92, 0.4);
        }
        .related-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .related-card-body {
            padding: 1rem 1.25rem 1.25rem;
        }
        .related-card-title {
            font-size: 1rem;
            line-height: 1.5;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .related-card-summary {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 0.75rem;
        }
        .related-card-meta {
            font-size: 0.78rem;
            color: var(--muted);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .cta-box {
            margin-top: 3rem;
            padding: 2.5rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--tea-brown) 100%);
            border-radius: var(--radius);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            box-shadow: var(--shadow-lg);
        }
        .cta-box h3 {
            font-size: 1.3rem;
            color: #F6F1E7;
            margin: 0 0 0.5rem;
        }
        .cta-box p {
            font-size: 0.9rem;
            color: rgba(246, 241, 231, 0.75);
            margin: 0;
            max-width: 480px;
        }
        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.7rem 1.75rem;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            border: none;
            line-height: 1.5;
        }
        .btn-primary {
            background: var(--accent);
            color: #1A1512;
        }
        .btn-primary:hover {
            background: #d4aa6c;
            box-shadow: 0 6px 20px rgba(196, 154, 92, 0.35);
            transform: translateY(-2px);
        }
        .btn-primary:active { transform: translateY(0); box-shadow: none; }
        .btn-outline-light {
            background: transparent;
            color: #F6F1E7;
            border: 2px solid rgba(246, 241, 231, 0.5);
        }
        .btn-outline-light:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(196, 154, 92, 0.1);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--line);
        }
        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(196, 154, 92, 0.06);
        }
        .site-footer {
            background: var(--tea-brown);
            color: #F6F1E7;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-brand h3 {
            font-size: 1.2rem;
            margin: 0 0 0.75rem;
            color: var(--accent);
        }
        .footer-brand p {
            font-size: 0.88rem;
            color: rgba(246, 241, 231, 0.7);
            line-height: 1.7;
            margin: 0;
        }
        .footer-col h4 {
            font-size: 0.95rem;
            color: #F6F1E7;
            margin: 0 0 0.75rem;
            font-weight: 600;
        }
        .footer-col a {
            display: block;
            font-size: 0.85rem;
            color: rgba(246, 241, 231, 0.65);
            margin-bottom: 0.5rem;
            transition: color var(--transition);
        }
        .footer-col a:hover { color: var(--accent); }
        .footer-bottom {
            border-top: 1px solid rgba(246, 241, 231, 0.15);
            padding-top: 1.25rem;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(246, 241, 231, 0.55);
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .site-header { height: 60px; }
            .mobile-nav { top: 60px; }
            .article-h1 { font-size: 1.5rem; }
            .article-main { padding: 2rem 0 3rem; }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .cta-box { flex-direction: column; align-items: flex-start; }
            .related-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 520px) {
            .article-h1 { font-size: 1.25rem; line-height: 1.5; }
            .article-meta-bar { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
            .article-body { font-size: 0.95rem; line-height: 1.85; }
            .article-body h2 { font-size: 1.25rem; }
            .article-body h3 { font-size: 1.08rem; }
            .pull-quote { padding: 1.5rem; }
            .pull-quote p { font-size: 1rem; padding-left: 0.5rem; }
            .cta-box { padding: 1.75rem 1.25rem; }
        }
        .article-body .wp-block-image, .article-body figure { margin: 1.5rem 0; }
        .article-body .wp-block-image img, .article-body figure img { border-radius: var(--radius); }
        .article-body .wp-caption-text, .article-body figcaption { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 0.5rem; }

:root {
            --primary: #1A1512;
            --primary-strong: #241A13;
            --tea-brown: #2C1E14;
            --sprout-green: #5E7F5A;
            --porcelain-green: #3F6655;
            --accent: #C49A5C;
            --bg: #F6F1E7;
            --surface: #FFFFFF;
            --text: #1A1512;
            --muted: #6B625A;
            --line: rgba(26, 21, 18, 0.12);
            --radius: 16px;
            --shadow-sm: 0 2px 12px rgba(26, 21, 18, 0.06);
            --shadow-md: 0 8px 24px rgba(26, 21, 18, 0.08);
            --shadow-lg: 0 16px 40px rgba(26, 21, 18, 0.12);
            --transition: 0.25s ease;
        }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            background-color: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { color: inherit; text-decoration: none; transition: color var(--transition); }
        img { max-width: 100%; display: block; }
        button, input { font-family: inherit; outline: none; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--tea-brown);
            height: 68px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(196, 154, 92, 0.2);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .brand-logo {
            font-size: 1.15rem;
            font-weight: 700;
            color: #F6F1E7;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .brand-logo:hover { color: var(--accent); }
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 1.75rem;
        }
        .desktop-nav a {
            font-size: 0.925rem;
            color: rgba(246, 241, 231, 0.82);
            padding: 0.4rem 0.25rem;
            border-bottom: 2px solid transparent;
            transition: color var(--transition), border-color var(--transition);
            white-space: nowrap;
        }
        .desktop-nav a:hover { color: var(--accent); }
        .desktop-nav a.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
            font-weight: 600;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #F6F1E7;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.25rem;
            line-height: 1;
        }
        .mobile-menu-btn:hover { color: var(--accent); }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background: var(--tea-brown);
            padding: 1.25rem 1.5rem;
            z-index: 99;
            border-bottom: 1px solid rgba(196, 154, 92, 0.3);
            flex-direction: column;
            gap: 0.75rem;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        }
        .mobile-nav.open { display: flex; }
        .mobile-nav a {
            color: #F6F1E7;
            font-size: 1rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(246, 241, 231, 0.1);
        }
        .mobile-nav a.active { color: var(--accent); font-weight: 600; }
        /* Category Hero */
        .category-hero {
            background: var(--primary-strong);
            padding: 3rem 0 4.5rem;
            position: relative;
            clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
            margin-bottom: 2.5rem;
        }
        .category-hero .container {
            position: relative;
            z-index: 2;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 21, 18, 0.95) 0%, rgba(44, 30, 20, 0.88) 55%, rgba(36, 26, 19, 0.93) 100%), url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
        }
        .category-hero-inner {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 3;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: rgba(246, 241, 231, 0.65);
            margin-bottom: 1.25rem;
            flex-wrap: wrap;
        }
        .breadcrumb a { color: rgba(246, 241, 231, 0.75); }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: rgba(196, 154, 92, 0.6); }
        .category-hero h1 {
            font-size: 2rem;
            line-height: 1.4;
            color: #F6F1E7;
            margin: 0 0 1rem;
            font-weight: 700;
            letter-spacing: 0.01em;
        }
        .category-hero .cat-desc {
            font-size: 0.95rem;
            line-height: 1.8;
            color: rgba(246, 241, 231, 0.78);
            max-width: 540px;
            margin-bottom: 0;
        }
        .category-hero-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: var(--surface);
            aspect-ratio: 4/3;
        }
        .category-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* Filter bar */
        .filter-bar {
            padding: 1rem 0 2rem;
        }
        .filter-bar-inner {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            overflow-x: auto;
            padding-bottom: 0.5rem;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
        }
        .filter-chip {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1.25rem;
            border-radius: 999px;
            background: var(--surface);
            border: 1px solid var(--line);
            color: var(--muted);
            font-size: 0.875rem;
            white-space: nowrap;
            cursor: pointer;
            transition: all var(--transition);
        }
        .filter-chip:hover {
            border-color: var(--accent);
            color: var(--text);
            background: rgba(196, 154, 92, 0.06);
        }
        .filter-chip.active {
            background: var(--accent);
            color: #1A1512;
            border-color: var(--accent);
            font-weight: 600;
        }
        /* Feature strip */
        .feature-strip {
            padding: 2rem 0 3rem;
        }
        .feature-strip-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }
        .feature-strip-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 1.5rem 1.25rem;
            text-align: center;
            transition: all var(--transition);
        }
        .feature-strip-card:hover {
            box-shadow: var(--shadow-sm);
            border-color: rgba(196, 154, 92, 0.3);
            transform: translateY(-2px);
        }
        .feature-strip-icon {
            font-size: 1.75rem;
            color: var(--accent);
            margin-bottom: 0.75rem;
        }
        .feature-strip-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.3rem;
        }
        .feature-strip-value {
            font-size: 0.8rem;
            color: var(--muted);
        }
        /* Section headings */
        .section-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.75rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .section-heading h2 {
            font-size: 1.5rem;
            line-height: 1.4;
            margin: 0;
            color: var(--text);
            font-weight: 700;
        }
        .section-heading .heading-line {
            flex: 1;
            height: 1px;
            background: var(--line);
            min-width: 40px;
        }
        .see-more-link {
            font-size: 0.9rem;
            color: var(--porcelain-green);
            font-weight: 600;
            padding: 0.4rem 1rem;
            border-radius: 999px;
            border: 1px solid var(--porcelain-green);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .see-more-link:hover {
            background: var(--porcelain-green);
            color: #F6F1E7;
        }
        /* Post cards */
        .post-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        .post-card {
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            border: 1px solid var(--line);
        }
        .post-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .post-card-image {
            aspect-ratio: 16/10;
            overflow: hidden;
            position: relative;
            background: var(--primary-strong);
        }
        .post-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .post-card:hover .post-card-image img {
            transform: scale(1.04);
        }
        .post-card-body {
            padding: 1rem 1.15rem 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            flex: 1;
        }
        .post-card-tag {
            display: inline-flex;
            align-items: center;
            padding: 0.2rem 0.75rem;
            border-radius: 999px;
            font-size: 0.75rem;
            background: rgba(196, 154, 92, 0.12);
            color: #8b6f3e;
            align-self: flex-start;
            font-weight: 600;
        }
        .post-card h3,
        .post-card .card-title {
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.5;
            color: var(--text);
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .post-card .card-excerpt {
            font-size: 0.8rem;
            color: var(--muted);
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin: 0;
        }
        .post-card-meta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.75rem;
            color: var(--muted);
            margin-top: auto;
        }
        .post-card-meta .dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--accent);
        }
        .empty-state {
            padding: 3rem 2rem;
            text-align: center;
            background: var(--surface);
            border-radius: var(--radius);
            border: 1px dashed var(--line);
            color: var(--muted);
            font-size: 0.95rem;
            grid-column: 1 / -1;
        }
        /* Featured section */
        .featured-section {
            padding: 3rem 0;
        }
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        .featured-card {
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--line);
            transition: all var(--transition);
        }
        .featured-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .featured-card-image {
            aspect-ratio: 16/9;
            overflow: hidden;
        }
        .featured-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .featured-card:hover .featured-card-image img {
            transform: scale(1.04);
        }
        .featured-card-body {
            padding: 1rem 1.15rem 1.25rem;
        }
        .featured-card h3 {
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.5;
            margin: 0 0 0.5rem;
            color: var(--text);
        }
        .featured-card .featured-excerpt {
            font-size: 0.8rem;
            color: var(--muted);
            line-height: 1.7;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        /* Gallery */
        .gallery-section {
            padding: 3rem 0;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }
        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1/1;
            position: relative;
            cursor: pointer;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .gallery-item:hover {
            box-shadow: var(--shadow-md);
            transform: scale(1.02);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.06);
        }
        .gallery-item .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.25rem 0.9rem 0.75rem;
            background: linear-gradient(to top, rgba(26, 21, 18, 0.8), transparent);
            font-size: 0.75rem;
            color: rgba(246, 241, 231, 0.9);
            opacity: 0;
            transition: opacity var(--transition);
            pointer-events: none;
        }
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        /* Reviews */
        .reviews-section {
            padding: 3rem 0;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        .review-card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 1.5rem;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .review-card:hover {
            box-shadow: var(--shadow-md);
        }
        .review-card .review-text {
            font-size: 0.9rem;
            color: var(--text);
            line-height: 1.7;
            margin: 0 0 1rem;
        }
        .review-card .review-author {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.8rem;
            color: var(--muted);
        }
        .review-card .review-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--sprout-green);
            color: #F6F1E7;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 600;
            flex-shrink: 0;
        }
        /* CTA */
        .cta-section {
            padding: 3.5rem 0 4rem;
        }
        .cta-box {
            background: var(--primary-strong);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 2rem;
            align-items: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(196, 154, 92, 0.2), transparent 70%);
            pointer-events: none;
        }
        .cta-box h2 {
            font-size: 1.35rem;
            color: #F6F1E7;
            margin: 0 0 0.75rem;
            font-weight: 700;
        }
        .cta-box p {
            font-size: 0.9rem;
            color: rgba(246, 241, 231, 0.72);
            margin: 0;
            line-height: 1.7;
        }
        .cta-box .btn {
            flex-shrink: 0;
        }
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 2rem;
            border-radius: 999px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            border: none;
            line-height: 1.5;
        }
        .btn-primary {
            background: var(--accent);
            color: #1A1512;
        }
        .btn-primary:hover {
            background: #d4aa6c;
            box-shadow: 0 6px 20px rgba(196, 154, 92, 0.35);
            transform: translateY(-2px);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: none;
        }
        .btn-outline {
            background: transparent;
            color: #F6F1E7;
            border: 2px solid rgba(246, 241, 231, 0.5);
        }
        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(196, 154, 92, 0.08);
        }
        .btn-outline-light {
            background: transparent;
            color: var(--text);
            border: 2px solid var(--line);
        }
        .btn-outline-light:hover {
            border-color: var(--accent);
            color: #8b6f3e;
            background: rgba(196, 154, 92, 0.06);
        }
        /* Footer */
        .site-footer {
            background: var(--primary);
            color: rgba(246, 241, 231, 0.72);
            padding: 3.5rem 0 2rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        .footer-brand h3 {
            color: #F6F1E7;
            font-size: 1.1rem;
            margin: 0 0 0.75rem;
            font-weight: 700;
        }
        .footer-brand p {
            font-size: 0.85rem;
            line-height: 1.8;
            margin: 0;
            color: rgba(246, 241, 231, 0.58);
        }
        .footer-col h4 {
            color: var(--accent);
            font-size: 0.9rem;
            margin: 0 0 0.75rem;
            font-weight: 600;
        }
        .footer-col a {
            display: block;
            font-size: 0.85rem;
            color: rgba(246, 241, 231, 0.62);
            padding: 0.3rem 0;
            transition: color var(--transition);
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(246, 241, 231, 0.1);
            padding-top: 1.25rem;
            font-size: 0.8rem;
            color: rgba(246, 241, 231, 0.45);
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .post-grid { grid-template-columns: repeat(3, 1fr); }
            .featured-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-grid { grid-template-columns: repeat(3, 1fr); }
            .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .category-hero {
                padding: 2.5rem 0 3.5rem;
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
            }
            .category-hero-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .category-hero h1 {
                font-size: 1.5rem;
            }
            .category-hero-image {
                aspect-ratio: 16/9;
                max-width: 480px;
            }
            .post-grid { grid-template-columns: repeat(2, 1fr); }
            .featured-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .reviews-grid { grid-template-columns: 1fr; }
            .cta-box {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 2rem 1.5rem;
            }
            .cta-box .btn { justify-self: center; }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .section-heading h2 {
                font-size: 1.25rem;
            }
        }
        @media (max-width: 520px) {
            body { font-size: 15px; }
            .container { padding-left: 16px; padding-right: 16px; }
            .brand-logo { font-size: 1rem; }
            .category-hero h1 { font-size: 1.3rem; }
            .post-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
            .feature-strip-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
            .feature-strip-card { padding: 1rem 0.75rem; }
            .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
            .footer-brand { grid-column: auto; }
            .btn { padding: 0.65rem 1.5rem; font-size: 0.9rem; }
            .section-heading h2 { font-size: 1.15rem; }
            .filter-chip { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
            .cta-box h2 { font-size: 1.15rem; }
        }

:root {
            --primary: #1A1512;
            --primary-strong: #241A13;
            --tea-brown: #2C1E14;
            --sprout-green: #5E7F5A;
            --porcelain-green: #3F6655;
            --accent: #C49A5C;
            --accent-strong: #d4aa6c;
            --bg: #F6F1E7;
            --surface: #FFFFFF;
            --text: #1A1512;
            --muted: #6B625A;
            --line: rgba(26, 21, 18, 0.12);
            --line-strong: rgba(26, 21, 18, 0.2);
            --radius: 16px;
            --radius-sm: 10px;
            --radius-lg: 20px;
            --shadow-sm: 0 2px 12px rgba(26, 21, 18, 0.06);
            --shadow-md: 0 8px 24px rgba(26, 21, 18, 0.08);
            --shadow-lg: 0 16px 40px rgba(26, 21, 18, 0.12);
            --transition: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            background-color: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        img {
            max-width: 100%;
            display: block;
        }
        button,
        input,
        select {
            font-family: inherit;
            outline: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--tea-brown);
            height: 68px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(196, 154, 92, 0.2);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .brand-logo {
            font-size: 1.15rem;
            font-weight: 700;
            color: #F6F1E7;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .brand-logo:hover {
            color: var(--accent);
        }
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 1.75rem;
        }
        .desktop-nav a {
            font-size: 0.925rem;
            color: rgba(246, 241, 231, 0.82);
            padding: 0.4rem 0.25rem;
            border-bottom: 2px solid transparent;
            transition: color var(--transition), border-color var(--transition);
            white-space: nowrap;
        }
        .desktop-nav a:hover {
            color: var(--accent);
        }
        .desktop-nav a.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
            font-weight: 600;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #F6F1E7;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.25rem;
            line-height: 1;
        }
        .mobile-menu-btn:hover {
            color: var(--accent);
        }
        .mobile-menu-btn:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 4px;
            border-radius: 4px;
        }

        /* Mobile Nav */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background: var(--tea-brown);
            padding: 1.25rem 1.5rem;
            z-index: 99;
            border-bottom: 1px solid rgba(196, 154, 92, 0.3);
            flex-direction: column;
            gap: 0.75rem;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        }
        .mobile-nav.open {
            display: flex;
        }
        .mobile-nav a {
            color: #F6F1E7;
            font-size: 1rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(246, 241, 231, 0.1);
        }
        .mobile-nav a.active {
            color: var(--accent);
            font-weight: 600;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 2rem;
            border-radius: 999px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            border: none;
            line-height: 1.5;
        }
        .btn-primary {
            background: var(--accent);
            color: #1A1512;
        }
        .btn-primary:hover {
            background: var(--accent-strong);
            box-shadow: 0 6px 20px rgba(196, 154, 92, 0.35);
            transform: translateY(-2px);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: none;
        }
        .btn-primary:focus-visible {
            outline: 3px solid rgba(196, 154, 92, 0.7);
            outline-offset: 3px;
        }
        .btn-outline {
            background: transparent;
            color: #F6F1E7;
            border: 2px solid rgba(246, 241, 231, 0.5);
        }
        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(196, 154, 92, 0.08);
        }
        .btn-outline:active {
            transform: translateY(1px);
        }
        .btn-outline:focus-visible {
            outline: 3px solid rgba(196, 154, 92, 0.5);
            outline-offset: 3px;
        }

        /* Category Hero (H1 area) */
        .category-hero {
            position: relative;
            background-image: linear-gradient(135deg, rgba(26, 21, 18, 0.93) 0%, rgba(44, 30, 20, 0.85) 60%, rgba(36, 26, 19, 0.92) 100%), url('/assets/images/backpic/back-4.webp');
            background-size: cover;
            background-position: center;
            padding: 3rem 0 2.5rem;
            color: #F6F1E7;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to top, rgba(26, 21, 18, 0.5), transparent);
            pointer-events: none;
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: rgba(246, 241, 231, 0.7);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: rgba(246, 241, 231, 0.7);
            transition: color var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .sep {
            color: rgba(246, 241, 231, 0.4);
            user-select: none;
        }
        .breadcrumb .current {
            color: var(--accent);
            font-weight: 500;
        }
        .category-hero h1 {
            font-size: 2rem;
            line-height: 1.4;
            font-weight: 700;
            margin: 0 0 0.75rem;
            letter-spacing: 0.01em;
            position: relative;
            z-index: 1;
        }
        .category-hero .hero-desc {
            font-size: 0.95rem;
            line-height: 1.85;
            color: rgba(246, 241, 231, 0.82);
            max-width: 680px;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* Section common */
        .section {
            padding: 3.5rem 0;
        }
        .section-light {
            background: var(--surface);
        }
        .section-deep {
            background: var(--bg);
        }
        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 0.5rem;
            line-height: 1.45;
            color: var(--text);
        }
        .section-sub {
            font-size: 0.95rem;
            color: var(--muted);
            margin: 0 0 2rem;
            line-height: 1.75;
        }

        /* Filter bar */
        .filter-bar {
            background: var(--surface);
            border-bottom: 1px solid var(--line);
            padding: 1rem 0;
            position: sticky;
            top: 68px;
            z-index: 50;
        }
        .filter-bar .container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) transparent;
        }
        .filter-bar .container::-webkit-scrollbar {
            height: 4px;
        }
        .filter-bar .container::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 4px;
        }
        .filter-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--muted);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .chip {
            display: inline-flex;
            align-items: center;
            padding: 0.45rem 1.15rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            border: 1.5px solid var(--line);
            background: transparent;
            color: var(--muted);
            white-space: nowrap;
            flex-shrink: 0;
            transition: all var(--transition);
            user-select: none;
        }
        .chip:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(196, 154, 92, 0.06);
        }
        .chip.active {
            background: var(--accent);
            border-color: var(--accent);
            color: #1A1512;
            font-weight: 600;
        }
        .chip:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Feature strip */
        .feature-strip {
            padding: 1.5rem 0;
            background: var(--bg);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        .feature-item {
            background: var(--surface);
            border-radius: var(--radius-sm);
            padding: 1.25rem;
            text-align: center;
            border: 1px solid var(--line);
            transition: all var(--transition);
        }
        .feature-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }
        .feature-item .feature-num {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--porcelain-green);
            line-height: 1.3;
            letter-spacing: -0.02em;
        }
        .feature-item .feature-label {
            font-size: 0.85rem;
            color: var(--muted);
            margin-top: 0.3rem;
        }

        /* Artist card grid */
        .artist-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .artist-card {
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--line);
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .artist-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
            border-color: rgba(196, 154, 92, 0.4);
        }
        .artist-card .card-img {
            height: 200px;
            overflow: hidden;
            position: relative;
            background: #e8dfd0;
        }
        .artist-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .artist-card:hover .card-img img {
            transform: scale(1.04);
        }
        .artist-card .card-body {
            padding: 1.25rem 1.25rem 1.5rem;
        }
        .artist-card .card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }
        .tag {
            display: inline-flex;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 500;
            background: rgba(94, 127, 90, 0.12);
            color: var(--porcelain-green);
            line-height: 1.4;
            white-space: nowrap;
        }
        .tag-accent {
            background: rgba(196, 154, 92, 0.15);
            color: #8b6d3f;
        }
        .artist-card .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0 0 0.5rem;
            line-height: 1.45;
            color: var(--text);
        }
        .artist-card .card-desc {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.7;
            margin: 0 0 0.75rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .artist-card .card-meta {
            font-size: 0.78rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            border-top: 1px solid var(--line);
            padding-top: 0.75rem;
        }

        /* Featured posts (CMS) */
        .featured-posts {
            background: var(--surface);
        }
        .featured-posts .post-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        .post-card {
            background: var(--bg);
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 1px solid var(--line);
            transition: all var(--transition);
        }
        .post-card:hover {
            box-shadow: var(--shadow-sm);
            transform: translateY(-3px);
            border-color: rgba(196, 154, 92, 0.4);
        }
        .post-card .post-img {
            height: 140px;
            overflow: hidden;
            background: #e8dfd0;
        }
        .post-card .post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .post-card:hover .post-img img {
            transform: scale(1.03);
        }
        .post-card .post-body {
            padding: 1rem;
        }
        .post-card .post-title {
            font-size: 0.95rem;
            font-weight: 600;
            margin: 0 0 0.5rem;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .post-card .post-title a:hover {
            color: var(--porcelain-green);
        }
        .post-card .post-meta {
            font-size: 0.78rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .empty-state {
            text-align: center;
            padding: 2rem;
            color: var(--muted);
            font-size: 0.95rem;
            border: 1px dashed var(--line-strong);
            border-radius: var(--radius-sm);
            background: var(--bg);
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }
        .gallery-item {
            border-radius: var(--radius-sm);
            overflow: hidden;
            aspect-ratio: 1 / 1;
            cursor: pointer;
            transition: all var(--transition);
            position: relative;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        .gallery-item:hover {
            box-shadow: var(--shadow-md);
        }

        /* Testimonials */
        .testimonials {
            background: var(--bg);
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        .testimonial-card {
            background: var(--surface);
            border-radius: var(--radius-sm);
            padding: 1.5rem;
            border: 1px solid var(--line);
        }
        .testimonial-card .quote {
            font-size: 0.88rem;
            color: var(--text);
            line-height: 1.75;
            margin: 0 0 1rem;
            position: relative;
            padding-left: 0.75rem;
            border-left: 3px solid var(--accent);
        }
        .testimonial-card .author {
            font-size: 0.82rem;
            color: var(--muted);
            font-weight: 500;
        }

        /* CTA */
        .cta-section {
            background: var(--tea-brown);
            padding: 3.5rem 0;
            color: #F6F1E7;
        }
        .cta-section .section-title {
            color: #F6F1E7;
        }
        .cta-section .section-sub {
            color: rgba(246, 241, 231, 0.75);
        }
        .cta-box {
            background: rgba(246, 241, 231, 0.06);
            border: 1px solid rgba(196, 154, 92, 0.3);
            border-radius: var(--radius-lg);
            padding: 2rem;
            max-width: 720px;
            margin: 0 auto;
        }
        .cta-box form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-top: 1.25rem;
        }
        .cta-box input {
            flex: 1;
            min-width: 220px;
            background: var(--surface);
            border: none;
            border-radius: 999px;
            padding: 0.75rem 1.25rem;
            font-size: 0.9rem;
            color: var(--text);
        }
        .cta-box input::placeholder {
            color: rgba(107, 98, 90, 0.7);
        }
        .cta-box input:focus {
            box-shadow: 0 0 0 3px rgba(196, 154, 92, 0.35);
        }

        /* Footer */
        .site-footer {
            background: var(--primary);
            color: rgba(246, 241, 231, 0.75);
            padding: 3.5rem 0 1.75rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid rgba(246, 241, 231, 0.12);
        }
        .footer-brand h3 {
            font-size: 1.15rem;
            color: #F6F1E7;
            margin: 0 0 1rem;
            font-weight: 700;
        }
        .footer-brand p {
            font-size: 0.88rem;
            line-height: 1.75;
            color: rgba(246, 241, 231, 0.65);
            margin: 0;
        }
        .footer-col h4 {
            font-size: 0.95rem;
            color: #F6F1E7;
            margin: 0 0 1rem;
            font-weight: 600;
        }
        .footer-col a {
            display: block;
            font-size: 0.85rem;
            color: rgba(246, 241, 231, 0.65);
            margin-bottom: 0.6rem;
            transition: color var(--transition);
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            padding-top: 1.5rem;
            font-size: 0.8rem;
            color: rgba(246, 241, 231, 0.5);
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .artist-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .featured-posts .post-list {
                grid-template-columns: repeat(2, 1fr);
            }
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1.2fr 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .category-hero {
                padding: 2.25rem 0 2rem;
            }
            .category-hero h1 {
                font-size: 1.5rem;
            }
            .section {
                padding: 2.5rem 0;
            }
            .section-title {
                font-size: 1.25rem;
            }
            .artist-grid {
                grid-template-columns: 1fr;
            }
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
            .feature-item {
                padding: 1rem;
            }
            .feature-item .feature-num {
                font-size: 1.25rem;
            }
            .featured-posts .post-list {
                grid-template-columns: 1fr;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
            .cta-box {
                padding: 1.5rem;
            }
            .cta-box form {
                flex-direction: column;
            }
            .cta-box input {
                min-width: auto;
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 520px) {
            .brand-logo {
                font-size: 1rem;
            }
            .category-hero h1 {
                font-size: 1.3rem;
            }
            .feature-grid {
                grid-template-columns: 1fr 1fr;
            }
            .feature-item .feature-num {
                font-size: 1.1rem;
            }
            .feature-item .feature-label {
                font-size: 0.75rem;
            }
            .artist-card .card-img {
                height: 180px;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
