
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --gold: #c9a962;
            --charcoal: #1a1a1a;
            --gray: #666666;
            --white: #ffffff;
            --cream: #faf9f6;
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Noto Serif SC', 'Cormorant Garamond', serif;
            background: var(--white);
            color: var(--charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }
        /* 导航栏 */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .header.scrolled {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 30px rgba(0,0,0,0.05);
        }
        .header-inner {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 80px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
        }
        .logo-text {
            font-size: 24px;
            font-weight: 400;
            letter-spacing: 14px;
            color: var(--charcoal);
            margin-bottom: 2px;
        }
        .logo-sub {
            font-family: 'Cormorant Garamond', serif;
            font-size: 12px;
            letter-spacing: 8px;
            color: var(--gold);
            font-weight: 300;
            text-transform: uppercase;
        }
        .nav {
            display: flex;
            list-style: none;
            gap: 50px;
        }
        .nav a {
            font-family: 'Cormorant Garamond', serif;
            font-size: 14px;
            letter-spacing: 3px;
            color: var(--charcoal);
            text-decoration: none;
            text-transform: uppercase;
            position: relative;
            padding: 10px 0;
            transition: color 0.3s ease;
        }
        .nav a::before, .nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .nav a::before { left: 50%; transform: translateX(-50%); }
        .nav a::after { right: 50%; transform: translateX(50%); }
        .nav a:hover, .nav a.active { color: var(--gold); }
        .nav a:hover::before, .nav a:hover::after, .nav a.active::before, .nav a.active::after { width: 40%; }
        /* Hero区域 */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 20px;
        }
        .hero-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 12px;
            letter-spacing: 8px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        .hero-title {
            font-size: 56px;
            font-weight: 300;
            letter-spacing: 24px;
            color: var(--charcoal);
            margin-bottom: 15px;
        }
        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 16px;
            letter-spacing: 12px;
            color: var(--gray);
            text-transform: uppercase;
            margin-bottom: 40px;
        }
        .hero-divider {
            width: 60px;
            height: 1px;
            background: var(--gold);
            margin: 0 auto 40px;
        }
        .btn-primary {
            display: inline-block;
            padding: 16px 50px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 13px;
            letter-spacing: 4px;
            color: var(--charcoal);
            text-decoration: none;
            border: 1px solid var(--charcoal);
            transition: all 0.4s ease;
        }
        .btn-primary:hover {
            background: var(--charcoal);
            color: var(--white);
        }
        .hero-scroll {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
        }
        .hero-scroll svg {
            width: 24px;
            height: 24px;
            fill: var(--gold);
            animation: bounce 2s ease infinite;
        }
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(10px); }
        }
        /* 通用区块样式 */
        .section-brand, .section-philosophy, .section-collection, .section-news {
            padding: 150px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        .section-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 11px;
            letter-spacing: 6px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .section-title {
            font-size: 36px;
            font-weight: 300;
            letter-spacing: 12px;
            color: var(--charcoal);
            margin-bottom: 30px;
        }
        .section-divider {
            width: 50px;
            height: 1px;
            background: var(--gold);
            margin: 0 auto;
        }
        /* 品牌故事 */
        .brand-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .brand-image {
            position: relative;
            overflow: hidden;
        }
        .brand-image img {
            width: 100%;
            height: 500px;
            object-fit: contain;
            object-position: top center;
            background: var(--cream);
            transition: transform 0.8s ease;
        }
        .brand-image:hover img { transform: scale(1.05); }
        .brand-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 13px;
            letter-spacing: 4px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        .brand-heading {
            font-size: 28px;
            font-weight: 300;
            letter-spacing: 4px;
            color: var(--charcoal);
            margin-bottom: 30px;
            line-height: 1.8;
        }
        .brand-paragraph {
            font-size: 15px;
            color: var(--gray);
            line-height: 2;
            margin-bottom: 30px;
        }
        .brand-stats {
            display: flex;
            gap: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(0,0,0,0.1);
        }
        .stat-item { text-align: left; }
        .stat-number {
            font-size: 32px;
            font-weight: 300;
            color: var(--charcoal);
            margin-bottom: 8px;
        }
        .stat-label {
            font-family: 'Cormorant Garamond', serif;
            font-size: 12px;
            letter-spacing: 2px;
            color: var(--gray);
            text-transform: uppercase;
        }
        /* 品牌理念 */
        .section-philosophy { background: var(--cream); }
        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
        }
        .philosophy-card {
            text-align: center;
            padding: 40px 20px;
        }
        .philosophy-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 11px;
            letter-spacing: 4px;
            color: var(--gold);
            margin-bottom: 25px;
            display: block;
        }
        .philosophy-title {
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 3px;
            color: var(--charcoal);
            margin-bottom: 20px;
        }
        .philosophy-desc {
            font-size: 14px;
            color: var(--gray);
            line-height: 2;
        }
        /* 产品系列轮播 */
        .collection-slider {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            aspect-ratio: 16/10;
        }
        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        .slide {
            min-width: 100%;
            position: relative;
            display: none;
            height: 100%;
        }
        .slide.active { display: block; }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .slide-content {
            position: absolute;
            bottom: 40px;
            left: 40px;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(5px);
            padding: 30px 40px;
            transition: all 0.5s ease;
            max-width: 320px;
        }
        .slide-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 12px;
            letter-spacing: 4px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .slide-title {
            font-size: 24px;
            font-weight: 400;
            letter-spacing: 6px;
            color: var(--white);
            margin-bottom: 10px;
        }
        .slide-desc {
            font-family: 'Cormorant Garamond', serif;
            font-size: 14px;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.8);
            text-transform: uppercase;
        }
        .slider-prev, .slider-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border: 1px solid var(--charcoal);
            background: rgba(255,255,255,0.9);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }
        .slider-prev { left: 20px; }
        .slider-next { right: 20px; }
        .slider-prev:hover, .slider-next:hover {
            background: var(--charcoal);
            color: var(--white);
        }
        .slider-prev svg, .slider-next svg {
            width: 18px;
            height: 18px;
        }
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
        }
        .slider-dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0,0,0,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .slider-dots .dot.active {
            background: var(--gold);
            transform: scale(1.2);
        }

        /* 产品系列区块 */
        .section-product-line {
            padding: 80px 0;
            background: var(--cream);
        }
        .product-line-container {
            display: flex;
            align-items: center;
            gap: 80px;
            max-width: 1400px;
        }
        .section-product-line.reverse .product-line-container {
            flex-direction: row-reverse;
        }
        .product-line-content {
            flex: 1;
        }
        .product-line-image {
            flex: 1;
            max-width: 600px;
        }
        .product-line-image img {
            width: 100%;
            height: auto;
        }
        .product-subtitle {
            font-size: 20px;
            letter-spacing: 8px;
            color: var(--charcoal);
            margin: 30px 0 20px;
            font-weight: 400;
        }
        .product-desc {
            font-family: 'Cormorant Garamond', serif;
            font-size: 16px;
            line-height: 1.8;
            color: var(--gray-medium);
            margin-bottom: 40px;
            max-width: 400px;
        }
        .product-features {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }
        .product-features li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 15px;
            letter-spacing: 2px;
            color: var(--charcoal);
        }
        .feature-number {
            width: 36px;
            height: 36px;
            background: var(--charcoal);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            letter-spacing: 1px;
        }
        .product-tag {
            background: var(--charcoal);
            padding: 25px 30px;
            display: inline-block;
            max-width: 300px;
        }
        .product-tag p {
            font-size: 12px;
            letter-spacing: 3px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 8px;
        }
        .tag-highlight {
            font-size: 14px !important;
            color: var(--gold) !important;
            margin-bottom: 0 !important;
        }

        /* 门店形象与渠道战略 */
        .section-stores {
            padding: 80px 0;
            background: var(--white);
        }
        .store-location {
            display: flex;
            gap: 60px;
            margin: 60px 0;
            align-items: flex-start;
        }
        .location-content {
            flex: 1;
        }
        .location-images {
            flex: 2;
        }
        .store-subtitle {
            font-size: 18px;
            letter-spacing: 6px;
            color: var(--charcoal);
            margin-bottom: 30px;
            font-weight: 400;
        }
        .location-list {
            list-style: none;
            padding: 0;
        }
        .location-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 15px;
            line-height: 1.8;
            color: var(--gray-medium);
        }
        .location-dot {
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }
        .location-image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .grid-item.large {
            grid-row: span 2;
        }
        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .grid-item {
            overflow: hidden;
        }
        .grid-item.large img {
            min-height: 400px;
        }
        .grid-item img {
            min-height: 190px;
        }

        /* 门店覆盖 */
        .store-stats {
            display: flex;
            justify-content: center;
            gap: 120px;
            padding: 60px 0;
            background: var(--cream);
            margin: 40px 0;
        }
        .store-stats .stat-item {
            text-align: center;
        }
        .store-stats .stat-item svg {
            width: 36px;
            height: 36px;
            color: var(--gold);
            margin-bottom: 20px;
        }
        .store-stats .stat-label {
            font-family: 'Cormorant Garamond', serif;
            font-size: 12px;
            letter-spacing: 4px;
            color: var(--gold);
            margin-bottom: 10px;
        }
        .store-stats .stat-value {
            font-size: 15px;
            letter-spacing: 2px;
            color: var(--charcoal);
        }

        /* 渠道战略 */
        .channel-strategy {
            margin: 60px 0;
        }
        .channel-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        .channel-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            padding: 30px;
            background: var(--cream);
        }
        .channel-item svg {
            width: 40px;
            height: 40px;
            color: var(--gold);
            flex-shrink: 0;
        }
        .channel-title {
            font-size: 16px;
            letter-spacing: 3px;
            color: var(--charcoal);
            margin-bottom: 10px;
            font-weight: 400;
        }
        .channel-desc {
            font-size: 14px;
            color: var(--gray-medium);
            line-height: 1.8;
        }

        /* 品牌合作展示 */
        .collab-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 40px;
        }
        .collab-item {
            overflow: hidden;
        }
        .collab-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .collab-item:hover img {
            transform: scale(1.05);
        }

        /* 视觉大片 */
        .section-video {
            height: 80vh;
            position: relative;
            overflow: hidden;
        }
        .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease;
        }
        .video-overlay.hidden { opacity: 0; pointer-events: none; }
        .video-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 13px;
            letter-spacing: 6px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        .play-btn {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 1px solid var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
        }
        .play-btn:hover {
            background: var(--white);
            transform: scale(1.1);
        }
        .play-btn svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
            margin-left: 3px;
            transition: fill 0.4s ease;
        }
        .play-btn:hover svg { fill: var(--charcoal); }
        /* 品牌资讯 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .news-card {
            background: var(--cream);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
        .news-image { overflow: hidden; }
        .news-image img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .news-card:hover .news-image img { transform: scale(1.05); }
        .news-content { padding: 30px; }
        .news-date {
            font-family: 'Cormorant Garamond', serif;
            font-size: 12px;
            letter-spacing: 2px;
            color: var(--gold);
            margin-bottom: 15px;
        }
        .news-title {
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 2px;
            color: var(--charcoal);
            margin-bottom: 15px;
            line-height: 1.6;
        }
        .news-excerpt {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .news-link {
            font-family: 'Cormorant Garamond', serif;
            font-size: 12px;
            letter-spacing: 3px;
            color: var(--charcoal);
            text-decoration: none;
            text-transform: uppercase;
            border-bottom: 1px solid transparent;
            padding-bottom: 3px;
            transition: all 0.3s ease;
        }
        .news-link:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }
        /* 页脚 */
        .footer {
            background: var(--charcoal);
            padding: 100px 0 60px;
        }
        .footer-top {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 60px;
        }
        .footer-brand { text-align: center; }
        .footer-brand .logo-text { color: var(--white); }
        .footer-desc {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            margin-top: 20px;
            line-height: 1.8;
        }
        .footer-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 13px;
            letter-spacing: 4px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 15px; }
        .footer-links a {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover { color: var(--gold); }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .copyright {
            font-size: 12px;
            color: rgba(255,255,255,0.4);
            letter-spacing: 2px;
        }
        .social-links { display: flex; gap: 30px; }
        .social-links a {
            width: 32px;
            height: 32px;
            border: 1px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            border-color: var(--gold);
            background: var(--gold);
        }
        .social-links svg {
            width: 14px;
            height: 14px;
            fill: rgba(255,255,255,0.6);
            transition: fill 0.3s ease;
        }
        .social-links a:hover svg { fill: var(--charcoal); }
        /* 响应式 */
        @media (max-width: 1200px) {
            .header-inner { padding: 0 40px; }
            .nav { gap: 30px; }
            .brand-content { gap: 60px; }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 900px) {
            .header-inner { padding: 0 30px; height: 80px; }
            .logo-text { font-size: 20px; letter-spacing: 10px; }
            .logo-sub { font-size: 10px; letter-spacing: 6px; }
            .nav { gap: 20px; }
            .nav a { font-size: 12px; letter-spacing: 2px; }
            .hero-title { font-size: 36px; letter-spacing: 16px; }
            .hero-subtitle { font-size: 14px; letter-spacing: 8px; }
            .brand-content { grid-template-columns: 1fr; gap: 40px; }
            .brand-image img { height: 400px; }
            .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
            .news-grid { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .footer-brand { grid-column: span 2; }
        }
        @media (max-width: 600px) {
            .container { padding: 0 30px; }
            .hero-title { font-size: 28px; letter-spacing: 12px; }
            .brand-stats { flex-direction: column; gap: 20px; }
            .stat-item { text-align: center; }
            .slide-content { left: 20px; right: 20px; bottom: 20px; padding: 20px; }
            .slide-title { font-size: 18px; }
            .footer-top { grid-template-columns: 1fr; }
            .footer-brand { grid-column: span 1; }
            .footer-bottom { flex-direction: column; gap: 20px; }
        }
    