
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background-color: #faf9f6;
        }

        /* 导航栏样式（与首页一致） */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(139, 69, 19, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #d4af37;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #d4af37;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* 页面标题 */
        .page-title {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(210, 105, 30, 0.7)),
                        url('https://images.unsplash.com/photo-1518611012118-696072aa579a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 8rem 2rem;
            margin-top: 80px;
        }

        .page-title h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 1.5rem;
            color: #d4af37;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            font-weight: bold;
        }

        .page-title p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
            line-height: 1.7;
        }

        /* 品牌故事内容 */
        .story-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        .story-section {
            display: flex;
            align-items: center;
            margin-bottom: 6rem;
            gap: 4rem;
        }

        .story-section:nth-child(even) {
            flex-direction: row-reverse;
        }

        .story-image {
            flex: 1;
            position: relative;
        }

        .story-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }

        .story-image img:hover {
            transform: scale(1.02);
        }

        .story-content {
            flex: 1;
        }

        .story-content h2 {
            font-size: clamp(2rem, 3vw, 2.8rem);
            margin-bottom: 2rem;
            color: #8b4513;
            position: relative;
        }

        .story-content h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, #d4af37, #f4d03f);
            margin-top: 1rem;
        }

        .story-content p {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .story-content .highlight {
            color: #8b4513;
            font-weight: bold;
            font-style: italic;
        }

        .story-content .btn {
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #d4af37, #f4d03f);
            color: #8b4513;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            display: inline-block;
            border: 2px solid transparent;
        }

        .story-content .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
            background: linear-gradient(45deg, #f4d03f, #d4af37);
        }

        /* 工艺展示区域 */
        .craftsmanship-showcase {
            background: linear-gradient(135deg, #f5f5dc, #faf0e6);
            padding: 6rem 2rem;
            margin: 4rem 0;
        }

        .showcase-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .showcase-title {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            color: #8b4513;
            margin-bottom: 2rem;
        }

        .showcase-subtitle {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .craft-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .craft-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .craft-card:hover {
            transform: translateY(-10px);
        }

        .craft-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1.5rem;
        }

        .craft-card h3 {
            font-size: 1.5rem;
            color: #8b4513;
            margin-bottom: 1rem;
        }

        .craft-card p {
            color: #666;
            line-height: 1.6;
        }

        /* 创始人故事 */
        .founder-story {
            background: white;
            padding: 6rem 2rem;
            position: relative;
        }

        .founder-content {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .founder-image {
            flex: 0 0 300px;
        }

        .founder-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .founder-text {
            flex: 1;
        }

        .founder-text h2 {
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 2rem;
        }

        .founder-text .quote {
            font-size: 1.4rem;
            font-style: italic;
            color: #d4af37;
            margin-bottom: 2rem;
            padding-left: 2rem;
            border-left: 4px solid #d4af37;
        }

        .founder-text p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* 使命愿景 */
        .mission-vision {
            background: linear-gradient(135deg, #8b4513, #d2691e);
            color: white;
            padding: 6rem 2rem;
            text-align: center;
        }

        .mission-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .mission-content h2 {
            font-size: 3rem;
            color: #d4af37;
            margin-bottom: 3rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .value-item {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .value-item i {
            font-size: 3rem;
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .value-item h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #d4af37;
        }

        .value-item p {
            line-height: 1.6;
        }

        /* CTA区域 */
        .cta-section {
            padding: 6rem 2rem;
            text-align: center;
            background: #faf9f6;
        }

        .cta-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 2rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #d4af37, #f4d03f);
            color: #8b4513;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
            background: linear-gradient(45deg, #f4d03f, #d4af37);
        }

        .social-link i {
            font-size: 1.3rem;
        }

        /* Footer */
        .footer {
            background: #2c1810;
            color: white;
            text-align: center;
            padding: 3rem 2rem;
        }

        .footer p {
            font-size: 1rem;
            opacity: 0.8;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(139, 69, 19, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 3rem;
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 1rem 0;
            }

            .mobile-toggle {
                display: block;
            }

            .story-section {
                flex-direction: column !important;
                margin-bottom: 4rem;
                gap: 2rem;
            }

            .story-content {
                text-align: center;
            }

            .story-content h2 {
                font-size: 2rem;
            }

            .story-content p {
                font-size: 1.1rem;
            }

            .founder-content {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }

            .founder-image {
                flex: none;
            }

            .founder-text .quote {
                padding-left: 1rem;
                border-left: 3px solid #d4af37;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .social-links {
                flex-direction: column;
                align-items: center;
            }

            .social-link {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .story-container,
            .showcasecontainer,
            .founder-story,
            .mission-vision,
            .cta-section {
                padding: 4rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                padding: 6rem 1rem;
            }

            .story-image img,
            .founder-image img {
                height: 300px;
            }

            .craft-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .story-section {
            animation: fadeInUp 1s ease forwards;
        }

        .story-section:nth-child(1) { animation-delay: 0.2s; }
        .story-section:nth-child(2) { animation-delay: 0.4s; }
        .story-section:nth-child(3) { animation-delay: 0.6s; }

        .craft-card {
            animation: fadeInUp 0.8s ease forwards;
        }

        .craft-card:nth-child(1) { animation-delay: 0.1s; }
        .craft-card:nth-child(2) { animation-delay: 0.2s; }
        .craft-card:nth-child(3) { animation-delay: 0.3s; }

        .value-item {
            animation: fadeInUp 0.8s ease forwards;
        }

        .value-item:nth-child(1) { animation-delay: 0.1s; }
        .value-item:nth-child(2) { animation-delay: 0.2s; }
        .value-item:nth-child(3) { animation-delay: 0.3s; }

        /* 平滑滚动 */
        html {
            scroll-behavior: smooth;
        }

        .navbar.scrolled {
            background: rgba(139, 69, 19, 0.98);
            padding: 0.5rem 0;
        }
