
        /* ===== 全局变量 ===== */
        :root {
            --ink-black: #1a1a1a;
            --ink-deep: #2c2c2c;
            --paper: #f5f0e8;
            --paper-light: #faf8f3;
            --paper-dark: #ebe3d5;
            --celadon: #7d9b76;
            --celadon-light: #a3c4a0;
            --celadon-dark: #5a7d56;
            --gold: #c4a35a;
            --gold-light: #d4b86a;
            --gold-dark: #a88a3e;
            --vermilion: #a0392c;
            --text-dark: #333333;
            --text-mid: #666666;
            --text-light: #999999;
        }

        /* ===== 基础重置 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
            background-color: var(--paper-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.8;
        }

        /* ===== 导航栏 ===== */
        .custom-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s ease;
            background: transparent;
        }

        .custom-navbar.scrolled {
            background: rgba(26, 26, 26, 0.92);
            padding: 12px 0;
            backdrop-filter: blur(10px);
        }

        .custom-navbar .nav-brand {
            font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
            font-size: 1.6rem;
            color: var(--paper-light);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .custom-navbar .nav-brand span {
            color: var(--gold);
        }

        .custom-navbar .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            margin: 0;
            align-items: center;
        }

        .custom-navbar .nav-links a {
            color: rgba(245, 240, 232, 0.85);
            text-decoration: none;
            font-size: 0.95rem;
            letter-spacing: 1px;
            transition: color 0.3s;
            position: relative;
        }

        .custom-navbar .nav-links a:hover {
            color: var(--gold);
        }

        .custom-navbar .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .custom-navbar .nav-links a:hover::after {
            width: 100%;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--paper-light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ===== Hero 区域 ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('../../images/zy/1.jpg') center/cover no-repeat;
            opacity: 0.35;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26,26,26,0.4) 0%, rgba(26,26,26,0.2) 50%, rgba(26,26,26,0.8) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
            animation: fadeInUp 1.8s ease;
        }

        .hero-tag {
            font-family: 'Ma Shan Zheng', serif;
            color: var(--gold);
            font-size: 1.3rem;
            letter-spacing: 6px;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .hero-title {
            font-family: 'Noto Serif SC', serif;
            font-weight: 900;
            font-size: clamp(3rem, 8vw, 6rem);
            color: var(--paper-light);
            letter-spacing: 0.15em;
            line-height: 1.2;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }

        .hero-divider {
            width: 60px;
            height: 1px;
            background: var(--gold);
            margin: 2rem auto;
            position: relative;
        }

        .hero-divider::before,
        .hero-divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            transform: translateY(-50%);
        }

        .hero-divider::before { left: -15px; }
        .hero-divider::after { right: -15px; }

        .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(245, 240, 232, 0.75);
            letter-spacing: 4px;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(245, 240, 232, 0.5);
            font-size: 0.8rem;
            letter-spacing: 2px;
            animation: bounce 2s infinite;
            text-align: center;
        }

        .hero-scroll i {
            display: block;
            font-size: 1.2rem;
            margin-top: 8px;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

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

        /* ===== 通用 Section ===== */
        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-label {
            text-align: center;
            margin-bottom: 15px;
        }

        .section-label span {
            font-family: 'Ma Shan Zheng', serif;
            color: var(--gold);
            font-size: 1rem;
            letter-spacing: 4px;
            display: inline-block;
            padding: 4px 20px;
            border: 1px solid var(--gold);
            border-radius: 2px;
        }

        .section-title {
            font-weight: 700;
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--ink-black);
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-mid);
            font-size: 1.05rem;
            max-width: 680px;
            margin: 0 auto 4rem;
            font-weight: 300;
        }

        /* ===== 引言区 ===== */
        .intro-section {
            background: var(--paper);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .intro-section::before {
            content: '藏';
            position: absolute;
            top: 50%;
            right: -50px;
            transform: translateY(-50%);
            font-family: 'Ma Shan Zheng', serif;
            font-size: 30rem;
            color: rgba(196, 163, 90, 0.05);
            font-weight: 900;
            pointer-events: none;
        }

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

        .intro-quote .quote-mark {
            font-size: 5rem;
            color: var(--gold);
            opacity: 0.3;
            font-family: serif;
            line-height: 1;
            margin-bottom: -1rem;
        }

        .intro-quote p {
            font-size: 1.35rem;
            line-height: 2.2;
            color: var(--text-dark);
            font-weight: 400;
            letter-spacing: 1px;
        }

        .intro-quote .highlight {
            color: var(--celadon-dark);
            font-weight: 600;
        }

        .intro-quote .source {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--text-light);
            letter-spacing: 3px;
        }

        /* ===== VOL.01 王澍设计 ===== */
        .vol-section {
            background: var(--paper-light);
            position: relative;
        }

        .vol-number {
            font-family: 'Ma Shan Zheng', serif;
            font-size: 0.85rem;
            color: var(--gold);
            letter-spacing: 3px;
            text-align: center;
            margin-bottom: 10px;
        }

        .architect-card {
            background: var(--paper);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }

        .architect-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .architect-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .architect-body {
            padding: 30px;
        }

        .architect-body h4 {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--ink-black);
            margin-bottom: 0.8rem;
            letter-spacing: 1px;
        }

        .architect-body .award-badge {
            display: inline-block;
            background: var(--vermilion);
            color: var(--paper-light);
            font-size: 0.75rem;
            padding: 3px 12px;
            border-radius: 2px;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .architect-body p {
            color: var(--text-mid);
            font-size: 0.95rem;
            line-height: 1.9;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 1.2rem;
        }

        .feature-list li {
            padding: 6px 0;
            color: var(--text-dark);
            font-size: 0.9rem;
        }

        .feature-list li i {
            color: var(--celadon);
            margin-right: 10px;
            font-size: 0.8rem;
        }

        /* ===== 建筑特色画廊 ===== */
        .gallery-section {
            background: var(--ink-black);
            padding: 100px 0;
        }

        .gallery-section .section-title {
            color: var(--paper-light);
        }

        .gallery-section .section-label span {
            border-color: var(--gold);
        }

        .gallery-section .section-subtitle {
            color: rgba(245, 240, 232, 0.6);
        }

        .gallery-grid .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            margin-bottom: 20px;
        }

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

        .gallery-grid .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-grid .gallery-item .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(26,26,26,0.8) 100%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-grid .gallery-item:hover .overlay {
            opacity: 1;
        }

        .gallery-grid .gallery-item .overlay span {
            color: var(--paper-light);
            font-size: 0.9rem;
            letter-spacing: 2px;
        }

        .gallery-tall {
            height: 400px;
        }

        .gallery-short {
            height: 190px;
        }

        /* ===== VOL.02 客房 ===== */
        .rooms-section {
            background: var(--paper);
            padding: 100px 0;
        }

        .room-card {
            background: var(--paper-light);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            border: 1px solid var(--paper-dark);
        }

        .room-card:hover {
            box-shadow: 0 12px 35px rgba(0,0,0,0.1);
            transform: translateY(-4px);
        }

        .room-img-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

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

        .room-card:hover .room-img-wrapper img {
            transform: scale(1.05);
        }

        .room-img-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(26,26,26,0.3) 100%);
        }

        .room-name-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(245, 240, 232, 0.92);
            padding: 6px 16px;
            border-radius: 2px;
            font-family: 'Ma Shan Zheng', serif;
            font-size: 1.1rem;
            color: var(--ink-black);
            letter-spacing: 2px;
            z-index: 2;
        }

        .room-body {
            padding: 25px;
        }

        .room-body h5 {
            font-weight: 600;
            color: var(--ink-deep);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .room-body p {
            color: var(--text-mid);
            font-size: 0.9rem;
            line-height: 1.8;
            margin: 0;
        }

        .room-body .room-meta {
            margin-top: 12px;
            display: flex;
            gap: 15px;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .room-body .room-meta span i {
            color: var(--celadon);
            margin-right: 4px;
        }

        /* ===== VOL.03 宋人四雅 ===== */
        .experience-section {
            background: var(--paper-light);
            padding: 100px 0;
            position: relative;
        }

        .experience-section::before {
            content: '雅';
            position: absolute;
            top: 10%;
            left: -30px;
            font-family: 'Ma Shan Zheng', serif;
            font-size: 25rem;
            color: rgba(125, 155, 118, 0.04);
            font-weight: 900;
            pointer-events: none;
        }

        .experience-card {
            text-align: center;
            padding: 40px 25px;
            background: var(--paper);
            border-radius: 4px;
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gold);
            transition: width 0.4s ease;
        }

        .experience-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            border-color: var(--paper-dark);
        }

        .experience-card:hover::before {
            width: 60%;
        }

        .experience-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--paper-dark);
            font-size: 1.8rem;
            color: var(--celadon-dark);
            transition: all 0.4s ease;
        }

        .experience-card:hover .experience-icon {
            background: var(--celadon);
            color: var(--paper-light);
            transform: rotateY(180deg);
        }

        .experience-card h4 {
            font-weight: 700;
            color: var(--ink-black);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }

        .experience-card .subtitle-en {
            font-size: 0.75rem;
            color: var(--gold-dark);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .experience-card p {
            color: var(--text-mid);
            font-size: 0.9rem;
            line-height: 1.8;
        }

        /* ===== 餐饮体验 ===== */
        .dining-section {
            background: var(--ink-deep);
            padding: 100px 0;
            color: var(--paper-light);
        }

        .dining-section .section-title {
            color: var(--paper-light);
        }

        .dining-section .section-label span {
            border-color: var(--gold);
        }

        .dining-section .section-subtitle {
            color: rgba(245, 240, 232, 0.6);
        }

        .dining-img {
            width: 100%;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .dining-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
        }

        .dining-content h3 span {
            color: var(--gold);
        }

        .dining-content p {
            color: rgba(245, 240, 232, 0.75);
            font-size: 1rem;
            line-height: 2;
            margin-bottom: 1.5rem;
        }

        .dining-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 1.5rem;
        }

        .dining-tags span {
            background: rgba(196, 163, 90, 0.15);
            border: 1px solid rgba(196, 163, 90, 0.4);
            color: var(--gold-light);
            padding: 5px 16px;
            border-radius: 2px;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        /* ===== VOL.04 获奖 ===== */
        .award-section {
            background: var(--paper);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .award-banner {
            background: linear-gradient(135deg, var(--ink-black) 0%, var(--ink-deep) 100%);
            border-radius: 8px;
            padding: 60px 50px;
            color: var(--paper-light);
            position: relative;
            overflow: hidden;
        }

        .award-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(196,163,90,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .award-badge-large {
            width: 120px;
            height: 120px;
            border: 3px solid var(--gold);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .award-badge-large .year {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
        }

        .award-badge-large .label {
            font-size: 0.7rem;
            color: rgba(245, 240, 232, 0.7);
            letter-spacing: 1px;
            margin-top: 4px;
        }

        .award-banner h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }

        .award-banner h2 span {
            color: var(--gold);
        }

        .award-banner p {
            color: rgba(245, 240, 232, 0.7);
            font-size: 1.05rem;
            line-height: 2;
            max-width: 600px;
            position: relative;
            z-index: 1;
        }

        .award-stats {
            display: flex;
            gap: 40px;
            margin-top: 2rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .award-stat {
            text-align: center;
        }

        .award-stat .num {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
        }

        .award-stat .desc {
            font-size: 0.85rem;
            color: rgba(245, 240, 232, 0.6);
            margin-top: 5px;
            letter-spacing: 1px;
        }

        /* ===== 结尾 CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--ink-black) 0%, #3a3a3a 100%);
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '宿';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Ma Shan Zheng', serif;
            font-size: 35rem;
            color: rgba(196, 163, 90, 0.04);
            font-weight: 900;
            pointer-events: none;
        }

        .cta-section h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: var(--paper-light);
            margin-bottom: 1.5rem;
            letter-spacing: 3px;
            position: relative;
            z-index: 1;
        }

        .cta-section h2 span {
            color: var(--gold);
        }

        .cta-section p {
            color: rgba(245, 240, 232, 0.6);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2.5rem;
            line-height: 2;
            position: relative;
            z-index: 1;
        }

        .cta-btn {
            display: inline-block;
            padding: 14px 50px;
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-size: 1rem;
            letter-spacing: 3px;
            text-decoration: none;
            border-radius: 2px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            font-family: 'Noto Serif SC', serif;
        }

        .cta-btn:hover {
            background: var(--gold);
            color: var(--ink-black);
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(196, 163, 90, 0.3);
        }

        /* ===== Footer ===== */
        .footer {
            background: var(--ink-black);
            padding: 50px 0 30px;
            color: rgba(245, 240, 232, 0.5);
            text-align: center;
        }

        .footer-brand {
            font-family: 'Ma Shan Zheng', serif;
            font-size: 1.5rem;
            color: var(--paper-light);
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .footer-brand span {
            color: var(--gold);
        }

        .footer-info {
            font-size: 0.85rem;
            line-height: 2;
            margin-bottom: 1.5rem;
        }

        .footer-info i {
            color: var(--gold);
            margin-right: 6px;
            width: 16px;
        }

        .footer-divider {
            width: 100%;
            max-width: 200px;
            height: 1px;
            background: rgba(245, 240, 232, 0.15);
            margin: 1.5rem auto;
        }

        .footer-copy {
            font-size: 0.78rem;
            color: rgba(245, 240, 232, 0.3);
        }

        /* ===== 滚动动画 ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .custom-navbar .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(26, 26, 26, 0.95);
                flex-direction: column;
                padding: 20px;
                gap: 1rem;
            }

            .custom-navbar .nav-links.active {
                display: flex;
            }

            .nav-toggle {
                display: block;
            }

            .section {
                padding: 60px 0;
            }

            .intro-section::before,
            .experience-section::before,
            .cta-section::before {
                display: none;
            }

            .gallery-tall {
                height: 250px;
            }

            .gallery-short {
                height: 150px;
            }

            .award-banner {
                padding: 40px 25px;
            }

            .award-stats {
                gap: 25px;
            }

            .dining-content h3 {
                font-size: 1.5rem;
                margin-top: 1.5rem;
            }
        }
    