/* roulang page: index */
:root {
            --primary: #0E4D45;
            --accent: #C6A664;
            --accent-hover: #B8954E;
            --bg: #F7F3EB;
            --bg-white: #FFFFFF;
            --dark: #0A1F1C;
            --dark-2: #132E29;
            --text: #1A2421;
            --text-secondary: #5C6B66;
            --text-muted: #929E99;
            --border: #E5DED2;
            --border-dark: #1E3834;
            --radius-sm: 6px;
            --radius-btn: 8px;
            --radius-card: 12px;
            --radius-lg: 16px;
            --shadow-sm: 0 2px 8px rgba(10, 31, 28, 0.04);
            --shadow-card: 0 8px 30px rgba(10, 31, 28, 0.08);
            --shadow-panel: 0 16px 48px rgba(10, 31, 28, 0.16);
            --ease: cubic-bezier(0.22, 1, 0.36, 1);
            --font-serif: 'Noto Serif SC', Georgia, 'Times New Roman', 'Songti SC', serif;
            --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            --font-en: 'Playfair Display', Georgia, serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background-color: var(--bg);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s var(--ease);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }

        input {
            font-family: inherit;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 48px;
            gap: 24px;
        }

        .section-eyebrow {
            font-family: var(--font-en);
            font-size: 13px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 8px;
            display: block;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: 32px;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.02em;
            color: var(--text);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--dark);
            font-weight: 600;
            font-size: 15px;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            border: 1px solid transparent;
            transition: all 0.3s var(--ease);
            letter-spacing: 0.02em;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            border-color: var(--accent);
            box-shadow: 0 4px 16px rgba(198, 166, 100, 0.3);
            color: var(--dark);
            transform: translateY(-1px);
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            padding: 13px 30px;
            border-radius: var(--radius-btn);
            border: 2px solid var(--primary);
            transition: all 0.3s var(--ease);
        }

        .btn-secondary:hover {
            background: rgba(14, 77, 69, 0.08);
            color: var(--primary);
        }

        .btn-secondary:active {
            transform: scale(0.98);
        }

        .btn-sm {
            padding: 10px 20px;
            font-size: 14px;
            border-radius: 6px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            font-size: 12px;
            letter-spacing: 0.08em;
            padding: 4px 12px;
            border-radius: 999px;
            color: var(--accent);
            background: rgba(198, 166, 100, 0.12);
            font-weight: 600;
        }

        /* ====== Header Navigation ====== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 31, 28, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: background 0.4s ease, box-shadow 0.4s ease;
        }

        .site-header.scrolled {
            background: rgba(10, 31, 28, 0.98);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-serif);
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.04em;
            white-space: nowrap;
            z-index: 1001;
        }

        .logo-mark {
            width: 10px;
            height: 24px;
            background: var(--accent);
            border-radius: 2px;
            display: inline-block;
            position: relative;
        }

        .logo-mark::before {
            content: '';
            position: absolute;
            inset: 3px;
            border: 1px solid rgba(10, 31, 28, 0.4);
            border-radius: 1px;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 10px 16px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 15px;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 12px;
            right: 12px;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s var(--ease);
        }

        .nav-link:hover,
        .nav-link.active {
            color: #fff;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

        .mega-panel {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            width: 680px;
            background: #fff;
            border-radius: 12px;
            box-shadow: var(--shadow-panel);
            padding: 28px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
            border: 1px solid var(--border);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .nav-item:hover .mega-panel,
        .nav-item:focus-within .mega-panel {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .mega-col-title {
            font-size: 13px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 16px;
        }

        .mega-links {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mega-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 10px;
            border-radius: 6px;
            color: var(--text);
            font-size: 14px;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .mega-link:hover {
            background: rgba(14, 77, 69, 0.06);
            color: var(--primary);
        }

        .mega-link .arrow {
            color: var(--accent);
            font-size: 13px;
        }

        .mega-cards {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mega-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            border-radius: 8px;
            transition: background 0.2s ease;
        }

        .mega-card:hover {
            background: rgba(14, 77, 69, 0.05);
        }

        .mega-card img {
            width: 56px;
            height: 42px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .mega-card-info {
            flex: 1;
            min-width: 0;
        }

        .mega-card-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .mega-card-info span {
            font-size: 12px;
            color: var(--text-muted);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .search-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.8);
            transition: background 0.3s ease, color 0.3s ease;
        }

        .search-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .search-btn svg {
            width: 20px;
            height: 20px;
        }

        .header-cta {
            padding: 8px 18px;
            font-size: 14px;
            background: var(--accent);
            color: var(--dark);
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s var(--ease);
            white-space: nowrap;
        }

        .header-cta:hover {
            background: var(--accent-hover);
            box-shadow: 0 4px 16px rgba(198, 166, 100, 0.3);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            gap: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: var(--dark);
            z-index: 1000;
            padding: 90px 32px 40px;
            transition: right 0.4s var(--ease);
            overflow-y: auto;
        }

        .mobile-menu.open {
            right: 0;
        }

        .mobile-menu .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-size: 18px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .mobile-menu .nav-link::after {
            display: none;
        }

        .mobile-menu .nav-link:hover,
        .mobile-menu .nav-link.active {
            color: var(--accent);
        }

        .menu-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .menu-overlay.open {
            display: block;
            opacity: 1;
        }

        /* ====== Hero ====== */
        .hero {
            min-height: 100vh;
            min-height: 100svh;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 120px 0 80px;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top right, rgba(10, 31, 28, 0.88) 0%, rgba(10, 31, 28, 0.6) 40%, rgba(10, 31, 28, 0.25) 70%, rgba(10, 31, 28, 0.1) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
        }

        .hero-eyebrow {
            font-family: var(--font-en);
            font-size: 14px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-eyebrow::before {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--accent);
            display: inline-block;
        }

        .hero-title {
            font-family: var(--font-serif);
            font-size: 64px;
            line-height: 1.1;
            color: #fff;
            font-weight: 700;
            letter-spacing: 0.03em;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            max-width: 500px;
            margin-bottom: 40px;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-scroll {
            position: absolute;
            bottom: 32px;
            right: 40px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            letter-spacing: 0.1em;
            z-index: 2;
        }

        .hero-scroll::after {
            content: '';
            width: 40px;
            height: 1px;
            background: rgba(255, 255, 255, 0.4);
            animation: scrollLine 2s infinite var(--ease);
        }

        @keyframes scrollLine {
            0% {
                transform: scaleX(0);
                transform-origin: left;
            }
            50% {
                transform: scaleX(1);
                transform-origin: left;
            }
            100% {
                transform: scaleX(0);
                transform-origin: right;
            }
        }

        .hero-decoration {
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%) rotate(180deg);
            writing-mode: vertical-rl;
            font-family: var(--font-en);
            font-size: 13px;
            letter-spacing: 0.5em;
            color: rgba(255, 255, 255, 0.3);
            z-index: 2;
            text-transform: uppercase;
        }

        /* ====== Carousel ====== */
        .carousel-section {
            padding: 100px 0 80px;
        }

        .carousel-wrap {
            position: relative;
            overflow: hidden;
            margin: 0 -24px;
            padding: 0 24px;
        }

        .carousel-track {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 16px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        .carousel-card {
            flex: 0 0 260px;
            scroll-snap-align: start;
            background: var(--bg-white);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
        }

        .carousel-card:hover {
            box-shadow: var(--shadow-card);
            border-color: var(--accent);
            transform: translateY(-4px);
        }

        .carousel-card-cover {
            position: relative;
            aspect-ratio: 2/3;
            overflow: hidden;
        }

        .carousel-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s var(--ease);
        }

        .carousel-card:hover .carousel-card-cover img {
            transform: scale(1.04);
        }

        .cover-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 31, 28, 0.6) 0%, transparent 40%);
        }

        .card-score {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(198, 166, 100, 0.9);
            color: var(--dark);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 999px;
            letter-spacing: 0.02em;
        }

        .carousel-card-info {
            padding: 16px;
        }

        .card-tag-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }

        .card-tag {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.08em;
        }

        .card-year-divider {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--text-muted);
        }

        .carousel-card-title {
            font-family: var(--font-serif);
            font-size: 17px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4;
            margin: 0 0 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .carousel-card-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .carousel-arrows {
            display: flex;
            gap: 8px;
        }

        .arrow-btn {
            width: 40px;
            height: 40px;
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            background: transparent;
            transition: all 0.3s var(--ease);
        }

        .arrow-btn:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        /* ====== Trending ====== */
        .trending-section {
            background: var(--dark);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .trending-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(198, 166, 100, 0.08) 0%, transparent 70%);
        }

        .trending-section .section-title {
            color: #fff;
        }

        .trending-section .section-eyebrow {
            color: var(--accent);
        }

        .trending-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 20px;
        }

        .trending-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--dark-2);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
        }

        .trending-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
            transform: translateY(-4px);
        }

        .trending-card-large {
            grid-column: 1;
            grid-row: 1 / 3;
        }

        .trending-card-img {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
        }

        .trending-card-large .trending-card-img {
            aspect-ratio: 16/12;
            height: 100%;
        }

        .trending-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s var(--ease);
        }

        .trending-card:hover .trending-card-img img {
            transform: scale(1.05);
        }

        .trending-card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 31, 28, 0.7) 0%, transparent 50%);
        }

        .trending-rank {
            position: absolute;
            top: 12px;
            left: 16px;
            font-family: var(--font-en);
            font-size: 64px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.2);
            line-height: 1;
            z-index: 2;
            transition: color 0.4s var(--ease);
        }

        .trending-card:hover .trending-rank {
            color: rgba(198, 166, 100, 0.8);
        }

        .trending-card-body {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            z-index: 2;
        }

        .trending-card-tag {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.08em;
            margin-bottom: 4px;
            display: block;
        }

        .trending-card-title {
            font-family: var(--font-serif);
            font-size: 22px;
            color: #fff;
            font-weight: 600;
            line-height: 1.3;
        }

        .trending-card-large .trending-card-title {
            font-size: 32px;
        }

        .trending-card-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        .trending-score {
            background: rgba(198, 166, 100, 0.2);
            color: var(--accent);
            padding: 2px 10px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 13px;
        }

        .trending-card:nth-child(2) .trending-card-img {
            aspect-ratio: 4/5;
        }

        .trending-card:nth-child(3) .trending-card-img {
            aspect-ratio: 4/5;
        }

        /* ====== Curated ====== */
        .curated-section {
            padding: 100px 0;
        }

        .curated-layout {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 40px;
        }

        .curated-tabs {
            display: flex;
            flex-direction: column;
            border-right: 1px solid var(--border);
        }

        .curated-tab {
            padding: 16px 20px;
            font-size: 15px;
            color: var(--text-secondary);
            border-left: 3px solid transparent;
            transition: all 0.3s var(--ease);
            text-align: left;
            font-weight: 500;
            background: transparent;
        }

        .curated-tab:hover {
            color: var(--primary);
            background: rgba(14, 77, 69, 0.04);
        }

        .curated-tab.active {
            color: var(--primary);
            border-left-color: var(--accent);
            font-weight: 600;
            background: rgba(14, 77, 69, 0.04);
        }

        .curated-panel {
            display: none;
            animation: fadeIn 0.4s var(--ease);
        }

        .curated-panel.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .curated-items {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .curated-item {
            display: flex;
            gap: 14px;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .curated-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-sm);
        }

        .curated-item img {
            width: 72px;
            height: 96px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .curated-item-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .curated-item-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .curated-item-info span {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ====== CTA Subscribe ====== */
        .cta-section {
            background: linear-gradient(135deg, rgba(14, 77, 69, 0.1) 0%, rgba(198, 166, 100, 0.08) 100%);
            padding: 80px 0;
            position: relative;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .cta-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .cta-title {
            font-family: var(--font-serif);
            font-size: 32px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text);
            margin-bottom: 12px;
        }

        .cta-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .cta-form-wrap {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
        }

        .cta-form {
            display: flex;
            gap: 10px;
        }

        .cta-input {
            flex: 1;
            height: 48px;
            border: 1px solid #D6CEC0;
            border-radius: var(--radius-btn);
            padding: 0 16px;
            font-size: 14px;
            background: #fff;
            transition: all 0.3s var(--ease);
            outline: none;
            color: var(--text);
            min-width: 0;
        }

        .cta-input::placeholder {
            color: var(--text-muted);
        }

        .cta-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(14, 77, 69, 0.15);
        }

        .cta-submit {
            height: 48px;
            padding: 0 24px;
            background: var(--primary);
            color: #fff;
            border-radius: var(--radius-btn);
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s var(--ease);
            white-space: nowrap;
        }

        .cta-submit:hover {
            background: var(--dark);
            box-shadow: 0 4px 16px rgba(10, 31, 28, 0.2);
        }

        .cta-privacy {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 12px;
        }

        /* ====== News / CMS ====== */
        .news-section {
            padding: 100px 0;
        }

        .news-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .news-featured {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            background: var(--bg-white);
            transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
        }

        .news-featured:hover {
            box-shadow: var(--shadow-card);
            border-color: var(--accent);
        }

        .news-featured-img {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
        }

        .news-featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s var(--ease);
        }

        .news-featured:hover .news-featured-img img {
            transform: scale(1.05);
        }

        .news-featured-img .badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: rgba(10, 31, 28, 0.8);
            color: var(--accent);
        }

        .news-featured-body {
            padding: 24px;
        }

        .news-featured-body h3 {
            font-family: var(--font-serif);
            font-size: 22px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .news-featured-body p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .news-date {
            font-size: 13px;
            color: var(--text-muted);
        }

        .news-more {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.3s ease;
        }

        .news-more:hover {
            gap: 8px;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .news-item {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 12px;
            transition: box-shadow 0.3s var(--ease), border-color 0.3s ease;
        }

        .news-item:hover {
            box-shadow: var(--shadow-sm);
            border-color: var(--accent);
        }

        .news-item-link {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .news-item-thumb {
            width: 64px;
            height: 64px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
            transition: transform 0.4s var(--ease);
        }

        .news-item:hover .news-item-thumb {
            transform: scale(1.05);
        }

        .news-item-info {
            flex: 1;
            min-width: 0;
        }

        .news-item-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .news-item:hover .news-item-info h4 {
            color: var(--primary);
        }

        .news-item-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .news-item-meta span:first-child {
            color: var(--accent);
            font-weight: 500;
        }

        .news-arrow {
            color: var(--text-muted);
            font-size: 16px;
            transition: transform 0.3s ease, color 0.3s ease;
            flex-shrink: 0;
        }

        .news-item:hover .news-arrow {
            transform: translateX(4px);
            color: var(--primary);
        }

        .news-empty {
            position: relative;
            background: rgba(255, 255, 255, 0.7);
            border: 1px dashed var(--border);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            text-align: center;
            grid-column: 1 / -1;
        }

        .empty-icon {
            width: 48px;
            height: 48px;
            border: 3px solid var(--border);
            border-top-color: var(--accent);
            border-radius: 50%;
            margin-bottom: 16px;
            animation: spin 3s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .news-empty p {
            color: var(--text-secondary);
            font-size: 15px;
        }

        /* ====== FAQ ====== */
        .faq-section {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .faq-list {
            max-width: 720px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
            transition: border-color 0.3s ease;
        }

        .faq-item.active {
            border-bottom-color: var(--primary);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            transition: color 0.3s ease;
            gap: 16px;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1.5px solid var(--text-muted);
            color: var(--text-muted);
            font-size: 14px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            position: relative;
        }

        .faq-icon::after {
            content: '';
            position: absolute;
            width: 10px;
            height: 1.5px;
            background: currentColor;
            border-radius: 2px;
        }

        .faq-icon::before {
            content: '';
            position: absolute;
            width: 1.5px;
            height: 10px;
            background: currentColor;
            border-radius: 2px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            border-color: var(--primary);
            color: var(--primary);
        }

        .faq-item.active .faq-icon::before {
            transform: rotate(90deg);
            opacity: 0;
        }

        .faq-item.active .faq-icon::after {
            opacity: 1;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.25s ease;
            padding: 0;
        }

        .faq-answer-inner {
            padding: 0 0 20px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* ====== Stats ====== */
        .stats-section {
            padding: 60px 0;
            background: var(--dark);
            color: #fff;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-en);
            font-size: 56px;
            font-weight: 600;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 8px;
            display: block;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            letter-spacing: 0.06em;
        }

        /* ====== Footer ====== */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
            gap: 40px;
            padding-bottom: 48px;
        }

        .footer-logo {
            font-family: var(--font-serif);
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.6);
            max-width: 280px;
        }

        .footer-col-title {
            font-size: 13px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-link {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        .footer-link:hover {
            color: #fff;
            padding-left: 10px;
        }

        .footer-newsletter { 
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }

        .footer-input {
            flex: 1;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            padding: 0 12px;
            font-size: 13px;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            min-width: 0;
        }

        .footer-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.1);
        }

        .footer-submit {
            height: 40px;
            padding: 0 16px;
            background: var(--accent);
            color: var(--dark);
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s var(--ease);
            white-space: nowrap;
        }

        .footer-submit:hover {
            background: var(--accent-hover);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* ====== Responsive ====== */
        @media (max-width: 1023px) {
            .main-nav {
                display: none;
            }

            .header-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-title {
                font-size: 48px;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .trending-grid {
                grid-template-columns: 1fr 1fr;
            }

            .trending-card-large {
                grid-column: 1 / -1;
                grid-row: auto;
            }

            .trending-card-large .trending-card-img {
                aspect-ratio: 16/9;
            }

            .curated-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .curated-tabs {
                flex-direction: row;
                border-right: none;
                border-bottom: 1px solid var(--border);
                overflow-x: auto;
            }

            .curated-tab {
                border-left: none;
                border-bottom: 3px solid transparent;
                white-space: nowrap;
                padding: 12px 16px;
                border-radius: 0;
            }

            .curated-tab.active {
                border-left-color: transparent;
                border-bottom-color: var(--accent);
            }

            .cta-inner {
                grid-template-columns: 1fr;
            }

            .news-layout {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 767px) {
            .section {
                padding: 60px 0;
            }

            .carousel-section {
                padding: 60px 0 40px;
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-subtitle {
                font-size: 15px;
            }

            .hero-ctas {
                flex-direction: column;
            }

            .hero-ctas .btn-primary,
            .hero-ctas .btn-secondary {
                width: 100%;
            }

            .hero-decoration {
                display: none;
            }

            .hero-scroll {
                display: none;
            }

            .section-title {
                font-size: 24px;
            }

            .section-head {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                margin-bottom: 32px;
            }

            .carousel-card {
                flex: 0 0 220px;
            }

            .trending-grid {
                grid-template-columns: 1fr;
            }

            .trending-card-large {
                grid-column: auto;
            }

            .curated-items {
                grid-template-columns: 1fr;
            }

            .cta-form {
                flex-direction: column;
            }

            .cta-submit {
                width: 100%;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .stat-number {
                font-size: 40px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .news-featured-body {
                padding: 16px;
            }

            .news-featured-body h3 {
                font-size: 18px;
            }

            .cta-form-wrap {
                padding: 20px;
            }

            .cta-title {
                font-size: 24px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

/* roulang page: article */
:root {
    --primary: #0E4D45;
    --primary-light: #1A6358;
    --primary-soft: rgba(14, 77, 69, 0.08);
    --accent: #C6A664;
    --accent-dark: #B8954E;
    --accent-soft: rgba(198, 166, 100, 0.14);
    --bg: #F7F3EB;
    --bg-white: #FFFFFF;
    --dark: #0A1F1C;
    --text: #1A2421;
    --text-secondary: #5C6B66;
    --text-muted: #929E99;
    --border: #E5DED2;
    --border-hover: #C6A664;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-card: 0 8px 30px rgba(10, 31, 28, 0.08);
    --shadow-panel: 0 16px 48px rgba(10, 31, 28, 0.16);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font-serif: "Noto Serif SC", "Source Han Serif SC", Georgia, "Times New Roman", "Songti SC", serif;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-size: 16px; line-height: 1.75; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease), border-color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Header / Nav ===== */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(247, 243, 235, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--primary); letter-spacing: 0.04em; white-space: nowrap; }
.logo-mark {
    display: inline-block; width: 18px; height: 18px; margin-right: 10px;
    background: repeating-linear-gradient(45deg, var(--primary) 0 2px, var(--accent) 2px 4px);
    border-radius: 3px; flex-shrink: 0;
}
.main-nav { display: flex; align-items: center; gap: 8px; margin-left: 32px; }
.nav-item { position: relative; }
.nav-link {
    display: inline-block; padding: 10px 18px; font-size: 15px; font-weight: 500;
    color: var(--text); border-radius: var(--radius-sm); position: relative;
}
.nav-link::after {
    content: ''; position: absolute; left: 18px; right: 18px; bottom: 4px;
    height: 2px; background: var(--accent); border-radius: 2px;
    transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.mega-panel {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
    width: 680px; background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-md); box-shadow: var(--shadow-panel);
    padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    opacity: 0; visibility: hidden; transition: opacity .15s ease, transform .15s ease, visibility .15s;
    z-index: 100;
}
.mega-panel::before,
.mega-panel::after {
    content: ''; position: absolute; top: -18px; left: 0; right: 0; height: 18px; background: transparent;
}
.mega-panel::after {
    top: auto; bottom: -18px; height: 18px;
}
.nav-item:hover .mega-panel, .nav-item:focus-within .mega-panel {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega-col-title {
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--primary-soft);
}
.mega-links { display: flex; flex-direction: column; gap: 10px; }
.mega-link {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 14px; color: var(--text-secondary); padding: 4px 0;
    transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.mega-link .arrow { color: var(--accent); opacity: 0; transform: translateX(-4px); transition: opacity .25s, transform .25s; }
.mega-link:hover { color: var(--primary); padding-left: 6px; }
.mega-link:hover .arrow { opacity: 1; transform: translateX(0); }
.mega-cards { display: flex; flex-direction: column; gap: 12px; }
.mega-card {
    display: flex; align-items: center; gap: 12px; padding: 8px; border-radius: var(--radius-sm);
    border: 1px solid transparent; transition: border-color .3s, background .3s;
}
.mega-card:hover { border-color: var(--border); background: var(--bg); }
.mega-card img { width: 48px; height: 64px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.mega-card-info h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.mega-card-info span { font-size: 12px; color: var(--text-muted); }
.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.icon-btn {
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); transition: background .3s, color .3s;
}
.icon-btn:hover { background: var(--primary-soft); color: var(--primary); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 15px; font-weight: 600; border-radius: 8px; padding: 14px 32px;
    transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .2s var(--ease), border-color .3s;
    border: 1px solid transparent; line-height: 1;
}
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 4px 16px rgba(198, 166, 100, 0.3); }
.btn-primary:active { transform: scale(0.98); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary-soft); }
.btn-outline:active { transform: scale(0.98); }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ===== Breadcrumb ===== */
.breadcrumb-wrap { padding: 24px 0 0; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: 13px; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text); max-width: 240px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ===== Article Main ===== */
.article-main { padding: 32px 0 100px; }
.article-container { max-width: 720px; margin: 0 auto; }
.article-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 56px 60px; box-shadow: 0 2px 12px rgba(10, 31, 28, 0.03);
}
.article-head { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.article-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--accent-dark);
    background: var(--accent-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.article-head h1 {
    font-family: var(--font-serif); font-size: 36px; line-height: 1.3; font-weight: 700;
    color: var(--text); letter-spacing: 0.02em; margin-bottom: 16px;
}
.article-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-muted); }
.meta-dot { color: var(--border); }
.article-body { font-size: 16px; line-height: 1.85; color: var(--text); }
.article-body > * + * { margin-top: 1.4em; }
.article-body p { margin-bottom: 1.5em; }
.article-body h2 {
    font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--text);
    margin: 2em 0 0.8em; padding-bottom: 12px; border-bottom: 1px solid var(--border); letter-spacing: 0.02em;
}
.article-body h3 {
    font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: var(--primary);
    margin: 1.8em 0 0.6em;
}
.article-body a { color: var(--primary); border-bottom: 1px solid rgba(14, 77, 69, 0.3); }
.article-body a:hover { color: var(--accent-dark); border-color: var(--accent); }
.article-body img { border-radius: 8px; border: 1px solid var(--border); margin: 2em 0; }
.article-body blockquote {
    border-left: 3px solid var(--primary); background: var(--primary-soft);
    padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 2em 0;
    font-style: italic; color: var(--text-secondary);
}
.article-body ul, .article-body ol { padding-left: 1.6em; margin: 1.5em 0; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.6em; line-height: 1.8; }
.article-body li::marker { color: var(--accent); }
.article-body code {
    background: var(--bg); border: 1px solid var(--border); border-radius: 4px;
    padding: 2px 8px; font-size: 14px; font-family: "SF Mono", Consolas, monospace;
}
.article-body pre {
    background: var(--dark); color: var(--bg); border-radius: var(--radius-md);
    padding: 24px; overflow-x: auto; line-height: 1.6; font-size: 14px; margin: 2em 0;
}
.article-body pre code { background: transparent; border: none; padding: 0; color: inherit; }
.article-body hr { border: none; border-top: 1px solid var(--border); margin: 3em 0; }
.article-back {
    display: inline-block; margin-top: 48px; font-size: 14px; color: var(--text-secondary);
    border-bottom: 1px solid transparent; transition: color .3s, border-color .3s;
}
.article-back:hover { color: var(--primary); border-bottom-color: var(--primary); }
.article-back .arr { color: var(--accent); margin-left: 4px; }

/* ===== Not Found ===== */
.not-found {
    background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 80px 40px; text-align: center;
}
.not-found-icon { margin: 0 auto 24px; }
.not-found h1 { font-family: var(--font-serif); font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.not-found p { color: var(--text-secondary); margin-bottom: 28px; }

/* ===== Related ===== */
.related-section { padding: 80px 0 100px; background: var(--bg); border-top: 1px solid var(--border); }
.section-head { margin-bottom: 40px; }
.section-overline {
    font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 8px;
}
.section-head h2 {
    font-family: var(--font-serif); font-size: 32px; font-weight: 700; color: var(--text); letter-spacing: 0.02em;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card {
    background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md);
    overflow: hidden; transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.related-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.related-thumb { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.related-card:hover .related-thumb img { transform: scale(1.04); }
.related-tag {
    position: absolute; left: 14px; bottom: 14px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--bg);
    background: rgba(10, 31, 28, 0.75); padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.related-body { padding: 20px 22px 22px; }
.related-body h3 {
    font-family: var(--font-serif); font-size: 18px; font-weight: 600; line-height: 1.5;
    color: var(--text); margin-bottom: 14px; transition: color .3s;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.related-card:hover .related-body h3 { color: var(--primary); }
.related-meta {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 14px;
}
.related-arrow { color: var(--accent); font-size: 16px; transition: transform .3s var(--ease); }
.related-card:hover .related-arrow { transform: translateX(4px); }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: rgba(247, 243, 235, 0.8); padding: 72px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-logo {
    display: flex; align-items: center; font-family: var(--font-serif); font-size: 22px;
    font-weight: 700; color: var(--bg); letter-spacing: 0.04em; margin-bottom: 16px;
}
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(247, 243, 235, 0.55); max-width: 300px; }
.footer-col-title {
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
    font-size: 14px; color: rgba(247, 243, 235, 0.7); position: relative; padding-left: 0;
    transition: color .3s, padding-left .3s;
}
.footer-link:hover { color: var(--bg); padding-left: 10px; }
.footer-link:hover::before { transform: scaleX(1); }
.footer-link::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%) scaleY(0);
    width: 3px; height: 10px; background: var(--accent); border-radius: 2px; transition: transform .25s var(--ease);
}
.footer-link:hover::before { transform: translateY(-50%) scaleY(1); }
.footer-newsletter { display: flex; gap: 8px; margin-top: 16px; }
.footer-input {
    flex: 1; height: 44px; padding: 0 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06); color: var(--bg); font-size: 14px; outline: none;
    transition: border-color .3s, background .3s, box-shadow .3s;
}
.footer-input::placeholder { color: rgba(247, 243, 235, 0.4); }
.footer-input:focus { border-color: var(--accent); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.15); }
.footer-submit {
    height: 44px; padding: 0 20px; border-radius: 8px; background: var(--accent); color: var(--dark);
    font-size: 14px; font-weight: 600; white-space: nowrap; transition: background .3s, box-shadow .3s;
}
.footer-submit:hover { background: var(--accent-dark); box-shadow: 0 4px 16px rgba(198, 166, 100, 0.25); }
.footer-bottom {
    border-top: 1px solid #1E3834; padding: 22px 0; display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 13px; color: rgba(247, 243, 235, 0.45);
}

/* ===== Responsive ===== */
@media (max-width: 1023px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 72px; right: 0; bottom: 0; width: 320px; max-width: 85vw;
        background: var(--bg-white); flex-direction: column; align-items: stretch;
        padding: 24px; gap: 4px; border-left: 1px solid var(--border);
        box-shadow: -20px 0 60px rgba(10, 31, 28, 0.12);
        transform: translateX(100%); transition: transform .35s var(--ease); z-index: 999;
        margin-left: 0; overflow-y: auto;
    }
    .main-nav.open { transform: translateX(0); }
    .nav-item { border-bottom: 1px solid var(--border); padding: 4px 0; }
    .nav-link { display: flex; justify-content: space-between; padding: 14px 8px; font-size: 16px; }
    .nav-link::after { display: none; }
    .mega-panel {
        position: static; transform: none; opacity: 1; visibility: visible;
        width: 100%; grid-template-columns: 1fr; gap: 16px; padding: 16px 8px 20px;
        box-shadow: none; border: none; border-left: 2px solid var(--primary-soft);
        border-radius: 0; margin-top: 0; display: none; background: var(--bg);
    }
    .nav-item.open .mega-panel { display: grid; }
    .header-actions .btn { display: none; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .article-card { padding: 40px 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 767px) {
    .container { padding: 0 16px; }
    .header-inner { height: 64px; }
    .logo { font-size: 18px; }
    .logo-mark { width: 14px; height: 14px; margin-right: 8px; }
    .breadcrumb-wrap { padding: 16px 0 0; }
    .article-main { padding: 20px 0 60px; }
    .article-card { padding: 28px 20px; border-radius: var(--radius-md); }
    .article-head h1 { font-size: 26px; line-height: 1.35; }
    .article-body { font-size: 15px; line-height: 1.8; }
    .article-body h2 { font-size: 22px; }
    .article-body h3 { font-size: 19px; }
    .article-back { font-size: 13px; }
    .related-section { padding: 56px 0 64px; }
    .section-head h2 { font-size: 26px; }
    .related-grid { grid-template-columns: 1fr; gap: 16px; }
    .related-body { padding: 16px 18px 18px; }
    .related-body h3 { font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
    .footer-newsletter { flex-direction: column; }
    .footer-input, .footer-submit { width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* roulang page: category1 */
:root {
        --primary: #0E4D45;
        --primary-light: #1A6B60;
        --accent: #C6A664;
        --accent-hover: #B8954E;
        --bg: #F7F3EB;
        --bg-white: #FFFFFF;
        --dark: #0A1F1C;
        --dark-light: #1E3834;
        --text: #1A2421;
        --text-secondary: #5C6B66;
        --text-muted: #929E99;
        --border: #E5DED2;
        --border-hover: #C6A664;
        --radius-sm: 6px;
        --radius-md: 8px;
        --radius-lg: 12px;
        --radius-xl: 16px;
        --shadow-sm: 0 2px 8px rgba(10, 31, 28, 0.06);
        --shadow-md: 0 8px 30px rgba(10, 31, 28, 0.08);
        --shadow-lg: 0 16px 48px rgba(10, 31, 28, 0.16);
        --ease: cubic-bezier(0.22, 1, 0.36, 1);
        --font-serif: "Noto Serif SC", "Source Han Serif SC", Georgia, "Times New Roman", "Songti SC", serif;
        --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }
    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: var(--font-sans);
        font-size: 16px;
        line-height: 1.75;
        color: var(--text);
        background: var(--bg);
        -webkit-font-smoothing: antialiased;
    }
    img {
        max-width: 100%;
        display: block;
    }
    a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s var(--ease);
    }
    button {
        font-family: inherit;
        cursor: pointer;
        border: none;
        background: none;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .section-padding {
        padding: 100px 0;
    }
    .eyebrow {
        display: inline-block;
        font-size: 13px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent);
        font-weight: 600;
        margin-bottom: 12px;
        font-family: var(--font-sans);
    }
    .section-title {
        font-family: var(--font-serif);
        font-size: 32px;
        font-weight: 700;
        line-height: 1.3;
        color: var(--text);
        letter-spacing: 0.02em;
    }
    .section-header {
        margin-bottom: 48px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
    }
    .section-header p {
        color: var(--text-secondary);
        font-size: 15px;
        max-width: 480px;
    }
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 32px;
        font-size: 15px;
        font-weight: 600;
        border-radius: var(--radius-md);
        transition: all 0.35s var(--ease);
        letter-spacing: 0.02em;
        line-height: 1.2;
        gap: 8px;
    }
    .btn-primary {
        background: var(--accent);
        color: var(--dark);
    }
    .btn-primary:hover {
        background: var(--accent-hover);
        box-shadow: 0 4px 16px rgba(198, 166, 100, 0.3);
        transform: translateY(-2px);
    }
    .btn-primary:active {
        transform: scale(0.98);
    }
    .btn-outline {
        border: 2px solid var(--primary);
        color: var(--primary);
        background: transparent;
    }
    .btn-outline:hover {
        background: rgba(14, 77, 69, 0.1);
        border-color: var(--primary-light);
    }
    .btn-outline:active {
        transform: scale(0.98);
    }
    .btn-light {
        background: var(--bg-white);
        color: var(--primary);
    }
    .btn-light:hover {
        background: var(--bg);
        box-shadow: var(--shadow-md);
    }
    .tag {
        display: inline-block;
        padding: 4px 14px;
        border-radius: 999px;
        font-size: 12px;
        letter-spacing: 0.08em;
        font-weight: 500;
        background: rgba(198, 166, 100, 0.15);
        color: var(--accent-hover);
        line-height: 1.4;
    }
    .tag-dark {
        background: rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.9);
    }
    .tag-primary {
        background: rgba(14, 77, 69, 0.1);
        color: var(--primary);
    }
    /* ─── 导航 ─── */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(10, 31, 28, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: background 0.4s var(--ease);
    }
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
    }
    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-serif);
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }
    .logo-mark {
        width: 12px;
        height: 12px;
        background: var(--accent);
        border-radius: 2px;
        flex-shrink: 0;
        position: relative;
    }
    .logo-mark::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 6px;
        height: 6px;
        background: var(--dark);
        border-radius: 1px;
    }
    .main-nav {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .nav-item {
        position: relative;
    }
    .nav-link {
        display: inline-block;
        padding: 8px 18px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
        position: relative;
        transition: color 0.3s var(--ease);
        letter-spacing: 0.02em;
        line-height: 1.4;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 100%;
        height: 2px;
        background: var(--accent);
        border-radius: 2px;
        transition: transform 0.35s var(--ease);
        transform-origin: center;
    }
    .nav-link:hover {
        color: #fff;
    }
    .nav-link:hover::after {
        transform: translateX(-50%) scaleX(1);
    }
    .nav-link.active {
        color: #fff;
        font-weight: 600;
    }
    .nav-link.active::after {
        transform: translateX(-50%) scaleX(1);
    }
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .nav-search {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-md);
        color: rgba(255, 255, 255, 0.7);
        font-size: 18px;
        transition: all 0.3s var(--ease);
        cursor: pointer;
        background: transparent;
    }
    .nav-search:hover {
        color: var(--accent);
        background: rgba(255, 255, 255, 0.06);
    }
    .nav-cta-btn {
        padding: 10px 24px;
        font-size: 14px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--dark);
        font-weight: 600;
        transition: all 0.35s var(--ease);
        line-height: 1.2;
        letter-spacing: 0.02em;
    }
    .nav-cta-btn:hover {
        background: var(--accent-hover);
        box-shadow: 0 4px 16px rgba(198, 166, 100, 0.3);
        transform: translateY(-1px);
    }
    .mega-panel {
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        width: 680px;
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        padding: 28px;
        display: flex;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.15s var(--ease);
        border: 1px solid var(--border);
    }
    .mega-panel::before {
        content: '';
        position: absolute;
        top: -12px;
        left: 0;
        width: 100%;
        height: 12px;
        background: transparent;
    }
    .nav-item:hover .mega-panel {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    .nav-item:focus-within .mega-panel {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    .mega-col-title {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 16px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--border);
    }
    .mega-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .mega-link {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 10px;
        border-radius: var(--radius-sm);
        font-size: 14px;
        color: var(--text);
        transition: all 0.3s var(--ease);
        line-height: 1.4;
    }
    .mega-link .arrow {
        color: var(--accent);
        opacity: 0;
        transform: translateX(-4px);
        transition: all 0.3s var(--ease);
        font-size: 16px;
    }
    .mega-link:hover {
        background: rgba(14, 77, 69, 0.06);
        color: var(--primary);
    }
    .mega-link:hover .arrow {
        opacity: 1;
        transform: translateX(0);
    }
    .mega-cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .mega-card {
        display: flex;
        gap: 12px;
        padding: 10px;
        border-radius: var(--radius-md);
        border: 1px solid transparent;
        transition: all 0.3s var(--ease);
        align-items: center;
    }
    .mega-card img {
        width: 64px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-sm);
        flex-shrink: 0;
    }
    .mega-card:hover {
        border-color: var(--border);
        background: rgba(247, 243, 235, 0.5);
    }
    .mega-card-info h4 {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        color: var(--text);
        margin-bottom: 4px;
        font-family: var(--font-serif);
    }
    .mega-card-info span {
        font-size: 12px;
        color: var(--text-secondary);
        letter-spacing: 0.04em;
    }
    .nav-toggle {
        display: none;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-md);
        color: #fff;
        font-size: 20px;
        background: transparent;
        transition: background 0.3s var(--ease);
    }
    .nav-toggle:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    .mobile-drawer {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--dark);
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s var(--ease);
    }
    .mobile-drawer.open {
        max-height: 480px;
        display: block;
    }
    .mobile-drawer a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-weight: 500;
    }
    .mobile-drawer a:last-child {
        border-bottom: none;
    }
    .mobile-drawer a.active {
        color: var(--accent);
    }
    /* ─── Page Hero ─── */
    .page-hero {
        position: relative;
        min-height: 320px;
        display: flex;
        align-items: center;
        padding: 120px 0 60px;
        background: var(--dark);
        overflow: hidden;
    }
    .page-hero-bg {
        position: absolute;
        inset: 0;
        background-image: url('/assets/images/backpic/back-1.webp');
        background-size: cover;
        background-position: center;
        opacity: 0.45;
        z-index: 0;
    }
    .page-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(10, 31, 28, 0.92) 20%, rgba(10, 31, 28, 0.45) 60%, rgba(10, 31, 28, 0.2) 100%);
        z-index: 1;
    }
    .page-hero-content {
        position: relative;
        z-index: 2;
    }
    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 20px;
        letter-spacing: 0.04em;
    }
    .breadcrumb a {
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.3s var(--ease);
    }
    .breadcrumb a:hover {
        color: var(--accent);
    }
    .breadcrumb .sep {
        color: rgba(255, 255, 255, 0.35);
    }
    .page-hero h1 {
        font-family: var(--font-serif);
        font-size: 56px;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
        letter-spacing: 0.04em;
        margin-bottom: 16px;
    }
    .page-hero-sub {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.8);
        max-width: 520px;
        line-height: 1.6;
    }
    /* ─── 导语区 ─── */
    .intro-section {
        padding: 100px 0 80px;
    }
    .intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }
    .intro-left .section-title {
        font-size: 36px;
        margin-bottom: 0;
    }
    .intro-right p {
        color: var(--text-secondary);
        font-size: 16px;
        line-height: 1.85;
        margin-bottom: 0;
    }
    .intro-right p+p {
        margin-top: 20px;
    }
    /* ─── 策展列表 ─── */
    .showcase-section {
        padding: 80px 0 100px;
    }
    .showcase-list {
        border-top: 1px solid var(--border);
    }
    .showcase-item {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 40px;
        padding: 48px 0;
        border-bottom: 1px solid var(--border);
        transition: border-color 0.4s var(--ease);
        align-items: center;
    }
    .showcase-item:hover {
        border-bottom-color: var(--border-hover);
    }
    .showcase-img {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        aspect-ratio: 3/4;
        background: var(--dark);
    }
    .showcase-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s var(--ease);
    }
    .showcase-item:hover .showcase-img img {
        transform: scale(1.04);
    }
    .showcase-img .rank-num {
        position: absolute;
        top: 16px;
        left: 16px;
        font-family: var(--font-serif);
        font-size: 48px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        z-index: 2;
        letter-spacing: 0.02em;
    }
    .showcase-info {
        padding: 8px 0;
    }
    .showcase-info .tag {
        margin-bottom: 12px;
    }
    .showcase-title {
        font-family: var(--font-serif);
        font-size: 28px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 12px;
        line-height: 1.3;
        letter-spacing: 0.02em;
    }
    .showcase-desc {
        color: var(--text-secondary);
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
        max-width: 540px;
    }
    .showcase-meta {
        display: flex;
        align-items: center;
        gap: 24px;
        font-size: 13px;
        color: var(--text-muted);
        letter-spacing: 0.04em;
    }
    .showcase-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .showcase-meta span::before {
        content: '';
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--accent);
        flex-shrink: 0;
    }
    .showcase-meta span:first-child::before {
        display: none;
    }
    /* ─── 数据统计 ─── */
    .stats-section {
        padding: 100px 0;
        background: var(--dark);
        position: relative;
        overflow: hidden;
    }
    .stats-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(198, 166, 100, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
        position: relative;
        z-index: 1;
    }
    .stat-item {
        text-align: center;
        padding: 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.02);
        transition: all 0.4s var(--ease);
    }
    .stat-item:hover {
        border-color: rgba(198, 166, 100, 0.3);
        background: rgba(255, 255, 255, 0.04);
        transform: translateY(-4px);
    }
    .stat-number {
        font-family: var(--font-serif);
        font-size: 56px;
        font-weight: 700;
        color: var(--accent);
        line-height: 1.2;
        margin-bottom: 8px;
        letter-spacing: 0.02em;
    }
    .stat-label {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
    /* ─── 精选推荐 ─── */
    .featured-section {
        padding: 100px 0;
        background: var(--bg-white);
    }
    .featured-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .featured-card {
        border-radius: var(--radius-lg);
        overflow: hidden;
        border: 1px solid var(--border);
        background: var(--bg-white);
        transition: all 0.4s var(--ease);
    }
    .featured-card:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--border-hover);
        transform: translateY(-4px);
    }
    .featured-img {
        aspect-ratio: 4/5;
        overflow: hidden;
        position: relative;
        background: var(--dark);
    }
    .featured-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s var(--ease);
    }
    .featured-card:hover .featured-img img {
        transform: scale(1.04);
    }
    .featured-img .tag {
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 2;
    }
    .featured-info {
        padding: 24px;
    }
    .featured-title {
        font-family: var(--font-serif);
        font-size: 20px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 8px;
        line-height: 1.4;
        letter-spacing: 0.02em;
    }
    .featured-desc {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 16px;
    }
    .featured-meta {
        font-size: 13px;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 16px;
        letter-spacing: 0.03em;
    }
    .featured-meta .rating {
        color: var(--accent-hover);
        font-weight: 600;
        background: rgba(198, 166, 100, 0.15);
        padding: 2px 10px;
        border-radius: 999px;
        font-size: 12px;
    }
    /* ─── FAQ ─── */
    .faq-section {
        padding: 100px 0;
    }
    .faq-list {
        max-width: 820px;
        margin: 0 auto;
    }
    .faq-item {
        border-bottom: 1px solid var(--border);
        transition: border-color 0.3s var(--ease);
        position: relative;
    }
    .faq-item.open {
        border-bottom-color: var(--accent);
    }
    .faq-item.open::before {
        content: '';
        position: absolute;
        left: -16px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--accent);
        border-radius: 3px;
    }
    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 28px 0;
        font-size: 17px;
        font-weight: 600;
        color: var(--text);
        cursor: pointer;
        font-family: var(--font-serif);
        letter-spacing: 0.02em;
        line-height: 1.4;
        text-align: left;
        width: 100%;
        background: transparent;
    }
    .faq-toggle {
        font-size: 24px;
        color: var(--accent);
        transition: transform 0.3s var(--ease);
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(198, 166, 100, 0.12);
        line-height: 1;
        font-weight: 400;
    }
    .faq-item.open .faq-toggle {
        transform: rotate(45deg);
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s var(--ease);
    }
    .faq-answer-inner {
        padding-bottom: 28px;
        font-size: 15px;
        color: var(--text-secondary);
        line-height: 1.8;
        max-width: 720px;
    }
    /* ─── CTA ─── */
    .cta-section {
        padding: 100px 0;
        background: var(--primary);
        position: relative;
        overflow: hidden;
    }
    .cta-section::before {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(198, 166, 100, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }
    .cta-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }
    .cta-content .eyebrow {
        color: rgba(198, 166, 100, 0.8);
    }
    .cta-title {
        font-family: var(--font-serif);
        font-size: 40px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
        line-height: 1.25;
        letter-spacing: 0.02em;
    }
    .cta-desc {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 32px;
        line-height: 1.8;
    }
    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }
    /* ─── 相关分类 ─── */
    .related-section {
        padding: 80px 0;
        background: var(--bg);
    }
    .related-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px 28px;
    }
    .related-label {
        font-size: 14px;
        color: var(--text-muted);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 600;
    }
    .related-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        font-weight: 500;
        color: var(--text);
        padding: 8px 4px;
        position: relative;
        transition: color 0.3s var(--ease);
        line-height: 1.4;
    }
    .related-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s var(--ease);
    }
    .related-link:hover {
        color: var(--primary);
    }
    .related-link:hover::after {
        width: 100%;
    }
    .related-link .arrow {
        color: var(--accent);
        transition: transform 0.3s var(--ease);
        font-size: 18px;
    }
    .related-link:hover .arrow {
        transform: translateX(4px);
    }
    /* ─── 页脚 ─── */
    .site-footer {
        background: var(--dark);
        padding: 80px 0 0;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
        margin-bottom: 48px;
    }
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-serif);
        font-size: 22px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
        letter-spacing: 0.04em;
    }
    .footer-desc {
        font-size: 14px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.6);
        max-width: 320px;
    }
    .footer-col-title {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--dark-light);
    }
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .footer-link {
        display: inline-flex;
        align-items: center;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
        transition: all 0.3s var(--ease);
        line-height: 1.4;
        position: relative;
        padding-left: 0;
    }
    .footer-link:hover {
        color: #fff;
        padding-left: 14px;
    }
    .footer-link:hover::before {
        opacity: 1;
    }
    .footer-link::before {
        content: '';
        position: absolute;
        left: 0;
        width: 4px;
        height: 4px;
        background: var(--accent);
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.3s var(--ease);
    }
    .footer-newsletter {
        display: flex;
        gap: 10px;
        margin-top: 4px;
    }
    .footer-input {
        flex: 1;
        height: 44px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.06);
        padding: 0 16px;
        font-size: 14px;
        color: #fff;
        outline: none;
        transition: all 0.3s var(--ease);
        font-family: inherit;
    }
    .footer-input::placeholder {
        color: rgba(255, 255, 255, 0.35);
    }
    .footer-input:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.15);
    }
    .footer-submit {
        height: 44px;
        padding: 0 22px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--dark);
        font-size: 14px;
        font-weight: 600;
        transition: all 0.35s var(--ease);
        font-family: inherit;
    }
    .footer-submit:hover {
        background: var(--accent-hover);
        box-shadow: 0 4px 16px rgba(198, 166, 100, 0.25);
    }
    .footer-bottom {
        border-top: 1px solid var(--dark-light);
        padding: 24px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    .footer-bottom span {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.4);
    }
    /* ─── 焦点状态 ─── */
    a:focus-visible,
    button:focus-visible {
        outline: 3px solid rgba(198, 166, 100, 0.4);
        outline-offset: 2px;
        border-radius: 4px;
    }
    /* ─── 响应式 ─── */
    @media (max-width: 1024px) {
        .container {
            padding: 0 20px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .main-nav {
            display: none;
        }
        .nav-toggle {
            display: flex;
        }
        .nav-cta-btn {
            display: none;
        }
        .intro-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .showcase-item {
            grid-template-columns: 220px 1fr;
            gap: 28px;
        }
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
    }
    @media (max-width: 768px) {
        .section-padding {
            padding: 60px 0;
        }
        .section-title {
            font-size: 24px;
        }
        .section-header {
            margin-bottom: 32px;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }
        .page-hero {
            min-height: 240px;
            padding: 100px 0 48px;
        }
        .page-hero h1 {
            font-size: 36px;
        }
        .page-hero-sub {
            font-size: 15px;
        }
        .intro-section {
            padding: 60px 0 40px;
        }
        .intro-left .section-title {
            font-size: 26px;
        }
        .showcase-section {
            padding: 40px 0 60px;
        }
        .showcase-item {
            grid-template-columns: 1fr;
            gap: 16px;
            padding: 32px 0;
        }
        .showcase-img {
            max-width: 220px;
        }
        .showcase-title {
            font-size: 22px;
        }
        .showcase-meta {
            gap: 16px;
            flex-wrap: wrap;
        }
        .stats-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .stat-number {
            font-size: 42px;
        }
        .featured-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .cta-section {
            padding: 60px 0;
        }
        .cta-title {
            font-size: 28px;
        }
        .cta-buttons {
            flex-direction: column;
        }
        .cta-buttons .btn {
            width: 100%;
        }
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .related-links {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }
    }
    @media (max-width: 520px) {
        .container {
            padding: 0 16px;
        }
        .page-hero h1 {
            font-size: 30px;
        }
        .showcase-img {
            max-width: 100%;
        }
        .btn {
            padding: 12px 24px;
            width: 100%;
        }
        .nav-search {
            display: none;
        }
        .footer-newsletter {
            flex-direction: column;
        }
        .footer-submit {
            width: 100%;
        }
        .mobile-drawer.open {
            max-height: 520px;
        }
    }
    @media (prefers-reduced-motion: reduce) {
        * {
            transition: none !important;
            animation: none !important;
        }
        html {
            scroll-behavior: auto;
        }
    }

/* roulang page: category2 */
:root {
        --pine: #0E4D45;
        --pine-dark: #0A1F1C;
        --gold: #C6A664;
        --gold-dark: #B8954E;
        --ivory: #F7F3EB;
        --white: #FFFFFF;
        --ink: #1A2421;
        --ink-secondary: #5C6B66;
        --ink-muted: #929E99;
        --border: #E5DED2;
        --border-hover: #C6A664;
        --radius-sm: 6px;
        --radius-md: 12px;
        --radius-lg: 16px;
        --shadow-hover: 0 8px 30px rgba(10, 31, 28, 0.08);
        --shadow-mega: 0 16px 48px rgba(10, 31, 28, 0.16);
        --ease: cubic-bezier(0.22, 1, 0.36, 1);
        --serif: "Noto Serif SC", "Source Han Serif SC", Georgia, "Times New Roman", "Songti SC", serif;
        --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        --header-h: 76px;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--sans);
        font-size: 16px;
        line-height: 1.75;
        color: var(--ink);
        background: var(--ivory);
        -webkit-font-smoothing: antialiased;
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        color: inherit;
        text-decoration: none;
        transition: var(--transition);
    }

    button,
    input {
        font-family: inherit;
        border: none;
        outline: none;
        background: none;
    }

    ul,
    ol {
        list-style: none;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ========== HEADER ========== */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 999;
        background: var(--pine-dark);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        height: var(--header-h);
        display: flex;
        align-items: center;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        width: 100%;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--serif);
        font-size: 24px;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 0.04em;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .logo-mark {
        width: 22px;
        height: 22px;
        border-radius: 4px;
        background: linear-gradient(135deg, var(--gold) 25%, transparent 25%) 0 0/8px 8px,
            linear-gradient(315deg, var(--gold) 25%, transparent 25%) 0 0/8px 8px,
            var(--pine);
        flex-shrink: 0;
        border: 1px solid rgba(198, 166, 100, 0.5);
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 4px;
        flex: 1;
        justify-content: center;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        display: block;
        padding: 10px 16px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.82);
        position: relative;
        white-space: nowrap;
        transition: color 0.3s var(--ease);
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 2px;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s var(--ease);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--white);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: scaleX(1);
    }

    .mega-panel {
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        width: 680px;
        background: var(--white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-mega);
        padding: 28px 32px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.15s var(--ease), transform 0.15s var(--ease), visibility 0.15s;
        z-index: 100;
        border: 1px solid var(--border);
    }

    .mega-panel::before {
        content: "";
        position: absolute;
        top: -14px;
        left: 0;
        right: 0;
        height: 14px;
    }

    .nav-item:hover .mega-panel,
    .nav-item:focus-within .mega-panel {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .mega-col-title {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: var(--gold-dark);
        text-transform: uppercase;
        margin-bottom: 16px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--border);
    }

    .mega-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .mega-link {
        font-size: 14px;
        color: var(--ink-secondary);
        padding: 6px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: color 0.2s var(--ease);
    }

    .mega-link:hover {
        color: var(--pine);
    }

    .mega-link .arrow {
        font-size: 14px;
        opacity: 0;
        transform: translateX(-4px);
        transition: all 0.2s var(--ease);
    }

    .mega-link:hover .arrow {
        opacity: 1;
        transform: translateX(0);
    }

    .mega-cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mega-card {
        display: flex;
        gap: 14px;
        padding: 10px;
        border-radius: var(--radius-sm);
        background: var(--ivory);
        transition: background 0.2s var(--ease);
    }

    .mega-card:hover {
        background: rgba(198, 166, 100, 0.12);
    }

    .mega-card img {
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: var(--radius-sm);
        flex-shrink: 0;
    }

    .mega-card-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .mega-card-info h4 {
        font-size: 14px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 4px;
        font-family: var(--serif);
    }

    .mega-card-info span {
        font-size: 12px;
        color: var(--ink-muted);
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--gold);
        color: var(--pine-dark);
        font-size: 14px;
        font-weight: 600;
        padding: 10px 24px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s var(--ease);
        border: 1px solid transparent;
    }

    .btn-primary:hover {
        background: var(--gold-dark);
        box-shadow: 0 4px 16px rgba(198, 166, 100, 0.3);
    }

    .btn-primary:active {
        transform: scale(0.98);
    }

    .btn-small {
        padding: 8px 18px;
        font-size: 13px;
    }

    .menu-toggle {
        display: none;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.06);
        cursor: pointer;
        position: relative;
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--white);
        margin: 5px auto;
        transition: all 0.3s var(--ease);
    }

    /* ========== PAGE HERO ========== */
    .page-hero {
        position: relative;
        min-height: 320px;
        display: flex;
        align-items: center;
        background: var(--pine-dark);
        overflow: hidden;
    }

    .page-hero-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.45;
    }

    .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(100deg, rgba(10, 31, 28, 0.92) 30%, rgba(10, 31, 28, 0.35) 80%, transparent 100%);
    }

    .page-hero .container {
        position: relative;
        z-index: 2;
    }

    .hero-eyebrow {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.12em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 14px;
        padding: 4px 14px;
        border: 1px solid rgba(198, 166, 100, 0.35);
        border-radius: 999px;
        background: rgba(198, 166, 100, 0.08);
    }

    .page-hero h1 {
        font-family: var(--serif);
        font-size: 52px;
        font-weight: 700;
        color: var(--white);
        line-height: 1.15;
        letter-spacing: 0.02em;
        margin-bottom: 12px;
    }

    .page-hero p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.75);
        max-width: 480px;
        line-height: 1.6;
    }

    /* ========== SECTION COMMONS ========== */
    .section-block {
        padding: 96px 0;
    }

    .section-block-alt {
        padding: 96px 0;
        background: var(--white);
    }

    .section-head {
        margin-bottom: 48px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .section-eyebrow {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.16em;
        color: var(--gold-dark);
        text-transform: uppercase;
    }

    .section-head h2 {
        font-family: var(--serif);
        font-size: 34px;
        font-weight: 700;
        color: var(--ink);
        line-height: 1.3;
        letter-spacing: 0.02em;
    }

    .section-head .sub {
        font-size: 15px;
        color: var(--ink-secondary);
        max-width: 560px;
        margin-top: 4px;
    }

    /* ========== ALTERNATING LIST ========== */
    .alternating-list {
        display: flex;
        flex-direction: column;
    }

    .alternate-item {
        display: grid;
        grid-template-columns: 42% 58%;
        gap: 48px;
        padding: 40px 0;
        border-bottom: 1px solid var(--border);
        align-items: center;
    }

    .alternate-item:first-child {
        padding-top: 0;
    }

    .alternate-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .alternate-item.reverse .alternate-media {
        order: 2;
    }

    .alternate-item.reverse .alternate-content {
        order: 1;
    }

    .alternate-media {
        position: relative;
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(10, 31, 28, 0.06);
    }

    .alternate-media::after {
        content: "";
        display: block;
        padding-bottom: 68%;
    }

    .alternate-media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s var(--ease);
    }

    .alternate-item:hover .alternate-media img {
        transform: scale(1.04);
    }

    .alternate-content {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .item-tags {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .badge {
        display: inline-flex;
        align-items: center;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.04em;
        color: var(--pine);
        background: rgba(14, 77, 69, 0.08);
        border: 1px solid rgba(14, 77, 69, 0.15);
        padding: 3px 12px;
        border-radius: 999px;
        transition: all 0.2s var(--ease);
    }

    .badge-gold {
        color: var(--gold-dark);
        background: rgba(198, 166, 100, 0.12);
        border-color: rgba(198, 166, 100, 0.3);
    }

    .alternate-content h3 {
        font-family: var(--serif);
        font-size: 26px;
        font-weight: 700;
        color: var(--ink);
        line-height: 1.3;
        letter-spacing: 0.02em;
    }

    .alternate-content .meta-line {
        font-size: 13px;
        color: var(--ink-muted);
        letter-spacing: 0.02em;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .alternate-content .meta-line .dot {
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: var(--gold);
        display: inline-block;
    }

    .alternate-content p {
        font-size: 15px;
        color: var(--ink-secondary);
        line-height: 1.75;
    }

    .text-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 600;
        color: var(--pine);
        background-image: linear-gradient(currentColor, currentColor);
        background-size: 0% 1px;
        background-repeat: no-repeat;
        background-position: left bottom;
        transition: background-size 0.3s var(--ease);
    }

    .text-link:hover {
        background-size: 100% 1px;
    }

    .text-link .arrow {
        transition: transform 0.2s var(--ease);
    }

    .text-link:hover .arrow {
        transform: translateX(4px);
    }

    /* ========== DARK SEASON SECTION ========== */
    .season-section {
        background: var(--pine-dark);
        padding: 96px 0;
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .season-section::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(198, 166, 100, 0.08) 0%, transparent 70%);
    }

    .season-section .section-eyebrow {
        color: var(--gold);
    }

    .season-section .section-head h2 {
        color: var(--white);
    }

    .season-section .section-head .sub {
        color: rgba(255, 255, 255, 0.6);
    }

    .season-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .season-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-md);
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        transition: all 0.3s var(--ease);
        position: relative;
    }

    .season-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gold);
        border-radius: 0 0 4px 4px;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s var(--ease);
    }

    .season-card:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(198, 166, 100, 0.3);
        transform: translateY(-4px);
    }

    .season-card:hover::before {
        transform: scaleX(1);
    }

    .season-card .index {
        font-family: var(--serif);
        font-size: 32px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.12);
        line-height: 1;
    }

    .season-card:hover .index {
        color: rgba(198, 166, 100, 0.4);
    }

    .season-card h3 {
        font-family: var(--serif);
        font-size: 20px;
        font-weight: 600;
        color: var(--white);
    }

    .season-card p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.7;
    }

    /* ========== RELATED LINKS ========== */
    .related-links {
        padding: 24px 0 96px;
        background: var(--ivory);
    }

    .related-inner {
        border-top: 1px solid var(--border);
        padding-top: 40px;
    }

    .related-title {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: var(--ink-muted);
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .related-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 32px;
    }

    .related-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 15px;
        font-weight: 500;
        color: var(--ink);
        padding: 4px 0;
        background-image: linear-gradient(var(--gold), var(--gold));
        background-size: 0% 2px;
        background-repeat: no-repeat;
        background-position: left bottom;
        transition: all 0.3s var(--ease);
    }

    .related-link .arrow {
        transition: transform 0.2s var(--ease);
    }

    .related-link:hover {
        color: var(--pine);
        background-size: 100% 2px;
    }

    .related-link:hover .arrow {
        transform: translateX(4px);
    }

    /* ========== FAQ ========== */
    .faq-section {
        background: var(--white);
        padding: 96px 0;
    }

    .faq-wrap {
        max-width: 760px;
    }

    .faq-item {
        border-bottom: 1px solid var(--border);
        position: relative;
        transition: border-color 0.3s var(--ease);
    }

    .faq-item:first-child {
        border-top: 1px solid var(--border);
    }

    .faq-item.open {
        border-color: var(--gold);
    }

    .faq-item.open::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--gold);
        border-radius: 0 2px 2px 0;
    }

    .faq-q {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px 20px 20px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        color: var(--ink);
        gap: 16px;
        transition: color 0.2s;
    }

    .faq-q:hover {
        color: var(--pine);
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 16px;
        color: var(--gold-dark);
        transition: all 0.3s var(--ease);
    }

    .faq-item.open .faq-icon {
        transform: rotate(45deg);
        background: rgba(198, 166, 100, 0.12);
        border-color: var(--gold);
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .faq-a-inner {
        padding: 0 24px 20px 20px;
        font-size: 14px;
        line-height: 1.7;
        color: var(--ink-secondary);
    }

    .faq-item.open .faq-a {
        max-height: 300px;
    }

    /* ========== CTA BAND ========== */
    .cta-band {
        background: linear-gradient(135deg, var(--pine) 0%, var(--pine-dark) 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 85% 20%, rgba(198, 166, 100, 0.15) 0%, transparent 50%),
            linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    }

    .cta-inner {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 48px;
    }

    .cta-copy {
        flex: 1;
    }

    .cta-copy h2 {
        font-family: var(--serif);
        font-size: 30px;
        font-weight: 700;
        color: var(--white);
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .cta-copy p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        max-width: 520px;
        line-height: 1.6;
    }

    .cta-form {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-shrink: 0;
    }

    .cta-input {
        width: 280px;
        height: 48px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.06);
        padding: 0 16px;
        font-size: 14px;
        color: var(--white);
        transition: all 0.3s var(--ease);
    }

    .cta-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .cta-input:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.15);
        background: rgba(255, 255, 255, 0.1);
    }

    .cta-form .btn-primary {
        height: 48px;
        padding: 0 28px;
    }

    .privacy-note {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.4);
        margin-top: 8px;
    }

    /* ========== FOOTER ========== */
    .site-footer {
        background: var(--pine-dark);
        color: rgba(255, 255, 255, 0.6);
        padding: 64px 0 0;
        font-size: 14px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
        gap: 48px;
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 0.04em;
        margin-bottom: 14px;
    }

    .footer-logo .logo-mark {
        width: 18px;
        height: 18px;
    }

    .footer-desc {
        font-size: 13px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.5);
        max-width: 280px;
    }

    .footer-col-title {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.1em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 16px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-link {
        color: rgba(255, 255, 255, 0.55);
        font-size: 14px;
        padding: 3px 0;
        transition: all 0.25s var(--ease);
        position: relative;
        padding-left: 0;
    }

    .footer-link:hover {
        color: var(--white);
        padding-left: 14px;
    }

    .footer-link:hover::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 2px;
        background: var(--gold);
        border-radius: 1px;
    }

    .footer-newsletter {
        display: flex;
        gap: 8px;
        margin-top: 12px;
    }

    .footer-input {
        flex: 1;
        height: 40px;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.05);
        padding: 0 12px;
        font-size: 13px;
        color: var(--white);
        transition: all 0.3s var(--ease);
    }

    .footer-input::placeholder {
        color: rgba(255, 255, 255, 0.35);
    }

    .footer-input:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.1);
    }

    .footer-submit {
        height: 40px;
        padding: 0 18px;
        border-radius: 6px;
        background: var(--gold);
        color: var(--pine-dark);
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s var(--ease);
        white-space: nowrap;
    }

    .footer-submit:hover {
        background: var(--gold-dark);
        box-shadow: 0 4px 16px rgba(198, 166, 100, 0.25);
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.35);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1023px) {
        .main-nav {
            display: none;
        }

        .menu-toggle {
            display: block;
        }

        .main-nav.open {
            display: flex;
            position: fixed;
            top: var(--header-h);
            left: 0;
            right: 0;
            background: var(--pine-dark);
            flex-direction: column;
            align-items: stretch;
            padding: 16px 24px 24px;
            gap: 0;
            max-height: calc(100vh - var(--header-h));
            overflow-y: auto;
            z-index: 999;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: var(--shadow-mega);
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .nav-link::after {
            display: none;
        }

        .mega-panel {
            position: static;
            width: 100%;
            transform: none;
            opacity: 1;
            visibility: visible;
            box-shadow: none;
            border: none;
            border-radius: 0;
            background: transparent;
            padding: 8px 0 16px 12px;
            grid-template-columns: 1fr;
            gap: 16px;
            display: none;
        }

        .nav-item.open .mega-panel {
            display: grid;
        }

        .mega-col-title {
            color: var(--gold);
            border-bottom-color: rgba(255, 255, 255, 0.08);
        }

        .mega-link {
            color: rgba(255, 255, 255, 0.6);
        }

        .mega-link:hover {
            color: var(--white);
        }

        .mega-card {
            background: rgba(255, 255, 255, 0.05);
        }

        .mega-card-info h4 {
            color: var(--white);
        }

        .mega-card-info span {
            color: rgba(255, 255, 255, 0.4);
        }

        .alternate-item {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .alternate-item.reverse .alternate-media {
            order: 1;
        }

        .alternate-item.reverse .alternate-content {
            order: 2;
        }

        .season-grid {
            grid-template-columns: 1fr;
        }

        .cta-inner {
            flex-direction: column;
            align-items: flex-start;
        }

        .cta-form {
            width: 100%;
        }

        .cta-input {
            flex: 1;
            width: auto;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
    }

    @media (max-width: 767px) {
        .container {
            padding: 0 16px;
        }

        .page-hero {
            min-height: 240px;
        }

        .page-hero h1 {
            font-size: 34px;
        }

        .page-hero p {
            font-size: 14px;
        }

        .section-block,
        .section-block-alt,
        .season-section,
        .faq-section {
            padding: 60px 0;
        }

        .section-head h2 {
            font-size: 26px;
        }

        .section-head .sub {
            font-size: 14px;
        }

        .alternate-item {
            gap: 18px;
            padding: 28px 0;
        }

        .alternate-content h3 {
            font-size: 22px;
        }

        .alternate-content p {
            font-size: 14px;
        }

        .cta-band {
            padding: 56px 0;
        }

        .cta-inner {
            gap: 24px;
        }

        .cta-copy h2 {
            font-size: 24px;
        }

        .cta-form {
            flex-direction: column;
        }

        .cta-input {
            width: 100%;
        }

        .cta-form .btn-primary {
            width: 100%;
        }

        .related-row {
            gap: 8px 20px;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            padding: 16px 0;
        }

        .logo {
            font-size: 20px;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
        }

        html {
            scroll-behavior: auto;
        }
    }

/* roulang page: category3 */
:root {
            --primary: #0E4D45;
            --primary-light: #1A6B5F;
            --secondary: #C6A664;
            --secondary-dark: #B8954E;
            --bg: #F7F3EB;
            --dark: #0A1F1C;
            --dark-light: #1E3834;
            --text: #1A2421;
            --text-secondary: #5C6B66;
            --text-muted: #929E99;
            --border: #E5DED2;
            --white: #FFFFFF;
            --error: #A6534A;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-card: 0 8px 30px rgba(10, 31, 28, 0.08);
            --shadow-panel: 0 16px 48px rgba(10, 31, 28, 0.16);
            --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            --font-serif: 'Noto Serif SC', 'Source Han Serif SC', Georgia, 'Times New Roman', 'Songti SC', serif;
            --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============ Header & Nav ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 31, 28, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: background 0.3s ease;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.04em;
            flex-shrink: 0;
            transition: opacity 0.3s;
        }

        .logo:hover {
            opacity: 0.86;
        }

        .logo-mark {
            width: 14px;
            height: 14px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><rect width="6.5" height="6.5" fill="%23C6A664"/><rect x="7.5" y="0.5" width="6" height="6" fill="%231A6B5F"/><rect x="0.5" y="7.5" width="6" height="6" fill="%231A6B5F"/><rect x="7.5" y="7.5" width="6" height="6" fill="%23C6A664"/></svg>') no-repeat center/contain;
            flex-shrink: 0;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            margin: 0 auto;
        }

        .nav-item {
            position: relative;
            height: 72px;
            display: flex;
            align-items: center;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 0 16px;
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.82);
            position: relative;
            height: 100%;
            letter-spacing: 0.02em;
            transition: color 0.3s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--secondary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .nav-link:hover,
        .nav-link.active {
            color: #fff;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

        .mega-panel {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            background: var(--white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-panel);
            padding: 24px;
            min-width: 680px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
            border: 1px solid var(--border);
        }

        .nav-item:hover .mega-panel,
        .nav-item:focus-within .mega-panel {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .mega-col-title {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .mega-links {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .mega-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 14px;
            color: var(--text);
            border-bottom: 1px solid var(--border);
            transition: color 0.3s, border-color 0.3s;
        }

        .mega-link .arrow {
            color: var(--secondary);
            opacity: 0;
            transform: translateX(-4px);
            transition: opacity 0.3s, transform 0.3s;
        }

        .mega-link:hover {
            color: var(--primary);
            border-color: var(--border-hover);
        }

        .mega-link:hover .arrow {
            opacity: 1;
            transform: translateX(0);
        }

        .mega-cards {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mega-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px;
            border-radius: var(--radius-sm);
            background: var(--bg);
            border: 1px solid var(--border);
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .mega-card img {
            width: 56px;
            height: 72px;
            object-fit: cover;
            border-radius: 4px;
        }

        .mega-card-info h4 {
            font-family: var(--font-serif);
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 2px;
        }

        .mega-card-info span {
            font-size: 12px;
            color: var(--text-muted);
        }

        .mega-card:hover {
            border-color: var(--secondary);
            box-shadow: var(--shadow-card);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            cursor: pointer;
        }

        .nav-toggle span {
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform 0.3s, opacity 0.3s;
        }

        /* ============ Buttons ============ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition), transform 0.2s, border-color 0.3s;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--dark);
        }

        .btn-primary:hover {
            background: var(--secondary-dark);
            box-shadow: 0 4px 16px rgba(198, 166, 100, 0.3);
            border-color: var(--secondary);
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
        }

        .btn-outline-dark {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline-dark:hover {
            background: rgba(14, 77, 69, 0.08);
        }

        .btn-sm {
            padding: 8px 20px;
            font-size: 14px;
            border-radius: 6px;
        }

        /* ============ Page Hero ============ */
        .page-hero {
            position: relative;
            padding: 180px 0 100px;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            margin-top: 0;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 31, 28, 0.92) 0%, rgba(10, 31, 28, 0.7) 50%, rgba(10, 31, 28, 0.3) 100%);
        }

        .page-hero .container {
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 24px;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--secondary);
        }

        .breadcrumb .sep {
            color: rgba(255, 255, 255, 0.4);
        }

        .page-hero h1 {
            font-family: var(--font-serif);
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            color: #fff;
            letter-spacing: 0.02em;
            max-width: 720px;
            margin-bottom: 20px;
        }

        .page-hero .hero-desc {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.78);
            max-width: 520px;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* ============ Section Common ============ */
        .section {
            padding: 100px 0;
        }

        .section-alt {
            background: var(--white);
        }

        .section-head {
            margin-bottom: 56px;
        }

        .section-eyebrow {
            font-family: var(--font-sans);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--secondary);
            margin-bottom: 10px;
            display: block;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: 36px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
            letter-spacing: 0.02em;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 600px;
            margin-top: 12px;
            line-height: 1.7;
        }

        /* ============ Content Staggered List ============ */
        .content-list {
            display: flex;
            flex-direction: column;
        }

        .content-item {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 56px;
            align-items: center;
            padding: 48px 0;
            border-bottom: 1px solid var(--border);
        }

        .content-item:first-child {
            padding-top: 0;
        }

        .content-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .content-item:nth-child(even) .content-media {
            order: 2;
        }

        .content-media {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            position: relative;
        }

        .content-media img {
            width: 100%;
            height: 360px;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .content-item:hover .content-media img {
            transform: scale(1.04);
        }

        .content-body h3 {
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 14px;
            line-height: 1.4;
        }

        .content-body p {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .content-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--primary);
            background: rgba(14, 77, 69, 0.08);
            padding: 4px 12px;
            border-radius: 999px;
            margin-bottom: 16px;
        }

        /* ============ Topic Cards ============ */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .topic-card {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border);
            background: var(--white);
            transition: box-shadow 0.3s var(--transition), border-color 0.3s;
            min-height: 220px;
            display: flex;
            flex-direction: column;
        }

        .topic-card:hover {
            box-shadow: var(--shadow-card);
            border-color: var(--secondary);
        }

        .topic-card .topic-bg {
            height: 140px;
            overflow: hidden;
            position: relative;
        }

        .topic-card .topic-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .topic-card:hover .topic-bg img {
            transform: scale(1.05);
        }

        .topic-card .topic-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(10, 31, 28, 0.6));
        }

        .topic-card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .topic-card-body h3 {
            font-family: var(--font-serif);
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4;
        }

        .topic-card-body p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            flex: 1;
        }

        .topic-card .topic-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .topic-card .topic-meta .dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--secondary);
        }

        /* ============ Scene Section ============ */
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .scene-card {
            position: relative;
            padding: 40px 28px;
            background: var(--bg);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
            overflow: hidden;
        }

        .scene-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: var(--secondary);
            transition: height 0.3s var(--transition);
        }

        .scene-card:hover {
            border-color: var(--secondary);
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }

        .scene-card:hover::before {
            height: 100%;
        }

        .scene-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(14, 77, 69, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .scene-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--primary);
        }

        .scene-card h3 {
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 10px;
        }

        .scene-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ============ Steps ============ */
        .steps-section {
            background: var(--dark);
            padding: 100px 0;
        }

        .steps-section .section-title {
            color: #fff;
        }

        .steps-section .section-desc {
            color: rgba(255, 255, 255, 0.6);
        }

        .steps-section .section-eyebrow {
            color: var(--secondary);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            counter-reset: step;
        }

        .step-item {
            position: relative;
            padding: 40px 0 0;
            counter-increment: step;
        }

        .step-number {
            position: relative;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 2px solid rgba(198, 166, 100, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', var(--font-serif);
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 24px;
            transition: background 0.3s, box-shadow 0.3s;
        }

        .step-item:hover .step-number {
            background: rgba(198, 166, 100, 0.1);
            box-shadow: 0 0 0 8px rgba(198, 166, 100, 0.06);
        }

        .step-item h3 {
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

        .step-item p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }

        /* ============ Stats ============ */
        .stats-bar {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .stat-item {
            padding: 48px 24px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            transition: box-shadow 0.3s, border-color 0.3s;
        }

        .stat-item:hover {
            border-color: var(--secondary);
            box-shadow: var(--shadow-card);
        }

        .stat-number {
            font-family: 'Playfair Display', var(--font-serif);
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            letter-spacing: 0.04em;
        }

        /* ============ FAQ ============ */
        .faq-wrap {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
            transition: border-color 0.3s;
        }

        .faq-item:first-child {
            border-top: 1px solid var(--border);
        }

        .faq-item.open {
            border-color: var(--secondary);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            cursor: pointer;
            gap: 16px;
        }

        .faq-question h3 {
            font-family: var(--font-serif);
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            transition: color 0.3s;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            flex-shrink: 0;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--primary);
            border-radius: 2px;
            transition: transform 0.3s var(--transition), background 0.3s;
        }

        .faq-icon::before {
            width: 14px;
            height: 2px;
            top: 11px;
            left: 5px;
        }

        .faq-icon::after {
            width: 2px;
            height: 14px;
            top: 5px;
            left: 11px;
        }

        .faq-item.open .faq-icon::after {
            transform: scaleY(0);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.25s ease;
        }

        .faq-answer p {
            padding: 0 0 24px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 720px;
        }

        /* ============ CTA ============ */
        .cta-section {
            position: relative;
            background: url('/assets/images/backpic/back-2.png') center/cover no-repeat;
            padding: 130px 0;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(10, 31, 28, 0.95) 40%, rgba(10, 31, 28, 0.7));
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .cta-left h2 {
            font-family: var(--font-serif);
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .cta-left p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .cta-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-right {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-md);
            padding: 40px;
            backdrop-filter: blur(8px);
        }

        .cta-form-title {
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }

        .cta-form-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 24px;
        }

        .form-row {
            display: flex;
            gap: 12px;
        }

        .form-input {
            flex: 1;
            height: 50px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            padding: 0 16px;
            font-size: 15px;
            color: #fff;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-input:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.15);
        }

        .form-hint {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 12px;
        }

        /* ============ Footer ============ */
        .site-footer {
            background: var(--dark);
            padding: 80px 0 0;
            color: rgba(255, 255, 255, 0.65);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 48px;
            padding-bottom: 56px;
            border-bottom: 1px solid var(--dark-light);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.04em;
            margin-bottom: 16px;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.5);
            max-width: 300px;
        }

        .footer-col-title {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-link {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s, padding-left 0.3s;
        }

        .footer-link:hover {
            color: #fff;
            padding-left: 6px;
        }

        .footer-newsletter {
            display: flex;
            gap: 8px;
            margin-top: 4px;
        }

        .footer-input {
            flex: 1;
            height: 44px;
            border-radius: 6px;
            border: 1px solid var(--dark-light);
            background: rgba(255, 255, 255, 0.06);
            padding: 0 14px;
            font-size: 14px;
            color: #fff;
        }

        .footer-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-input:focus {
            border-color: var(--secondary);
        }

        .footer-submit {
            height: 44px;
            padding: 0 20px;
            border-radius: 6px;
            background: var(--secondary);
            color: var(--dark);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .footer-submit:hover {
            background: var(--secondary-dark);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            flex-wrap: wrap;
            gap: 8px;
        }

        /* ============ Responsive ============ */
        @media (max-width: 1024px) {
            .main-nav {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .header-inner {
                height: 64px;
            }

            .topic-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .content-item {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .content-item:nth-child(even) .content-media {
                order: 0;
            }

            .content-media img {
                height: 320px;
            }

            .scene-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }

            .steps-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
                gap: 32px;
            }

            .cta-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .mega-panel {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .container {
                padding: 0 16px;
            }

            .section {
                padding: 64px 0;
            }

            .page-hero {
                padding: 140px 0 72px;
            }

            .page-hero h1 {
                font-size: 32px;
            }

            .page-hero .hero-desc {
                font-size: 15px;
            }

            .hero-cta .btn {
                width: 100%;
            }

            .section-title {
                font-size: 26px;
            }

            .content-item {
                padding: 32px 0;
                gap: 20px;
            }

            .content-media img {
                height: 240px;
            }

            .content-body h3 {
                font-size: 22px;
            }

            .topic-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .topic-card .topic-bg {
                height: 180px;
            }

            .stats-bar {
                grid-template-columns: 1fr;
                max-width: 360px;
                margin: 0 auto;
            }

            .stat-item {
                padding: 32px 20px;
            }

            .stat-number {
                font-size: 36px;
            }

            .faq-question h3 {
                font-size: 16px;
            }

            .cta-section {
                padding: 80px 0;
            }

            .cta-left h2 {
                font-size: 26px;
            }

            .cta-actions .btn {
                width: 100%;
            }

            .cta-right {
                padding: 24px;
            }

            .form-row {
                flex-direction: column;
            }

            .form-row .btn {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .steps-section {
                padding: 64px 0;
            }

            .btn {
                padding: 12px 24px;
            }
        }

        @media (max-width: 520px) {
            .page-hero h1 {
                font-size: 28px;
            }

            .hero-desc {
                font-size: 14px;
            }

            .btn {
                padding: 12px 20px;
                font-size: 14px;
            }

            .footer-newsletter {
                flex-direction: column;
            }

            .footer-submit {
                width: 100%;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

/* roulang page: category4 */
:root {
            --pine: #0E4D45;
            --pine-dark: #0A1F1C;
            --pine-light: #1A6B5F;
            --gold: #C6A664;
            --gold-hover: #B8954E;
            --gold-light: rgba(198, 166, 100, 0.15);
            --ivory: #F7F3EB;
            --white: #FFFFFF;
            --ink: #1A2421;
            --ink-sub: #5C6B66;
            --ink-mute: #929E99;
            --line: #E5DED2;
            --line-hover: #C6A664;
            --brick: #A6534A;
            --radius-sm: 6px;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-lg: 16px;
            --shadow-card: 0 1px 2px rgba(10, 31, 28, 0.04);
            --shadow-hover: 0 8px 30px rgba(10, 31, 28, 0.08);
            --shadow-panel: 0 16px 48px rgba(10, 31, 28, 0.16);
            --ease: cubic-bezier(0.22, 1, 0.36, 1);
            --container: 1200px;
            --gutter: 24px;
            --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", Georgia, "Times New Roman", serif;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            color: var(--ink);
            background: var(--ivory);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: var(--pine);
            text-decoration: none;
            transition: color 0.25s var(--ease);
        }
        a:hover {
            color: var(--gold-hover);
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            background: none;
            outline: none;
        }
        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding-left: var(--gutter);
            padding-right: var(--gutter);
        }
        @media (max-width: 767px) {
            :root {
                --gutter: 16px;
            }
        }

        /* ===== Header & Nav ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 31, 28, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
        }
        .site-header.scrolled {
            background: rgba(10, 31, 28, 0.98);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            position: relative;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-serif);
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 0.04em;
            color: #fff;
            white-space: nowrap;
            flex-shrink: 0;
            transition: opacity 0.25s var(--ease);
        }
        .logo:hover {
            color: #fff;
            opacity: 0.88;
        }
        .logo-mark {
            width: 28px;
            height: 28px;
            border-radius: 4px;
            background: linear-gradient(135deg, var(--pine-light), var(--pine));
            position: relative;
            flex-shrink: 0;
        }
        .logo-mark::after {
            content: "";
            position: absolute;
            inset: 3px;
            border-radius: 2px;
            border: 1.5px solid var(--gold);
            opacity: 0.7;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-left: 20px;
        }
        .nav-item {
            position: relative;
        }
        .nav-link {
            display: block;
            padding: 10px 18px;
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.82);
            letter-spacing: 0.02em;
            position: relative;
            transition: color 0.25s var(--ease);
            white-space: nowrap;
        }
        .nav-link::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 4px;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s var(--ease);
        }
        .nav-link:hover,
        .nav-link:focus-visible {
            color: #fff;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }
        .nav-link.active {
            color: #fff;
            font-weight: 600;
        }
        .nav-item:hover .mega-panel {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .mega-panel {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            width: 680px;
            background: var(--white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-panel);
            padding: 28px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.15s var(--ease), transform 0.15s var(--ease), visibility 0.15s;
            border: 1px solid var(--line);
        }
        .mega-panel::before {
            content: "";
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 8px;
            background: var(--white);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        }
        .mega-col-title {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 16px;
            font-family: var(--font-serif);
        }
        .mega-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .mega-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: var(--ink);
            padding: 6px 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
        }
        .mega-link:hover {
            color: var(--pine);
            border-bottom-color: var(--line);
        }
        .mega-link .arrow {
            color: var(--gold);
            font-size: 16px;
            transition: transform 0.25s var(--ease);
        }
        .mega-link:hover .arrow {
            transform: translateX(4px);
        }
        .mega-cards {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .mega-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px;
            border-radius: 10px;
            border: 1px solid transparent;
            transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
        }
        .mega-card:hover {
            border-color: var(--line);
            background: var(--ivory);
        }
        .mega-card img {
            width: 56px;
            height: 68px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
        }
        .mega-card-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--ink);
            line-height: 1.3;
            margin-bottom: 4px;
        }
        .mega-card-info span {
            font-size: 12px;
            color: var(--ink-mute);
            letter-spacing: 0.04em;
        }
        .nav-cta {
            margin-left: 12px;
            background: var(--gold);
            color: var(--pine-dark);
            font-size: 14px;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: var(--radius-btn);
            transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.2s var(--ease);
            white-space: nowrap;
        }
        .nav-cta:hover {
            background: var(--gold-hover);
            color: var(--pine-dark);
            box-shadow: 0 4px 16px rgba(198, 166, 100, 0.3);
            transform: translateY(-1px);
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 10px;
            cursor: pointer;
        }
        .nav-toggle span {
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
        }
        .nav-toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .nav-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ===== Page Hero ===== */
        .page-hero {
            position: relative;
            height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            margin-top: 72px;
        }
        .page-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(10, 31, 28, 0.92) 10%, rgba(10, 31, 28, 0.65) 55%, rgba(10, 31, 28, 0.4) 100%);
        }
        .page-hero-content {
            position: relative;
            z-index: 1;
            max-width: 760px;
            padding: 0 var(--gutter);
            color: #fff;
        }
        .page-hero-eyebrow {
            font-size: 13px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
            font-weight: 600;
        }
        .page-hero h1 {
            font-family: var(--font-serif);
            font-size: 52px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: 0.04em;
            margin-bottom: 16px;
            color: #fff;
        }
        .page-hero p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.82);
            max-width: 520px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }
        .page-hero-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            padding: 13px 30px;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.2s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
            text-align: center;
        }
        .btn-primary {
            background: var(--gold);
            color: var(--pine-dark);
        }
        .btn-primary:hover {
            background: var(--gold-hover);
            color: var(--pine-dark);
            box-shadow: 0 6px 20px rgba(198, 166, 100, 0.35);
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-1px);
        }
        .btn:active {
            transform: scale(0.98);
        }

        /* ===== Section Common ===== */
        .section {
            padding: 100px 0;
        }
        .section-alt {
            background: var(--white);
        }
        .section-head {
            text-align: center;
            margin-bottom: 56px;
        }
        .section-head .section-eyebrow {
            font-size: 13px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }
        .section-head h2 {
            font-family: var(--font-serif);
            font-size: 32px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.3;
            letter-spacing: 0.02em;
        }
        .section-head p {
            font-size: 15px;
            color: var(--ink-sub);
            max-width: 560px;
            margin: 12px auto 0;
        }

        /* ===== Intro Section ===== */
        .curation-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .curation-intro-text .intro-label {
            display: inline-block;
            font-size: 13px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 14px;
        }
        .curation-intro-text h2 {
            font-family: var(--font-serif);
            font-size: 30px;
            line-height: 1.3;
            color: var(--ink);
            margin-bottom: 20px;
            letter-spacing: 0.02em;
        }
        .curation-intro-text p {
            font-size: 15px;
            line-height: 1.85;
            color: var(--ink-sub);
            margin-bottom: 16px;
        }
        .curation-intro-text .highlight {
            color: var(--pine);
            font-weight: 600;
        }
        .curation-intro-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .stat-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 28px 22px;
            text-align: center;
            transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
        }
        .stat-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .stat-num {
            font-family: var(--font-serif);
            font-size: 40px;
            font-weight: 700;
            color: var(--pine);
            line-height: 1;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 14px;
            color: var(--ink-sub);
            letter-spacing: 0.04em;
        }

        /* ===== Curation List (交错) ===== */
        .curation-list {
            display: flex;
            flex-direction: column;
        }
        .curation-row {
            display: grid;
            grid-template-columns: 480px 1fr;
            gap: 56px;
            align-items: center;
            padding: 48px 0;
            border-bottom: 1px solid var(--line);
            transition: border-color 0.3s var(--ease);
        }
        .curation-row:first-child {
            padding-top: 0;
        }
        .curation-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .curation-row:hover {
            border-bottom-color: var(--gold);
        }
        .curation-row.reversed {
            grid-template-columns: 1fr 480px;
        }
        .curation-row.reversed .curation-image {
            order: 2;
        }
        .curation-row.reversed .curation-body {
            order: 1;
        }
        .curation-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .curation-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s var(--ease);
        }
        .curation-row:hover .curation-image img {
            transform: scale(1.04);
        }
        .curation-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 31, 28, 0.25), transparent 60%);
            border-radius: var(--radius-lg);
            pointer-events: none;
        }
        .curation-num {
            font-family: var(--font-serif);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 8px;
            display: block;
        }
        .curation-body h3 {
            font-family: var(--font-serif);
            font-size: 24px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.3;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
            transition: color 0.3s var(--ease);
        }
        .curation-row:hover .curation-body h3 {
            color: var(--pine);
        }
        .curation-body p {
            font-size: 15px;
            color: var(--ink-sub);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .curation-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }
        .tag {
            display: inline-block;
            padding: 4px 14px;
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--ink-sub);
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid var(--line);
            border-radius: 999px;
            transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
        }
        .tag:hover {
            border-color: var(--gold);
            color: var(--gold-hover);
            background: var(--gold-light);
        }
        .curation-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--pine);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.25s var(--ease), color 0.25s var(--ease);
        }
        .curation-link:hover {
            color: var(--gold-hover);
            gap: 10px;
        }
        .curation-link .arrow {
            font-size: 18px;
            line-height: 1;
        }

        /* ===== Process Section ===== */
        .process-section {
            background: var(--pine-dark);
            position: relative;
            overflow: hidden;
        }
        .process-section::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(198, 166, 100, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .process-section .section-head h2 {
            color: #fff;
        }
        .process-section .section-head p {
            color: rgba(255, 255, 255, 0.65);
        }
        .process-section .section-head .section-eyebrow {
            color: var(--gold);
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 48px;
        }
        .process-step {
            position: relative;
            padding: 32px 24px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-card);
            transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
        }
        .process-step:hover {
            border-color: rgba(198, 166, 100, 0.4);
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-4px);
        }
        .process-step-num {
            font-family: var(--font-serif);
            font-size: 44px;
            font-weight: 700;
            color: rgba(198, 166, 100, 0.3);
            line-height: 1;
            display: block;
            margin-bottom: 18px;
            transition: color 0.3s var(--ease);
        }
        .process-step:hover .process-step-num {
            color: var(--gold);
        }
        .process-step h3 {
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.02em;
        }
        .process-step p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.7;
        }

        /* ===== Topic Grid ===== */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .topic-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
            position: relative;
            overflow: hidden;
        }
        .topic-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--pine-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s var(--ease);
        }
        .topic-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .topic-card:hover::before {
            transform: scaleX(1);
        }
        .topic-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--gold-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 18px;
            color: var(--gold);
            transition: background 0.3s var(--ease), color 0.3s var(--ease);
        }
        .topic-card:hover .topic-icon {
            background: var(--gold);
            color: var(--pine-dark);
        }
        .topic-card h3 {
            font-family: var(--font-serif);
            font-size: 19px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }
        .topic-card p {
            font-size: 14px;
            color: var(--ink-sub);
            line-height: 1.7;
        }

        /* ===== Hot Links ===== */
        .hot-links {
            background: var(--white);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            padding: 48px 0;
        }
        .hot-links-inner {
            display: flex;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }
        .hot-links-title {
            font-family: var(--font-serif);
            font-size: 18px;
            font-weight: 700;
            color: var(--pine);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .hot-links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 32px;
            flex: 1;
        }
        .hot-link {
            font-size: 14px;
            color: var(--ink-sub);
            transition: color 0.25s var(--ease);
            position: relative;
            padding-bottom: 2px;
        }
        .hot-link::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s var(--ease);
        }
        .hot-link:hover {
            color: var(--pine);
        }
        .hot-link:hover::after {
            transform: scaleX(1);
        }

        /* ===== FAQ ===== */
        .faq-section {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--line);
            position: relative;
            transition: border-color 0.3s var(--ease);
        }
        .faq-item:first-child {
            border-top: 1px solid var(--line);
        }
        .faq-item.open {
            border-bottom-color: var(--gold);
        }
        .faq-item.open::before {
            content: "";
            position: absolute;
            left: -24px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gold);
        }
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 0;
            cursor: pointer;
            text-align: left;
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
            background: none;
            transition: color 0.25s var(--ease);
        }
        .faq-question:hover {
            color: var(--pine);
        }
        .faq-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            position: relative;
            color: var(--gold);
            font-size: 20px;
            font-weight: 300;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s var(--ease);
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.25s ease;
            font-size: 14px;
            line-height: 1.7;
            color: var(--ink-sub);
        }
        .faq-answer-inner {
            padding-bottom: 22px;
            padding-right: 32px;
        }

        /* ===== CTA ===== */
        .cta-section {
            position: relative;
            padding: 90px 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
        }
        .cta-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 31, 28, 0.95), rgba(14, 77, 69, 0.85));
        }
        .cta-content {
            position: relative;
            z-index: 1;
            color: #fff;
            max-width: 640px;
            margin: 0 auto;
        }
        .cta-content h2 {
            font-family: var(--font-serif);
            font-size: 34px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
            color: #fff;
        }
        .cta-content p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 30px;
            line-height: 1.75;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--pine-dark);
            padding: 72px 0 0;
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
            gap: 40px;
            padding-bottom: 48px;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.04em;
            margin-bottom: 14px;
        }
        .footer-logo .logo-mark {
            width: 24px;
            height: 24px;
            border-radius: 4px;
            background: linear-gradient(135deg, var(--pine-light), var(--pine));
            position: relative;
            flex-shrink: 0;
        }
        .footer-logo .logo-mark::after {
            content: "";
            position: absolute;
            inset: 2px;
            border-radius: 2px;
            border: 1.5px solid var(--gold);
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.55);
            max-width: 300px;
        }
        .footer-col-title {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-link {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            transition: color 0.25s var(--ease), padding-left 0.25s var(--ease), border-color 0.25s var(--ease);
            border-left: 2px solid transparent;
            padding-left: 0;
        }
        .footer-link:hover {
            color: #fff;
            padding-left: 10px;
            border-left-color: var(--gold);
        }
        .footer-newsletter {
            display: flex;
            gap: 8px;
            margin-top: 4px;
        }
        .footer-input {
            flex: 1;
            height: 42px;
            padding: 0 14px;
            font-size: 14px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: var(--radius-btn);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
        }
        .footer-input::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }
        .footer-input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.15);
            outline: none;
        }
        .footer-submit {
            height: 42px;
            padding: 0 18px;
            background: var(--gold);
            color: var(--pine-dark);
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: background 0.25s var(--ease), transform 0.2s var(--ease);
            white-space: nowrap;
        }
        .footer-submit:hover {
            background: var(--gold-hover);
            transform: translateY(-1px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            flex-wrap: wrap;
            gap: 8px;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1023px) {
            .section {
                padding: 76px 0;
            }
            .curation-row,
            .curation-row.reversed {
                grid-template-columns: 380px 1fr;
                gap: 36px;
            }
            .curation-image img {
                height: 260px;
            }
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .topic-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }
            .nav-toggle {
                display: flex;
            }
            .main-nav {
                display: none;
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--pine-dark);
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 16px 24px 40px;
                overflow-y: auto;
                margin-left: 0;
                z-index: 999;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
            }
            .main-nav.open {
                display: flex;
            }
            .nav-item,
            .nav-link {
                width: 100%;
            }
            .nav-link {
                padding: 16px 0;
                font-size: 17px;
                color: #fff;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }
            .nav-link::after {
                display: none;
            }
            .nav-link.active {
                color: var(--gold);
            }
            .mega-panel {
                display: none;
                position: static;
                width: 100%;
                transform: none;
                opacity: 1;
                visibility: visible;
                background: rgba(255, 255, 255, 0.04);
                border: none;
                border-radius: 0;
                box-shadow: none;
                padding: 16px 0 8px;
                grid-template-columns: 1fr;
                gap: 16px;
                margin-bottom: 8px;
            }
            .nav-item:hover .mega-panel {
                opacity: 1;
                transform: none;
            }
            .mega-panel::before {
                display: none;
            }
            .mega-col-title {
                color: var(--gold);
                font-size: 13px;
            }
            .mega-link {
                color: rgba(255, 255, 255, 0.75);
                border-bottom-color: rgba(255, 255, 255, 0.08);
            }
            .mega-card {
                border-color: rgba(255, 255, 255, 0.08);
            }
            .mega-card:hover {
                background: rgba(255, 255, 255, 0.06);
                border-color: rgba(198, 166, 100, 0.3);
            }
            .mega-card-info h4 {
                color: #fff;
            }
            .mega-card-info span {
                color: rgba(255, 255, 255, 0.5);
            }
            .nav-cta {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .section {
                padding: 60px 0;
            }
            .page-hero {
                height: 280px;
                margin-top: 64px;
                background-attachment: scroll;
            }
            .page-hero h1 {
                font-size: 34px;
            }
            .page-hero p {
                font-size: 14px;
                line-height: 1.65;
            }
            .page-hero-actions .btn {
                width: 100%;
                max-width: 260px;
            }
            .curation-intro {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .curation-intro-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-card {
                padding: 20px 14px;
            }
            .stat-num {
                font-size: 30px;
            }
            .section-head {
                margin-bottom: 36px;
            }
            .section-head h2 {
                font-size: 24px;
            }
            .curation-row,
            .curation-row.reversed {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 32px 0;
            }
            .curation-image,
            .curation-row.reversed .curation-image {
                order: 0 !important;
            }
            .curation-image img {
                height: 200px;
            }
            .curation-body {
                order: 1 !important;
            }
            .curation-body h3 {
                font-size: 20px;
            }
            .process-grid {
                grid-template-columns: 1fr;
                gap: 14px;
                margin-top: 28px;
            }
            .process-step {
                padding: 22px 20px;
            }
            .topic-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .hot-links-inner {
                flex-direction: column;
                gap: 16px;
                align-items: flex-start;
            }
            .hot-links-list {
                gap: 8px 24px;
            }
            .faq-section {
                padding: 0 8px;
            }
            .faq-item.open::before {
                left: -8px;
            }
            .cta-section {
                padding: 60px 0;
                background-attachment: scroll;
            }
            .cta-content h2 {
                font-size: 26px;
            }
            .cta-buttons .btn {
                width: 100%;
                max-width: 280px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
