/* roulang page: index */
:root {
            --brand: #6E1F2B;
            --brand-dark: #591824;
            --deep: #1B3A34;
            --deep-dark: #112B27;
            --gold: #C6A15B;
            --gold-light: #D9BC8A;
            --bg-page: #F7F3EC;
            --text-main: #26221E;
            --text-muted: #7A6F64;
            --border-soft: rgba(38, 34, 30, 0.10);
            --gold-bg: #EFE6D8;
            --radius-card: 16px;
            --radius-btn: 8px;
            --shadow-hover: 0 8px 24px rgba(27, 58, 52, 0.08);
            --transition: 0.3s ease;
        }
        * {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
            background: var(--bg-page);
            color: var(--text-main);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            margin: 0;
            padding: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--brand);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: var(--brand-dark);
        }
        a:visited {
            color: var(--brand);
        }
        button {
            cursor: pointer;
            font-family: inherit;
        }
        input:focus,
        button:focus,
        a:focus {
            outline: 2px solid rgba(198, 161, 91, 0.5);
            outline-offset: 2px;
        }
        .serif-title {
            font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
        }
        .container-site {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        ::selection {
            background: rgba(198, 161, 91, 0.3);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--brand);
            color: #fff;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-weight: 500;
            font-size: 14px;
            border: 1px solid transparent;
            transition: all 0.25s ease;
            min-height: 44px;
        }
        .btn-primary:hover {
            background: var(--brand-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(110, 31, 43, 0.25);
        }
        .btn-primary:active {
            transform: scale(0.98);
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--text-main);
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: 1px solid rgba(38, 34, 30, 0.25);
            font-weight: 500;
            font-size: 14px;
            transition: all 0.25s ease;
            min-height: 44px;
        }
        .btn-ghost:hover {
            border-color: var(--brand);
            color: var(--brand);
        }
        .btn-ghost:active {
            transform: scale(0.98);
        }
        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--gold);
            color: var(--deep);
            padding: 12px 30px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 15px;
            border: 1px solid transparent;
            transition: all 0.25s ease;
            min-height: 44px;
        }
        .btn-gold:hover {
            background: var(--gold-light);
            color: var(--deep-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(198, 161, 91, 0.3);
        }
        .btn-gold:active {
            transform: scale(0.98);
        }
        .btn-ghost-white {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            padding: 12px 30px;
            border-radius: var(--radius-btn);
            border: 1px solid rgba(255, 255, 255, 0.7);
            font-weight: 500;
            font-size: 15px;
            transition: all 0.25s ease;
            min-height: 44px;
        }
        .btn-ghost-white:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
        }
        .btn-ghost-white:active {
            transform: scale(0.98);
        }
        .card-hover {
            transition: all 0.3s ease;
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-card);
            background: #FFFDF9;
        }
        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(198, 161, 91, 0.45);
        }
        .card-hover .card-img {
            transition: transform 0.4s ease;
        }
        .card-hover:hover .card-img {
            transform: scale(1.02);
        }
        .nav-link {
            position: relative;
            font-size: 15px;
            color: var(--text-main);
            font-weight: 500;
            padding: 6px 2px;
            transition: color 0.2s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.25s ease;
            transform: translateX(-50%);
        }
        .nav-link:hover {
            color: var(--brand);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .nav-link.active {
            color: var(--brand);
        }
        .nav-link.active::after {
            width: 100%;
        }
        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .line-clamp-1 {
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .tabular-nums {
            font-variant-numeric: tabular-nums;
        }
        .search-form {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid var(--border-soft);
            border-radius: 6px;
            padding: 0 10px;
            transition: all 0.3s ease;
            width: 160px;
        }
        .search-form:focus-within {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.15);
            width: 200px;
        }
        .search-form input {
            border: none;
            background: transparent;
            padding: 8px 6px;
            font-size: 13px;
            color: var(--text-main);
            width: 100%;
            outline: none;
        }
        .search-form input::placeholder {
            color: #a3978b;
        }
        .search-form button {
            background: transparent;
            border: none;
            color: var(--text-muted);
            font-size: 13px;
            padding: 4px;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            background: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .hero {
            position: relative;
            min-height: 82vh;
            display: flex;
            align-items: center;
            background-image: linear-gradient(105deg, rgba(27, 58, 52, 0.88), rgba(27, 58, 52, 0.42)), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            padding-top: 120px;
            padding-bottom: 120px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(198, 161, 91, 0.7);
            border-radius: 4px;
            padding: 4px 12px;
            font-size: 12px;
            color: #fff;
            background: rgba(27, 58, 52, 0.35);
            letter-spacing: 0.04em;
        }
        .fade-up {
            animation: fadeUp 0.6s ease both;
        }
        .fade-up-delay-1 {
            animation: fadeUp 0.6s ease 0.15s both;
        }
        .fade-up-delay-2 {
            animation: fadeUp 0.6s ease 0.3s both;
        }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .review-carousel {
            position: relative;
        }
        .review-slide {
            display: none;
        }
        .review-slide.active {
            display: block;
            animation: fadeSlide 0.4s ease;
        }
        @keyframes fadeSlide {
            from {
                opacity: 0;
                transform: translateX(12px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .review-arrow {
            width: 40px;
            height: 40px;
            border: 1px solid var(--border-soft);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            color: var(--text-muted);
            transition: all 0.25s;
            flex-shrink: 0;
        }
        .review-arrow:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .review-dot {
            width: 8px;
            height: 8px;
            border-radius: 9999px;
            background: rgba(198, 161, 91, 0.3);
            transition: all 0.25s;
            border: none;
            padding: 0;
        }
        .review-dot.active {
            background: var(--gold);
            width: 22px;
        }
        .info-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 22px 16px;
            border-bottom: 1px solid var(--border-soft);
            transition: background 0.2s;
        }
        .info-row:first-child {
            border-top: 1px solid var(--border-soft);
        }
        .info-row:hover {
            background: rgba(239, 230, 216, 0.5);
        }
        .info-row h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-main);
            transition: color 0.2s;
            margin: 0 0 4px;
        }
        .info-row:hover h3 {
            color: var(--brand);
        }
        .info-row .info-summary {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
        }
        .badge-gold {
            display: inline-block;
            border: 1px solid rgba(198, 161, 91, 0.6);
            border-radius: 4px;
            padding: 2px 10px;
            font-size: 12px;
            color: var(--brand);
            background: rgba(198, 161, 91, 0.08);
            white-space: nowrap;
        }
        .guarantee-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gold-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 18px;
            flex-shrink: 0;
        }
        .section-title {
            font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.3;
        }
        .section-subtitle {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
        }
        .site-footer {
            background: var(--deep);
            color: #C9C3BC;
        }
        .site-footer a {
            color: #C9C3BC;
            transition: color 0.2s;
            font-size: 13px;
        }
        .site-footer a:hover {
            color: var(--gold);
        }
        .footer-link-title {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.03em;
            margin-bottom: 14px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 12px;
            color: rgba(201, 195, 188, 0.65);
        }
        .cta-banner {
            background: var(--deep);
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 20% 50%, rgba(198, 161, 91, 0.10) 0%, transparent 55%);
            pointer-events: none;
        }
        .event-list-item {
            border-left: 2px solid var(--gold);
            padding-left: 20px;
            position: relative;
        }
        @media (max-width: 1023px) {
            .container-site {
                padding-left: 20px;
                padding-right: 20px;
            }
        }
        @media (max-width: 767px) {
            .container-site {
                padding-left: 16px;
                padding-right: 16px;
            }
            .hero {
                min-height: 90vh;
                padding-top: 100px;
                padding-bottom: 80px;
            }
            .info-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .info-row .info-meta {
                width: 100%;
                justify-content: flex-start;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

/* roulang page: article */
:root {
  --bg: #F7F3EC;
  --primary: #6E1F2B;
  --primary-dark: #5A1923;
  --deep: #1B3A34;
  --gold: #C6A15B;
  --gold-light: #EFE6D8;
  --text: #26221E;
  --text-sub: #7A6F64;
  --border: rgba(38,34,30,0.10);
  --radius: 16px;
  --shadow: 0 8px 24px rgba(27,58,52,0.08);
  --font-title: "Noto Serif SC","Songti SC","SimSun",serif;
  --font-body: "Noto Sans SC","PingFang SC","Microsoft YaHei",sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--font-body);background:var(--bg);color:var(--text);line-height:1.75;-webkit-font-smoothing:antialiased;font-size:15px;}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;transition:color .25s ease,background .25s ease,border-color .25s ease,opacity .25s ease;}
button,input{font-family:inherit;}
input:focus{outline:none;}
.container-site{max-width:1200px;margin:0 auto;padding-left:24px;padding-right:24px;}
@media(max-width:767px){.container-site{padding-left:16px;padding-right:16px;}}
.site-header{position:sticky;top:0;z-index:100;background:rgba(247,243,236,0.92);backdrop-filter:blur(12px);border-bottom:1px solid var(--border);}
.header-inner{height:72px;display:flex;align-items:center;justify-content:space-between;gap:20px;}
@media(max-width:767px){.header-inner{height:60px;}}
.logo-icon{width:38px;height:38px;border-radius:10px;display:inline-flex;align-items:center;justify-content:center;background:var(--deep);flex-shrink:0;transition:transform .25s ease;}
.logo-icon:hover{transform:scale(1.04);}
.logo-main{font-size:18px;font-weight:700;font-family:var(--font-title);line-height:1.2;color:var(--text);}
.logo-sub{font-size:11px;color:var(--text-sub);letter-spacing:.04em;}
.nav-link{font-size:14px;font-weight:500;color:var(--text);padding:6px 2px;position:relative;transition:color .25s ease;white-space:nowrap;}
.nav-link::after{content:'';position:absolute;left:50%;bottom:0;width:0;height:2px;background:var(--gold);transform:translateX(-50%);transition:width .25s ease;}
.nav-link:hover::after,.nav-link.active::after{width:100%;}
.nav-link:hover,.nav-link.active{color:var(--primary);}
.btn-primary{display:inline-flex;align-items:center;justify-content:center;background:var(--primary);color:#fff !important;font-size:14px;font-weight:500;letter-spacing:.02em;padding:10px 22px;border-radius:8px;border:1px solid transparent;transition:all .25s ease;cursor:pointer;min-height:44px;}
.btn-primary:hover{background:var(--primary-dark);}
.btn-primary:active{transform:scale(.98);}
.btn-ghost{display:inline-flex;align-items:center;justify-content:center;background:transparent;color:var(--primary) !important;font-size:14px;font-weight:500;padding:10px 18px;border-radius:8px;border:1px solid rgba(110,31,43,0.28);transition:all .25s ease;cursor:pointer;min-height:44px;}
.btn-ghost:hover{border-color:var(--primary);background:rgba(110,31,43,0.04);}
.btn-ghost:active{transform:scale(.98);}
.btn-gold{display:inline-flex;align-items:center;justify-content:center;background:var(--gold);color:var(--deep) !important;font-size:15px;font-weight:600;padding:13px 30px;border-radius:8px;border:1px solid transparent;transition:all .25s ease;cursor:pointer;min-height:46px;}
.btn-gold:hover{background:#d4ad6c;}
.btn-gold:active{transform:scale(.98);}
.search-box{display:flex;align-items:center;gap:8px;background:rgba(255,255,255,0.55);border:1px solid var(--border);border-radius:8px;padding:8px 12px;width:160px;transition:all .25s ease;}
.search-box:focus-within{border-color:var(--gold);width:200px;box-shadow:0 0 0 3px rgba(198,161,91,0.15);}
.search-box input{border:none;outline:none;background:transparent;font-size:13px;width:100%;color:var(--text);}
.search-box input::placeholder{color:var(--text-sub);font-size:13px;}
.hamburger{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border:none;background:transparent;border-radius:8px;cursor:pointer;color:var(--text);}
.hamburger:hover{background:rgba(110,31,43,0.06);}
.mobile-menu{display:none;background:var(--bg);border-top:1px solid var(--border);padding:8px 0 20px;}
.mobile-menu.open{display:block;}
.breadcrumb{font-size:13px;color:var(--text-sub);padding:22px 0 0;display:flex;flex-wrap:wrap;gap:8px;align-items:center;}
.breadcrumb a{color:var(--text-sub);}
.breadcrumb a:hover{color:var(--primary);}
.breadcrumb .separator{color:var(--border);}
.breadcrumb .current{color:var(--text);font-weight:500;}
.article-header{padding:28px 0 20px;}
.article-category{display:inline-block;font-size:12px;font-weight:500;color:var(--primary);border:1px solid rgba(198,161,91,0.7);border-radius:4px;padding:3px 12px;background:rgba(198,161,91,0.06);margin-bottom:16px;letter-spacing:.02em;}
.article-title{font-family:var(--font-title);font-size:36px;font-weight:700;line-height:1.3;margin-bottom:18px;letter-spacing:.01em;color:var(--text);}
@media(max-width:767px){.article-title{font-size:28px;line-height:1.35;}}
.article-meta{display:flex;flex-wrap:wrap;gap:14px;font-size:13px;color:var(--text-sub);align-items:center;font-variant-numeric:tabular-nums;}
.article-meta .dot{width:3px;height:3px;border-radius:50%;background:rgba(122,111,100,0.45);}
.article-meta .meta-tag{color:var(--primary);}
.article-summary{font-size:18px;color:var(--text-sub);font-style:italic;border-left:3px solid var(--gold);padding-left:20px;margin:26px 0 6px;line-height:1.8;}
@media(max-width:767px){.article-summary{font-size:16px;}}
.article-body{max-width:780px;margin:0 auto;}
.article-content{font-size:16px;line-height:2;color:var(--text);word-wrap:break-word;}
.article-content p{margin-bottom:26px;}
.article-content h2{font-size:24px;font-weight:700;margin-top:44px;margin-bottom:18px;font-family:var(--font-title);line-height:1.4;}
.article-content h3{font-size:20px;font-weight:600;margin-top:34px;margin-bottom:14px;font-family:var(--font-title);line-height:1.45;}
.article-content h4{font-size:17px;font-weight:600;margin-top:26px;margin-bottom:10px;}
.article-content a{color:var(--primary);text-decoration:underline;text-underline-offset:3px;}
.article-content a:hover{color:var(--primary-dark);}
.article-content blockquote{border-left:3px solid var(--gold);background:var(--gold-light);padding:20px 24px;border-radius:0 12px 12px 0;margin:28px 0;color:var(--text);}
.article-content ul,.article-content ol{padding-left:1.5em;margin-bottom:26px;}
.article-content li{margin-bottom:8px;padding-left:.2em;}
.article-content ul li{list-style-type:disc;}
.article-content ol li{list-style-type:decimal;}
.article-content img{border-radius:12px;margin:28px 0;width:100%;height:auto;}
.article-content figure{margin:28px 0;}
.article-content figure img{margin:0;}
.article-content figcaption{text-align:center;font-size:12px;color:var(--text-sub);margin-top:10px;line-height:1.6;}
.article-content table{width:100%;border-collapse:collapse;margin:28px 0;font-size:14px;border-radius:8px;overflow:hidden;}
.article-content th{background:var(--gold-light);text-align:left;padding:11px 14px;font-weight:600;color:var(--text);border:1px solid var(--border);}
.article-content td{border:1px solid var(--border);padding:10px 14px;color:var(--text);}
.article-content pre{background:var(--deep);color:#E8E4DD;border-radius:8px;padding:20px;overflow-x:auto;margin:28px 0;font-size:14px;line-height:1.7;}
.article-content code{font-family:"SFMono-Regular",Consolas,"Liberation Mono",monospace;}
.article-content hr{border:none;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);margin:40px 0;}
.section-title{font-family:var(--font-title);font-weight:700;font-size:28px;line-height:1.3;color:var(--text);position:relative;}
@media(max-width:767px){.section-title{font-size:22px;}}
.card-hover{background:rgba(255,255,255,0.85);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;display:block;}
.card-hover:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:var(--gold);}
.related-card{background:rgba(255,255,255,0.75);border:1px solid var(--border);border-radius:12px;padding:16px;display:flex;align-items:flex-start;gap:14px;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;}
.related-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:var(--gold);}
.related-card img{width:72px;height:72px;object-fit:cover;border-radius:8px;flex-shrink:0;}
.related-card h4{font-size:14px;font-weight:600;line-height:1.5;color:var(--text);transition:color .25s ease;}
.related-card:hover h4{color:var(--primary);}
.related-card .tag{display:inline-block;font-size:11px;font-weight:500;color:var(--primary);border:1px solid rgba(198,161,91,0.6);border-radius:4px;padding:2px 8px;margin-top:8px;background:rgba(198,161,91,0.05);}
.cta-section{background:var(--deep);background-image:linear-gradient(120deg,rgba(198,161,91,0.10) 0%,transparent 50%),radial-gradient(circle at 78% 18%,rgba(198,161,91,0.14) 0%,transparent 55%);padding:72px 0;color:#fff;position:relative;overflow:hidden;}
.cta-section::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(198,161,91,0.5),transparent);}
.btn-ghost-white{display:inline-flex;align-items:center;justify-content:center;background:transparent;color:#fff !important;font-size:14px;font-weight:500;padding:11px 26px;border-radius:8px;border:1px solid rgba(255,255,255,0.55);transition:all .25s ease;cursor:pointer;min-height:46px;}
.btn-ghost-white:hover{background:rgba(255,255,255,0.08);border-color:#fff;}
.btn-ghost-white:active{transform:scale(.98);}
.site-footer{background:var(--deep);color:#C9C3BC;margin-top:0;}
.footer-link-title{font-size:14px;font-weight:600;color:#fff;margin-bottom:16px;letter-spacing:.02em;}
.site-footer a{color:#C9C3BC;font-size:13px;line-height:1.6;}
.site-footer a:hover{color:var(--gold);}
.not-found{text-align:center;padding:100px 24px;}
.not-found .icon{width:56px;height:56px;border-radius:14px;background:var(--gold-light);display:flex;align-items:center;justify-content:center;margin:0 auto 20px;}
.not-found p{font-size:17px;color:var(--text-sub);margin-bottom:8px;}
.not-found h2{font-family:var(--font-title);font-size:26px;font-weight:700;margin-bottom:12px;}
.divider{height:1px;background:var(--border);border:none;margin:0;}
@media(max-width:1023px){
  .desktop-only{display:none !important;}
}
@media(min-width:1024px){
  .mobile-only{display:none !important;}
}
a:focus-visible,button:focus-visible{outline:2px solid var(--gold);outline-offset:2px;border-radius:4px;}
::selection{background:rgba(198,161,91,0.3);}

/* roulang page: category1 */
:root {
            --bg: #F7F3EC;
            --brand: #6E1F2B;
            --pine: #1B3A34;
            --gold: #C6A15B;
            --text: #26221E;
            --muted: #7A6F64;
            --border: rgba(38, 34, 30, 0.10);
            --gold-bg: #EFE6D8;
            --radius: 14px;
            --shadow: 0 8px 24px rgba(27, 58, 52, 0.08);
            --font-serif: 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
            --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-serif);
            color: var(--text);
            margin: 0;
        }

        p {
            margin: 0;
        }

        a {
            color: var(--brand);
            text-decoration: none;
            transition: color .25s ease;
        }

        a:hover {
            color: var(--brand);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
        }

        .container-site {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 767px) {
            .container-site {
                padding: 0 16px;
            }
        }

        /* ===== Header ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(247, 243, 236, 0.92);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            min-height: 40px;
            padding: 0 2px;
            font-size: 14px;
            font-weight: 500;
            color: var(--muted);
            transition: color .25s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width .25s ease;
        }

        .nav-link:hover,
        .nav-link:focus-visible {
            color: var(--brand);
            outline: none;
        }

        .nav-link:hover::after,
        .nav-link:focus-visible::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--brand);
            font-weight: 600;
        }

        .search-box {
            display: none;
            align-items: center;
            gap: 8px;
            width: 160px;
            height: 38px;
            padding: 0 12px;
            border: 1px solid var(--border);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.6);
            transition: width .25s ease, border-color .25s ease, box-shadow .25s ease;
        }

        .search-box input {
            border: none;
            outline: none;
            background: transparent;
            font-size: 13px;
            color: var(--text);
            width: 100%;
        }

        .search-box input::placeholder {
            color: var(--muted);
        }

        .search-box:focus-within {
            width: 200px;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.15);
        }

        @media (min-width: 768px) {
            .search-box {
                display: flex;
            }
        }

        .login-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 38px;
            padding: 0 16px;
            border: 1px solid rgba(110, 31, 43, 0.35);
            border-radius: 6px;
            color: var(--brand);
            font-size: 14px;
            font-weight: 500;
            background: transparent;
            white-space: nowrap;
            transition: all .25s ease;
        }

        .login-btn:hover {
            border-color: var(--brand);
            background: rgba(110, 31, 43, 0.05);
        }

        .login-btn:active {
            transform: scale(0.98);
        }

        .header-cta {
            display: none;
            align-items: center;
            justify-content: center;
            min-height: 38px;
            padding: 0 20px;
            background: var(--brand);
            color: #fff;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(110, 31, 43, 0.2);
            transition: all .25s ease;
        }

        .header-cta:hover {
            background: #5a1923;
            color: #fff;
        }

        .header-cta:active {
            transform: scale(0.98);
        }

        @media (min-width: 1024px) {
            .header-cta {
                display: inline-flex;
            }
        }

        .menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: transparent;
            cursor: pointer;
            transition: border-color .25s ease, background .25s ease;
        }

        .menu-toggle:hover {
            border-color: var(--gold);
            background: rgba(239, 230, 216, 0.4);
        }

        @media (max-width: 1023px) {
            .menu-toggle {
                display: inline-flex;
            }
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 8px 16px 20px;
            background: var(--bg);
            border-top: 1px solid var(--border);
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-link {
            display: flex;
            align-items: center;
            min-height: 44px;
            padding: 0 8px;
            font-size: 15px;
            color: var(--text);
            border-bottom: 1px solid var(--border);
        }

        .mobile-link:hover {
            color: var(--brand);
        }

        .mobile-link.active {
            color: var(--brand);
            font-weight: 600;
        }

        .mobile-cta {
            padding-top: 16px;
        }

        /* ===== Page Hero ===== */
        .page-hero {
            padding: 72px 0 52px;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.3;
            margin: 16px 0 20px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border: 1px solid rgba(198, 161, 91, 0.6);
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            color: var(--brand);
            background: rgba(239, 230, 216, 0.5);
            letter-spacing: 0.04em;
        }

        .gold-divider {
            width: 48px;
            height: 2px;
            background: var(--gold);
            margin: 0 auto 16px;
            border-radius: 2px;
        }

        .page-hero .hero-subtitle {
            max-width: 620px;
            margin: 0 auto;
            font-size: 14px;
            line-height: 1.8;
            color: var(--muted);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-width: 900px;
            margin: 40px auto 0;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 22px 16px;
            text-align: center;
            transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
        }

        .stat-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }

        .stat-num {
            font-family: var(--font-serif);
            font-size: 30px;
            font-weight: 700;
            color: var(--pine);
            line-height: 1.2;
            font-variant-numeric: tabular-nums;
        }

        .stat-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            margin-top: 6px;
        }

        .stat-desc {
            font-size: 12px;
            color: var(--muted);
            margin-top: 4px;
        }

        @media (max-width: 767px) {
            .page-hero {
                padding: 48px 0 36px;
            }

            .page-hero h1 {
                font-size: 28px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }

        /* ===== Section ===== */
        .section-block {
            padding: 80px 0;
        }

        .section-white {
            background: #fff;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .section-goldbg {
            background: var(--gold-bg);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        @media (max-width: 1024px) {
            .section-block {
                padding: 64px 0;
            }
        }

        @media (max-width: 767px) {
            .section-block {
                padding: 48px 0;
            }
        }

        .section-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 44px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 4px;
            background: var(--gold-bg);
            color: var(--brand);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 12px;
        }

        .section-head h2 {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.3;
        }

        .section-head .section-desc {
            margin-top: 12px;
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
        }

        @media (max-width: 767px) {
            .section-head {
                margin-bottom: 32px;
            }

            .section-head h2 {
                font-size: 22px;
            }
        }

        /* ===== Guide Cards ===== */
        .guide-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .guide-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: var(--gold);
        }

        .guide-card .card-img {
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .guide-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .3s ease;
        }

        .guide-card:hover .card-img img {
            transform: scale(1.02);
        }

        .guide-card .card-content {
            padding: 20px 22px 22px;
        }

        .guide-card .card-content h3 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .guide-card .card-content p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .guide-card .card-more {
            font-size: 14px;
            font-weight: 500;
            color: var(--brand);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: color .25s ease, transform .25s ease;
        }

        .guide-card:hover .card-more {
            color: var(--gold);
        }

        .guide-card .card-more:hover {
            transform: translateX(3px);
        }

        /* ===== Scene Cards ===== */
        .scene-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px 24px;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .scene-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: var(--gold);
        }

        .scene-icon {
            display: inline-flex;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--gold-bg);
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .scene-icon svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: var(--gold);
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .scene-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .scene-card p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ===== Process ===== */
        .process-step {
            text-align: center;
            padding: 28px 20px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .process-step:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: var(--gold);
        }

        .process-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            color: var(--pine);
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            background: #fff;
        }

        .process-step h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .process-step p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
            max-width: 240px;
            margin: 0 auto;
        }

        /* ===== FAQ ===== */
        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 12px;
            background: #fff;
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color .25s ease, box-shadow .25s ease;
        }

        .faq-item:hover {
            border-color: rgba(198, 161, 91, 0.5);
        }

        .faq-item[open] {
            border-color: var(--gold);
            box-shadow: 0 4px 16px rgba(27, 58, 52, 0.05);
        }

        .faq-item summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 18px 24px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            list-style: none;
            transition: color .25s ease;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-size: 22px;
            font-weight: 400;
            color: var(--gold);
            flex-shrink: 0;
            transition: transform .25s ease;
            line-height: 1;
        }

        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 24px 20px;
            font-size: 14px;
            line-height: 1.8;
            color: var(--muted);
        }

        /* ===== CTA Band ===== */
        .cta-band {
            background-color: var(--pine);
            background-image: linear-gradient(105deg, rgba(27, 58, 52, 0.96), rgba(27, 58, 52, 0.86)), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
        }

        .cta-band h2 {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
        }

        .cta-band .cta-lead {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.78);
            margin-top: 12px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 30px;
            background: var(--gold);
            color: var(--pine);
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            transition: all .25s ease;
        }

        .btn-gold:hover {
            background: #d4b271;
            color: var(--pine);
        }

        .btn-gold:active {
            transform: scale(0.98);
        }

        .btn-ghost-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 30px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            color: #fff;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 500;
            background: transparent;
            transition: all .25s ease;
        }

        .btn-ghost-light:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .btn-ghost-light:active {
            transform: scale(0.98);
        }

        @media (max-width: 767px) {
            .cta-band {
                padding: 56px 0;
            }

            .cta-band h2 {
                font-size: 24px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-buttons a {
                width: 100%;
                max-width: 280px;
            }
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--pine);
            color: #C9C3BC;
        }

        .footer-link-title {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            font-family: var(--font-sans);
        }

        .site-footer a {
            font-size: 13px;
            color: rgba(201, 195, 188, 0.78);
            transition: color .25s ease;
        }

        .site-footer a:hover {
            color: var(--gold);
        }
