/* roulang page: index */
:root {
            --tea-50: #f7f4ed;
            --tea-100: #eae3d4;
            --tea-200: #d5c5a8;
            --tea-300: #bfa67c;
            --tea-400: #ad8b57;
            --tea-500: #98733e;
            --tea-600: #7a5a31;
            --tea-700: #5f4527;
            --tea-800: #453320;
            --tea-900: #2c2115;
            --tea-950: #1a1610;
            --jade-50: #f0f6f2;
            --jade-100: #d5e8dc;
            --jade-200: #add0ba;
            --jade-300: #82b696;
            --jade-400: #5a9a75;
            --jade-500: #3f7f5c;
            --jade-600: #2f6247;
            --jade-700: #254e38;
            --jade-800: #1d3c2c;
            --jade-900: #15291f;
            --jade-950: #0d1a14;
            --gold-50: #fdf9ef;
            --gold-100: #f9efd5;
            --gold-200: #f0dda5;
            --gold-300: #e5c673;
            --gold-400: #d9af48;
            --gold-500: #c8952f;
            --gold-600: #a67624;
            --gold-700: #84591f;
            --gold-800: #6a481e;
            --gold-900: #573b1c;
            --bg-page: #faf8f3;
            --bg-section: #ffffff;
            --bg-dark: #1d2b22;
            --text-primary: #1e2b23;
            --text-secondary: #55685c;
            --text-muted: #8a9a8e;
            --text-inverse: #f7f4ed;
            --border-light: #e5ddd0;
            --border-medium: #d0c5b4;
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            --radius-xl2: 1.75rem;
            --shadow-soft: 0 4px 24px rgba(26, 22, 16, 0.06);
            --shadow-card: 0 2px 12px rgba(26, 22, 16, 0.05), 0 8px 32px rgba(26, 22, 16, 0.08);
            --shadow-lift: 0 8px 20px rgba(26, 22, 16, 0.12), 0 18px 50px rgba(26, 22, 16, 0.10);
            --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 16px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.65;
            color: var(--text-primary);
            background-color: var(--bg-page);
            padding-bottom: 80px;
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast), opacity var(--transition-fast);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 3px solid rgba(63, 127, 92, 0.4);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        @media (min-width: 640px) {
            .container {
                padding-left: 1.75rem;
                padding-right: 1.75rem;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }

        @media (min-width: 1280px) {
            .container {
                padding-left: 2.5rem;
                padding-right: 2.5rem;
            }
        }

        /* Header/Nav */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-light);
            transition: box-shadow var(--transition-base);
        }

        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(26, 22, 16, 0.07);
        }

        .site-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            height: 60px;
            padding: 0 1.25rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 640px) {
            .site-nav {
                height: 64px;
                padding: 0 1.75rem;
                gap: 2rem;
            }
        }

        @media (min-width: 1024px) {
            .site-nav {
                height: 68px;
                padding: 0 2rem;
                gap: 2.5rem;
            }
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.02em;
            color: var(--jade-800);
            white-space: nowrap;
            transition: color var(--transition-fast);
        }

        .nav-logo:hover {
            color: var(--jade-600);
        }

        .nav-logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--jade-700), var(--jade-500));
            color: #fff;
            font-size: 18px;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(37, 78, 56, 0.25);
        }

        @media (min-width: 640px) {
            .nav-logo {
                font-size: 1.2rem;
            }
            .nav-logo-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
                border-radius: 12px;
            }
        }

        .nav-logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .nav-logo-primary {
            font-size: 1rem;
            font-weight: 700;
        }

        @media (min-width: 640px) {
            .nav-logo-primary {
                font-size: 1.15rem;
            }
        }

        .nav-logo-sub {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 1.1rem;
            border-radius: 9999px;
            background: var(--jade-700);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            white-space: nowrap;
            transition: all var(--transition-base);
            box-shadow: 0 2px 12px rgba(37, 78, 56, 0.2);
            border: 1px solid var(--jade-700);
        }

        .nav-cta:hover {
            background: var(--jade-600);
            box-shadow: 0 4px 20px rgba(37, 78, 56, 0.3);
            transform: translateY(-1px);
        }

        .nav-cta:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(37, 78, 56, 0.2);
        }

        @media (max-width: 639px) {
            .nav-cta {
                padding: 0.4rem 0.85rem;
                font-size: 0.78rem;
            }
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 520px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13, 26, 20, 0.88) 0%, rgba(29, 60, 44, 0.78) 40%, rgba(20, 36, 28, 0.55) 100%);
            z-index: 1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
            z-index: 3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 3.5rem 0;
            width: 100%;
        }

        .hero-badge-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.35rem 0.9rem;
            border-radius: 9999px;
            background: rgba(200, 149, 47, 0.9);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            box-shadow: 0 4px 16px rgba(200, 149, 47, 0.35);
        }

        .hero-badge-outline {
            display: inline-flex;
            align-items: center;
            padding: 0.35rem 0.9rem;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #f7f4ed;
            font-size: 0.8rem;
            font-weight: 500;
            backdrop-filter: blur(8px);
        }

        .hero-title {
            font-size: clamp(1.7rem, 4vw, 2.8rem);
            font-weight: 700;
            line-height: 1.25;
            color: #f7f4ed;
            letter-spacing: 0.01em;
            margin-bottom: 1rem;
            max-width: 700px;
        }

        .hero-desc {
            font-size: clamp(0.95rem, 1.5vw, 1.1rem);
            line-height: 1.75;
            color: rgba(247, 244, 237, 0.88);
            max-width: 620px;
            margin-bottom: 1.75rem;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.85rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.7rem 1.6rem;
            border-radius: 9999px;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            cursor: pointer;
            transition: all var(--transition-base);
            border: 2px solid transparent;
            white-space: nowrap;
        }

        .btn:active {
            transform: scale(0.97);
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
            color: var(--tea-950);
            border-color: var(--gold-500);
            box-shadow: 0 4px 20px rgba(200, 149, 47, 0.4);
        }

        .btn-gold:hover {
            box-shadow: 0 8px 32px rgba(200, 149, 47, 0.5);
            transform: translateY(-2px);
            background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
        }

        .btn-outline-light {
            background: transparent;
            color: #f7f4ed;
            border-color: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(6px);
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.8);
            transform: translateY(-2px);
        }

        .btn-jade {
            background: var(--jade-700);
            color: #fff;
            border-color: var(--jade-700);
            box-shadow: 0 4px 16px rgba(37, 78, 56, 0.3);
        }

        .btn-jade:hover {
            background: var(--jade-600);
            border-color: var(--jade-600);
            box-shadow: 0 8px 28px rgba(37, 78, 56, 0.4);
            transform: translateY(-2px);
        }

        .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
            margin-top: 1.75rem;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }

        .hero-stat-value {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gold-300);
            line-height: 1.1;
        }

        .hero-stat-label {
            font-size: 0.78rem;
            color: rgba(247, 244, 237, 0.7);
        }

        /* Section Common */
        .section {
            padding: 3.5rem 0;
        }

        @media (min-width: 768px) {
            .section {
                padding: 4.5rem 0;
            }
        }

        @media (min-width: 1024px) {
            .section {
                padding: 5.5rem 0;
            }
        }

        .section-header {
            margin-bottom: 2rem;
            max-width: 720px;
        }

        .section-tag {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            background: var(--tea-100);
            color: var(--tea-700);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 0.7rem;
        }

        .section-title {
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 700;
            color: var(--jade-900);
            line-height: 1.3;
            margin-bottom: 0.6rem;
        }

        .section-desc {
            font-size: 0.98rem;
            color: var(--text-secondary);
            line-height: 1.75;
            max-width: 680px;
        }

        /* Countdown Section */
        .countdown-section {
            background: var(--jade-900);
            position: relative;
            overflow: hidden;
        }

        .countdown-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 149, 47, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .countdown-inner {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .countdown-label {
            font-size: 1rem;
            color: rgba(247, 244, 237, 0.8);
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        .countdown-grid {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        @media (min-width: 640px) {
            .countdown-grid {
                gap: 1.25rem;
            }
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
            min-width: 68px;
            padding: 0.85rem 0.6rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
        }

        @media (min-width: 640px) {
            .countdown-item {
                min-width: 90px;
                padding: 1.1rem 0.8rem;
                border-radius: 20px;
            }
        }

        .countdown-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold-300);
            line-height: 1;
            font-variant-numeric: tabular-nums;
        }

        @media (min-width: 640px) {
            .countdown-number {
                font-size: 2.6rem;
            }
        }

        .countdown-unit {
            font-size: 0.78rem;
            color: rgba(247, 244, 237, 0.6);
            font-weight: 500;
        }

        .countdown-note {
            font-size: 0.88rem;
            color: rgba(247, 244, 237, 0.65);
            max-width: 480px;
            line-height: 1.6;
        }

        /* Activity Highlights */
        .highlights-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        @media (min-width: 768px) {
            .highlights-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .highlights-grid {
                grid-template-columns: 1.2fr 1fr 1fr;
                gap: 1.5rem;
            }
        }

        .highlight-card-large {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            background: var(--bg-section);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-base);
            min-height: 260px;
            display: flex;
            flex-direction: column;
        }

        .highlight-card-large:hover {
            box-shadow: var(--shadow-lift);
            transform: translateY(-3px);
        }

        .highlight-card-large .card-img {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .highlight-card-large .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .highlight-card-large:hover .card-img img {
            transform: scale(1.04);
        }

        .highlight-card-large .card-body {
            padding: 1.25rem 1.5rem 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 0.75rem;
        }

        @media (min-width: 1024px) {
            .highlight-card-large {
                grid-row: span 2;
                min-height: 400px;
            }
            .highlight-card-large .card-img {
                height: 280px;
            }
        }

        .highlight-card {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            background: var(--bg-section);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
        }

        .highlight-card:hover {
            box-shadow: var(--shadow-lift);
            transform: translateY(-3px);
        }

        .highlight-card .card-img {
            position: relative;
            height: 150px;
            overflow: hidden;
        }

        .highlight-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .highlight-card:hover .card-img img {
            transform: scale(1.04);
        }

        .highlight-card .card-body {
            padding: 1rem 1.25rem 1.25rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .card-tag {
            display: inline-block;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            background: var(--tea-100);
            color: var(--tea-700);
            width: fit-content;
        }

        .card-tag-gold {
            background: rgba(200, 149, 47, 0.15);
            color: var(--gold-700);
        }

        .card-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--jade-900);
            line-height: 1.4;
        }

        .card-title-sm {
            font-size: 0.95rem;
        }

        .card-text {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        /* Ticket Comparison */
        .ticket-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        @media (min-width: 768px) {
            .ticket-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
        }

        .ticket-card {
            position: relative;
            border-radius: var(--radius-xl);
            background: var(--bg-section);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-card);
            padding: 1.75rem 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            transition: all var(--transition-base);
        }

        .ticket-card:hover {
            box-shadow: var(--shadow-lift);
            transform: translateY(-4px);
        }

        .ticket-card.recommended {
            border: 2px solid var(--gold-500);
            box-shadow: var(--shadow-glow);
            background: linear-gradient(180deg, rgba(253, 249, 239, 0.8) 0%, var(--bg-section) 60%);
        }

        .ticket-card.recommended::before {
            content: '茶友推荐';
            position: absolute;
            top: -13px;
            right: 20px;
            background: var(--gold-500);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 0.3rem 0.8rem;
            border-radius: 9999px;
            letter-spacing: 0.05em;
            box-shadow: 0 4px 12px rgba(200, 149, 47, 0.35);
        }

        .ticket-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--jade-900);
        }

        .ticket-price {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--jade-800);
            line-height: 1.1;
        }

        .ticket-price-currency {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-muted);
        }

        .ticket-desc {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .ticket-features {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            flex: 1;
        }

        .ticket-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.55rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        .ticket-features li::before {
            content: '✓';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--jade-100);
            color: var(--jade-600);
            font-size: 0.7rem;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .ticket-card.recommended .ticket-features li::before {
            background: var(--gold-100);
            color: var(--gold-700);
        }

        .btn-ticket {
            width: 100%;
            padding: 0.65rem 1.2rem;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            transition: all var(--transition-base);
            border: 2px solid var(--jade-700);
            background: transparent;
            color: var(--jade-700);
            cursor: pointer;
        }

        .btn-ticket:hover {
            background: var(--jade-50);
            border-color: var(--jade-600);
            transform: translateY(-1px);
        }

        .btn-ticket.primary {
            background: var(--jade-700);
            color: #fff;
            border-color: var(--jade-700);
            box-shadow: 0 4px 14px rgba(37, 78, 56, 0.28);
        }

        .btn-ticket.primary:hover {
            background: var(--jade-600);
            border-color: var(--jade-600);
            box-shadow: 0 6px 22px rgba(37, 78, 56, 0.35);
            transform: translateY(-2px);
        }

        /* News Section */
        .news-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .news-layout {
                grid-template-columns: 1.2fr 1fr;
                gap: 2.5rem;
            }
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .news-list-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 0.5rem;
            border-bottom: 1px solid var(--border-light);
            transition: background var(--transition-fast);
            border-radius: 6px;
        }

        .news-list-item:hover {
            background: var(--tea-50);
        }

        .news-list-item:last-child {
            border-bottom: none;
        }

        .news-index {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--gold-600);
            background: var(--gold-100);
            padding: 0.2rem 0.55rem;
            border-radius: 6px;
            flex-shrink: 0;
            min-width: 28px;
            text-align: center;
        }

        .news-list-content {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            flex: 1;
        }

        .news-list-title {
            font-size: 0.98rem;
            font-weight: 600;
            color: var(--jade-900);
            line-height: 1.5;
            transition: color var(--transition-fast);
        }

        .news-list-title:hover {
            color: var(--gold-600);
        }

        .news-list-meta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .news-list-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .news-sidebar-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--jade-900);
            padding-bottom: 0.4rem;
            border-bottom: 2px solid var(--tea-200);
        }

        .news-sidebar-card {
            display: flex;
            gap: 0.85rem;
            background: var(--bg-section);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            padding: 0.65rem;
            transition: all var(--transition-base);
            align-items: center;
        }

        .news-sidebar-card:hover {
            box-shadow: var(--shadow-card);
            transform: translateX(3px);
        }

        .news-sidebar-card img {
            width: 70px;
            height: 70px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .news-sidebar-card-body {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .news-sidebar-card-title {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--jade-900);
            line-height: 1.45;
        }

        .news-sidebar-card-meta {
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        /* CTA Section */
        .cta-section {
            background-image: url('/assets/images/backpic/back-4.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 4rem 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13, 26, 20, 0.85) 0%, rgba(29, 60, 44, 0.75) 100%);
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 660px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            font-weight: 700;
            color: #f7f4ed;
            line-height: 1.3;
            margin-bottom: 0.85rem;
        }

        .cta-desc {
            font-size: 0.98rem;
            color: rgba(247, 244, 237, 0.85);
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        /* FAQ Section */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            max-width: 780px;
            margin: 0 auto;
        }

        .faq-item {
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            background: var(--bg-section);
            overflow: hidden;
            transition: all var(--transition-base);
        }

        .faq-item:hover {
            border-color: var(--border-medium);
            box-shadow: var(--shadow-soft);
        }

        .faq-item summary {
            padding: 1.1rem 1.25rem;
            font-weight: 600;
            font-size: 0.98rem;
            color: var(--jade-900);
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            transition: background var(--transition-fast);
            user-select: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary:hover {
            background: var(--tea-50);
        }

        .faq-item summary .faq-icon {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--gold-600);
            transition: transform var(--transition-base);
            flex-shrink: 0;
            line-height: 1;
        }

        .faq-item[open] summary .faq-icon {
            transform: rotate(45deg);
        }

        .faq-item .faq-answer {
            padding: 0 1.25rem 1.2rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* Footer */
        .site-footer {
            background: var(--jade-950);
            color: rgba(247, 244, 237, 0.7);
            padding: 3rem 0 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 1.4fr 1fr 1fr;
                gap: 2.5rem;
            }
        }

        .footer-brand-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f7f4ed;
            margin-bottom: 0.6rem;
        }

        .footer-brand-desc {
            font-size: 0.88rem;
            line-height: 1.7;
            max-width: 340px;
            color: rgba(247, 244, 237, 0.6);
        }

        .footer-col-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #f7f4ed;
            margin-bottom: 0.85rem;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-col ul li a {
            font-size: 0.85rem;
            color: rgba(247, 244, 237, 0.6);
            transition: color var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: var(--gold-400);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
            text-align: center;
            font-size: 0.78rem;
            color: rgba(247, 244, 237, 0.45);
        }

        @media (min-width: 640px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                text-align: left;
            }
        }

        /* Fixed Bottom CTA Bar */
        .fixed-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 200;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid var(--border-light);
            box-shadow: 0 -4px 24px rgba(26, 22, 16, 0.1);
            padding: 0.6rem 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.85rem;
            transition: transform var(--transition-base);
        }

        .fixed-cta-text {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
            min-width: 0;
        }

        .fixed-cta-title {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--jade-900);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .fixed-cta-sub {
            font-size: 0.72rem;
            color: var(--text-muted);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .fixed-cta-btn {
            flex-shrink: 0;
            padding: 0.55rem 1.2rem;
            border-radius: 9999px;
            background: var(--gold-500);
            color: var(--tea-950);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            border: none;
            cursor: pointer;
            transition: all var(--transition-base);
            box-shadow: 0 4px 16px rgba(200, 149, 47, 0.35);
            white-space: nowrap;
        }

        .fixed-cta-btn:hover {
            background: var(--gold-400);
            box-shadow: 0 6px 24px rgba(200, 149, 47, 0.45);
            transform: translateY(-1px);
        }

        @media (max-width: 480px) {
            .fixed-cta-btn {
                padding: 0.45rem 0.9rem;
                font-size: 0.78rem;
            }
        }

        /* Misc */
        .text-gold {
            color: var(--gold-500);
        }
        .bg-soft-tea {
            background-color: var(--tea-50);
        }
        .bg-white-sec {
            background-color: #fff;
        }

        @media (max-width: 767px) {
            .hero-section {
                min-height: 460px;
            }
        }
