/* roulang page: index */
:root {
            --brand-50: #FEF5F0;
            --brand-100: #FDE8DD;
            --brand-200: #F9C8B5;
            --brand-300: #F2A184;
            --brand-400: #E87652;
            --brand-500: #D94E2B;
            --brand-600: #B93A1D;
            --brand-700: #962D16;
            --brand-800: #742312;
            --brand-900: #571B0E;
            --ink-50: #F5F5F7;
            --ink-100: #E8E8EC;
            --ink-200: #D1D1D9;
            --ink-300: #B0B0BC;
            --ink-400: #888899;
            --ink-500: #666677;
            --ink-600: #4D4D5C;
            --ink-700: #3A3A46;
            --ink-800: #26262F;
            --ink-900: #1A1A22;
            --gold-300: #F5D06F;
            --gold-400: #F0B942;
            --gold-500: #E0A32E;
            --gold-600: #C0871F;
            --cream: #FAF7F2;
            --warmgray: #F1ECE6;
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            --radius-2xl: 1.75rem;
            --radius-3xl: 2.25rem;
            --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
            --shadow-card: 0 8px 32px rgba(0,0,0,0.08);
            --shadow-lift: 0 16px 48px rgba(0,0,0,0.12);
            --shadow-glow: 0 0 0 1px rgba(217,78,43,0.15), 0 12px 40px rgba(217,78,43,0.18);
            --transition-base: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-tap-highlight-color: transparent;
            font-size: 16px;
            line-height: 1.6;
        }

        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
            background-color: var(--cream);
            color: var(--ink-800);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-base);
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            border: none;
            outline: none;
            background: none;
        }

        button {
            cursor: pointer;
        }

        :focus-visible {
            outline: 3px solid rgba(217, 78, 43, 0.5);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container-custom {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* 倒计时条 */
        .countdown-bar {
            background: linear-gradient(135deg, #1A1A22 0%, #3A1A0E 50%, #1A1A22 100%);
            color: #FDE8DD;
            padding: 0.625rem 1.5rem;
            font-size: 0.85rem;
            letter-spacing: 0.03em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 60;
            border-bottom: 1px solid rgba(249, 200, 181, 0.15);
        }
        .countdown-bar .cd-label {
            font-weight: 600;
            color: var(--gold-300);
        }
        .countdown-bar .cd-time {
            display: flex;
            gap: 0.375rem;
            align-items: center;
            font-variant-numeric: tabular-nums;
        }
        .countdown-bar .cd-unit {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 6px;
            padding: 0.2rem 0.5rem;
            font-weight: 700;
            font-size: 0.8rem;
            min-width: 2.2rem;
            text-align: center;
            display: inline-block;
        }
        .countdown-bar .cd-sep {
            font-weight: 700;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(250, 247, 242, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            transition: var(--transition-base);
        }
        .site-header.scrolled {
            background: rgba(255, 255, 255, 0.97);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .site-header .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 0.875rem;
            padding-bottom: 0.875rem;
            gap: 1rem;
        }
        .nav-logo {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--brand-700);
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        .nav-logo .logo-icon {
            width: 2.25rem;
            height: 2.25rem;
            background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 800;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(217, 78, 43, 0.28);
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 0.6rem 1.5rem;
            border-radius: 999px;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 16px rgba(217, 78, 43, 0.3);
            white-space: nowrap;
        }
        .nav-cta:hover {
            background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
            box-shadow: 0 8px 24px rgba(217, 78, 43, 0.4);
            transform: translateY(-2px);
        }
        .nav-cta:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(217, 78, 43, 0.3);
        }

        /* Hero */
        .hero-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(160deg, #1A1A22 0%, #3A1A0E 45%, #571B0E 100%);
            color: #FDE8DD;
            min-height: 560px;
            display: flex;
            align-items: center;
            isolation: isolate;
        }
        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.28;
            z-index: -1;
        }
        .hero-section::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26,26,34,0.55) 0%, rgba(87,27,14,0.35) 50%, rgba(26,26,34,0.7) 100%);
            z-index: -1;
        }
        .hero-content {
            padding: 4rem 0 3rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            width: 100%;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 999px;
            padding: 0.4rem 1rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--gold-300);
            margin-bottom: 1.25rem;
            backdrop-filter: blur(8px);
        }
        .hero-badge .dot {
            width: 0.5rem;
            height: 0.5rem;
            background: var(--gold-400);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }
        .hero-title {
            font-size: clamp(2rem, 5vw, 3.25rem);
            font-weight: 800;
            line-height: 1.18;
            letter-spacing: -0.02em;
            margin-bottom: 1.25rem;
            max-width: 720px;
            color: #fff;
        }
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        .hero-desc {
            font-size: 1.05rem;
            line-height: 1.8;
            color: rgba(253, 232, 221, 0.85);
            max-width: 620px;
            margin-bottom: 2rem;
        }
        .hero-cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 0.85rem 2rem;
            border-radius: 999px;
            transition: var(--transition-smooth);
            box-shadow: 0 8px 24px rgba(217, 78, 43, 0.35);
            letter-spacing: 0.02em;
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
            box-shadow: 0 12px 32px rgba(217, 78, 43, 0.45);
            transform: translateY(-3px);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(217, 78, 43, 0.3);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.85rem 2rem;
            border-radius: 999px;
            transition: var(--transition-smooth);
            backdrop-filter: blur(8px);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        }
        .btn-secondary:active {
            transform: translateY(0);
        }
        .hero-trust {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            align-items: center;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }
        .hero-trust .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: rgba(253, 232, 221, 0.75);
        }
        .hero-trust .trust-item .check-icon {
            width: 1.25rem;
            height: 1.25rem;
            background: rgba(240, 185, 66, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-400);
            font-size: 0.7rem;
            flex-shrink: 0;
        }
        .hero-side {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-side .bento-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-2xl);
            padding: 1.5rem;
            backdrop-filter: blur(12px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            width: 100%;
            max-width: 380px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
        }
        .bento-card .bento-item {
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-lg);
            padding: 1rem;
            text-align: center;
            transition: var(--transition-base);
        }
        .bento-card .bento-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }
        .bento-card .bento-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
        }
        .bento-card .bento-label {
            font-size: 0.75rem;
            color: rgba(253, 232, 221, 0.7);
            margin-top: 0.25rem;
        }

        /* 通用板块 */
        .section {
            padding: 4rem 0;
        }
        .section-alt {
            background: #fff;
        }
        .section-title {
            font-size: clamp(1.5rem, 3.5vw, 2.25rem);
            font-weight: 800;
            color: var(--ink-900);
            letter-spacing: -0.015em;
            margin-bottom: 0.875rem;
            line-height: 1.25;
        }
        .section-subtitle {
            font-size: 1rem;
            color: var(--ink-500);
            line-height: 1.8;
            max-width: 680px;
        }
        .section-header {
            margin-bottom: 2.5rem;
        }
        .tag-pill {
            display: inline-block;
            background: var(--brand-50);
            color: var(--brand-600);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            padding: 0.35rem 1rem;
            border-radius: 999px;
            margin-bottom: 0.875rem;
            border: 1px solid rgba(217, 78, 43, 0.15);
        }

        /* 品牌故事 */
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .story-image-wrap {
            position: relative;
            border-radius: var(--radius-3xl);
            overflow: hidden;
            box-shadow: var(--shadow-lift);
        }
        .story-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 4/3;
            transition: var(--transition-smooth);
        }
        .story-image-wrap:hover img {
            transform: scale(1.04);
        }
        .story-image-wrap .story-badge {
            position: absolute;
            bottom: 1.25rem;
            left: 1.25rem;
            background: rgba(26, 26, 34, 0.8);
            backdrop-filter: blur(8px);
            color: #fff;
            padding: 0.6rem 1.25rem;
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        .story-text p {
            color: var(--ink-600);
            line-height: 1.85;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .story-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .story-stats .stat-item {
            background: var(--cream);
            border-radius: var(--radius-lg);
            padding: 1.25rem 1rem;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition-base);
        }
        .story-stats .stat-item:hover {
            border-color: rgba(217, 78, 43, 0.25);
            box-shadow: var(--shadow-soft);
        }
        .story-stats .stat-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--brand-600);
            line-height: 1.2;
        }
        .story-stats .stat-label {
            font-size: 0.78rem;
            color: var(--ink-400);
            margin-top: 0.3rem;
        }

        /* 精选内容卡 */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .content-card {
            background: #fff;
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: var(--transition-smooth);
            border: 1px solid rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
        }
        .content-card:hover {
            box-shadow: var(--shadow-lift);
            transform: translateY(-6px);
        }
        .content-card .card-image {
            aspect-ratio: 16/10;
            overflow: hidden;
            position: relative;
        }
        .content-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }
        .content-card:hover .card-image img {
            transform: scale(1.06);
        }
        .content-card .card-image .card-tag {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(217, 78, 43, 0.92);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 0.3rem 0.8rem;
            border-radius: 999px;
            letter-spacing: 0.04em;
        }
        .content-card .card-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .content-card .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--ink-900);
            margin-bottom: 0.6rem;
            line-height: 1.4;
            transition: var(--transition-base);
        }
        .content-card:hover .card-title {
            color: var(--brand-600);
        }
        .content-card .card-desc {
            font-size: 0.9rem;
            color: var(--ink-500);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 1rem;
        }
        .content-card .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.78rem;
            color: var(--ink-400);
            padding-top: 0.875rem;
            border-top: 1px solid var(--ink-100);
        }
        .content-card .card-meta .meta-left {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .content-card .card-link {
            color: var(--brand-600);
            font-weight: 600;
            font-size: 0.82rem;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            transition: var(--transition-base);
        }
        .content-card .card-link:hover {
            color: var(--brand-700);
            gap: 0.5rem;
        }

        /* 图墙 */
        .photo-wall {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.875rem;
        }
        .photo-wall .wall-item {
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 1;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            cursor: pointer;
            position: relative;
        }
        .photo-wall .wall-item:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: var(--shadow-lift);
        }
        .photo-wall .wall-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .photo-wall .wall-item .wall-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 34, 0.65));
            opacity: 0;
            transition: var(--transition-base);
            display: flex;
            align-items: flex-end;
            padding: 0.875rem;
            color: #fff;
            font-size: 0.78rem;
            font-weight: 600;
        }
        .photo-wall .wall-item:hover .wall-overlay {
            opacity: 1;
        }

        /* 口碑气泡 */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        .testimonial-card {
            background: #fff;
            border-radius: var(--radius-2xl);
            padding: 1.75rem 1.5rem;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--transition-smooth);
            position: relative;
        }
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 0.75rem;
            right: 1.25rem;
            font-size: 3.5rem;
            font-weight: 800;
            color: rgba(217, 78, 43, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        .testimonial-card:hover {
            box-shadow: var(--shadow-lift);
            transform: translateY(-4px);
        }
        .testimonial-card .quote {
            font-size: 0.95rem;
            color: var(--ink-600);
            line-height: 1.75;
            margin-bottom: 1.25rem;
        }
        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .testimonial-card .author-avatar {
            width: 2.25rem;
            height: 2.25rem;
            background: linear-gradient(135deg, var(--brand-300), var(--brand-500));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .testimonial-card .author-name {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--ink-800);
        }
        .testimonial-card .author-role {
            font-size: 0.75rem;
            color: var(--ink-400);
        }

        /* 资讯区 */
        .news-layout {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 2rem;
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .news-list .news-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 1rem 1.25rem;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--transition-base);
            cursor: pointer;
        }
        .news-list .news-item:hover {
            border-color: rgba(217, 78, 43, 0.25);
            box-shadow: var(--shadow-soft);
            transform: translateX(4px);
        }
        .news-list .news-index {
            width: 2.25rem;
            height: 2.25rem;
            background: var(--brand-50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: var(--brand-600);
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .news-list .news-info {
            flex: 1;
            min-width: 0;
        }
        .news-list .news-title-link {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--ink-800);
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: var(--transition-base);
        }
        .news-list .news-item:hover .news-title-link {
            color: var(--brand-600);
        }
        .news-list .news-date {
            font-size: 0.75rem;
            color: var(--ink-400);
            margin-top: 0.2rem;
        }
        .news-side {
            background: #fff;
            border-radius: var(--radius-2xl);
            padding: 1.75rem;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .news-side .side-title {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--ink-900);
            margin-bottom: 1.25rem;
        }
        .news-side .side-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--ink-100);
            transition: var(--transition-base);
            cursor: pointer;
        }
        .news-side .side-item:last-child {
            border-bottom: none;
        }
        .news-side .side-item:hover .side-text {
            color: var(--brand-600);
        }
        .news-side .side-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: var(--brand-50);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-600);
            flex-shrink: 0;
            font-size: 1.1rem;
        }
        .news-side .side-text {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--ink-700);
            flex: 1;
            line-height: 1.4;
            transition: var(--transition-base);
        }
        .news-side .side-num {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--brand-500);
            background: var(--brand-50);
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
        }

        /* 相关推荐 */
        .recommend-track {
            display: flex;
            gap: 1.25rem;
            overflow-x: auto;
            padding-bottom: 1rem;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--brand-200) transparent;
        }
        .recommend-track::-webkit-scrollbar {
            height: 6px;
        }
        .recommend-track::-webkit-scrollbar-thumb {
            background: var(--brand-200);
            border-radius: 999px;
        }
        .recommend-track .rec-card {
            flex: 0 0 260px;
            scroll-snap-align: start;
            background: #fff;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: var(--transition-smooth);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .recommend-track .rec-card:hover {
            box-shadow: var(--shadow-lift);
            transform: translateY(-4px);
        }
        .recommend-track .rec-card img {
            aspect-ratio: 16/9;
            width: 100%;
            object-fit: cover;
        }
        .recommend-track .rec-body {
            padding: 1rem 1.25rem;
        }
        .recommend-track .rec-title {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--ink-800);
            line-height: 1.45;
            margin-bottom: 0.4rem;
        }
        .recommend-track .rec-desc {
            font-size: 0.78rem;
            color: var(--ink-400);
            line-height: 1.5;
        }

        /* 奖励预览 */
        .rewards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        .reward-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 1.75rem 1.25rem;
            text-align: center;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .reward-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lift);
        }
        .reward-card .reward-icon {
            font-size: 2.25rem;
            margin-bottom: 0.75rem;
            display: block;
        }
        .reward-card .reward-name {
            font-weight: 800;
            font-size: 0.95rem;
            color: var(--ink-900);
            margin-bottom: 0.4rem;
        }
        .reward-card .reward-desc {
            font-size: 0.78rem;
            color: var(--ink-400);
            line-height: 1.5;
        }
        .reward-card .reward-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--gold-400);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
            letter-spacing: 0.04em;
        }

        /* 地图到店 */
        .map-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }
        .map-placeholder {
            background: linear-gradient(135deg, #F1ECE6 0%, #E8DCD0 50%, #D5C8B8 100%);
            border-radius: var(--radius-2xl);
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 0.75rem;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
        }
        .map-placeholder::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 30% 40%, rgba(217,78,43,0.1) 0%, transparent 50%),
                              radial-gradient(circle at 70% 60%, rgba(240,185,66,0.12) 0%, transparent 45%),
                              radial-gradient(circle at 50% 50%, rgba(0,0,0,0.03) 0%, transparent 70%);
        }
        .map-placeholder .map-pin {
            width: 3.5rem;
            height: 3.5rem;
            background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(217, 78, 43, 0.35);
            position: relative;
            z-index: 1;
        }
        .map-placeholder .map-pin span {
            transform: rotate(45deg);
            font-size: 1.4rem;
        }
        .map-placeholder .map-label {
            position: relative;
            z-index: 1;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--ink-600);
        }
        .map-info .info-row {
            display: flex;
            gap: 0.875rem;
            align-items: flex-start;
            padding: 0.875rem 0;
            border-bottom: 1px solid var(--ink-100);
        }
        .map-info .info-row:last-child {
            border-bottom: none;
        }
        .map-info .info-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: var(--brand-50);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-600);
            flex-shrink: 0;
            font-size: 1.1rem;
        }
        .map-info .info-label {
            font-size: 0.78rem;
            color: var(--ink-400);
            margin-bottom: 0.15rem;
        }
        .map-info .info-value {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--ink-800);
        }

        /* FAQ */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.875rem;
        }
        .faq-item {
            background: #fff;
            border-radius: var(--radius-xl);
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            transition: var(--transition-base);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-card);
            border-color: rgba(217, 78, 43, 0.15);
        }
        .faq-item .faq-question {
            padding: 1.25rem 1.5rem;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--ink-900);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            cursor: pointer;
            user-select: none;
        }
        .faq-item .faq-question .faq-toggle {
            width: 1.75rem;
            height: 1.75rem;
            background: var(--brand-50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-600);
            font-weight: 800;
            font-size: 1.1rem;
            flex-shrink: 0;
            transition: var(--transition-base);
        }
        .faq-item .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 1.5rem;
            color: var(--ink-500);
            font-size: 0.9rem;
            line-height: 1.8;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.25rem;
        }
        .faq-item.active .faq-toggle {
            background: var(--brand-500);
            color: #fff;
            transform: rotate(45deg);
        }

        /* 订阅进店 CTA */
        .cta-section {
            background: linear-gradient(160deg, #1A1A22 0%, #3A1A0E 50%, #571B0E 100%);
            border-radius: var(--radius-3xl);
            padding: 3.5rem 2.5rem;
            text-align: center;
            color: #FDE8DD;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lift);
        }
        .cta-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-6.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
        }
        .cta-section > * {
            position: relative;
            z-index: 1;
        }
        .cta-section .cta-title {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }
        .cta-section .cta-desc {
            font-size: 1rem;
            color: rgba(253, 232, 221, 0.8);
            line-height: 1.8;
            max-width: 560px;
            margin: 0 auto 2rem;
        }
        .cta-section .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .site-footer {
            background: #1A1A22;
            color: rgba(255, 255, 255, 0.7);
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-brand {
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.75rem;
        }
        .footer-desc {
            font-size: 0.85rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.55);
            max-width: 340px;
        }
        .footer-col .footer-col-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.875rem;
            letter-spacing: 0.04em;
        }
        .footer-col .footer-link {
            display: block;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.55);
            padding: 0.3rem 0;
            transition: var(--transition-base);
        }
        .footer-col .footer-link:hover {
            color: var(--gold-300);
            transform: translateX(3px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.45);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.45);
            transition: var(--transition-base);
        }
        .footer-bottom a:hover {
            color: var(--gold-300);
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonials {
                grid-template-columns: repeat(2, 1fr);
            }
            .rewards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .photo-wall {
                grid-template-columns: repeat(3, 1fr);
            }
            .story-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .news-layout {
                grid-template-columns: 1fr;
            }
            .map-layout {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .section {
                padding: 3rem 0;
            }
            .hero-section {
                min-height: auto;
            }
            .hero-content {
                padding: 2.5rem 0 2rem;
            }
            .cards-grid {
                grid-template-columns: 1fr;
            }
            .testimonials {
                grid-template-columns: 1fr;
            }
            .rewards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.875rem;
            }
            .photo-wall {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-trust {
                gap: 1rem;
            }
            .cta-section {
                padding: 2.5rem 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .nav-cta {
                padding: 0.5rem 1.25rem;
                font-size: 0.82rem;
            }
            .nav-logo {
                font-size: 1.05rem;
            }
            .nav-logo .logo-icon {
                width: 1.875rem;
                height: 1.875rem;
                font-size: 0.95rem;
            }
            .countdown-bar {
                font-size: 0.75rem;
                padding: 0.5rem 1rem;
                gap: 0.5rem;
            }
            .countdown-bar .cd-unit {
                min-width: 1.8rem;
                font-size: 0.7rem;
                padding: 0.15rem 0.35rem;
            }
            .story-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.625rem;
            }
            .story-stats .stat-item {
                padding: 0.875rem 0.5rem;
            }
            .story-stats .stat-number {
                font-size: 1.2rem;
            }
            .bento-card {
                grid-template-columns: 1fr 1fr;
                max-width: 100%;
            }
        }
        @media (max-width: 520px) {
            .container-custom {
                padding: 0 1rem;
            }
            .hero-title {
                font-size: 1.7rem;
            }
            .hero-desc {
                font-size: 0.92rem;
            }
            .btn-primary,
            .btn-secondary {
                padding: 0.7rem 1.5rem;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }
            .hero-cta-group {
                flex-direction: column;
            }
            .hero-trust {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.625rem;
            }
            .rewards-grid {
                grid-template-columns: 1fr 1fr;
            }
            .reward-card {
                padding: 1.25rem 0.875rem;
            }
            .photo-wall {
                grid-template-columns: 1fr 1fr;
            }
            .story-stats {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .news-list .news-item {
                padding: 0.75rem 0.875rem;
                gap: 0.625rem;
            }
            .news-list .news-title-link {
                font-size: 0.85rem;
            }
            .section-title {
                font-size: 1.4rem;
            }
        }
