/* roulang page: index */
:root {
            --primary: #0A3029;
            --primary-dark: #071f1b;
            --primary-soft: #124A3F;
            --gold: #B8874A;
            --gold-light: #d4a56a;
            --gold-dark: #966f34;
            --warm: #F5F2EC;
            --green-soft: #DCE4DC;
            --red: #A63A2B;
            --text-main: #1F2A27;
            --text-secondary: #5C6F68;
            --text-bright: #F5F2EC;
            --border-warm: #E1DAD0;
            --border-gold: rgba(184, 135, 74, .28);
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-sm: 6px;
            --shadow-card: 0 1px 0 rgba(10, 48, 41, .04), 0 8px 24px rgba(10, 48, 41, .06);
            --shadow-hover: 0 16px 32px rgba(10, 48, 41, .09);
            --container-w: 1280px;
            --font-main: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-main);
            background: var(--warm);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
        }

        a:hover {
            color: var(--gold-dark);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }

        .container {
            max-width: var(--container-w);
        }

        .section-block {
            padding: 96px 0;
            position: relative;
        }

        .section-block+.section-block {
            border-top: 1px solid var(--border-warm);
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .14em;
            color: var(--gold-dark);
            text-transform: uppercase;
        }

        .section-kicker::before {
            content: "";
            width: 26px;
            height: 1px;
            background: var(--gold);
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.35;
            letter-spacing: -.01em;
            margin: 8px 0 14px;
        }

        .section-lead {
            max-width: 680px;
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.9;
        }

        /* page hero dark layer */
        .page-hero-wrap {
            position: relative;
            overflow: hidden;
            background: var(--primary);
            color: var(--text-bright);
        }

        .page-hero-wrap::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center;
            opacity: .22;
            z-index: 0;
        }

        .page-hero-wrap::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(7, 31, 27, .94) 0%, rgba(8, 35, 30, .82) 46%, rgba(10, 48, 41, .66) 100%);
            z-index: 0;
        }

        .page-hero-wrap>.container,
        .page-hero-wrap>header,
        .page-hero-wrap>div {
            position: relative;
            z-index: 2;
        }

        /* ---------- navigations ---------- */
        .site-header {
            padding: 24px 42px 0;
        }

        .nav-panel {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            background: rgba(10, 48, 41, .55);
            border: 1px solid rgba(184, 135, 74, .18);
            border-top: 3px solid var(--gold);
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
            backdrop-filter: blur(6px);
            padding: 10px 18px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: .02em;
            white-space: nowrap;
            line-height: 1.2;
        }

        .brand-logo:hover {
            color: var(--gold-light);
        }

        .logo-mark {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--gold);
            border-radius: 8px;
            background: rgba(184, 135, 74, .12);
            color: var(--gold-light);
            font-size: 19px;
            font-weight: 700;
            flex: 0 0 auto;
        }

        .logo-text span {
            font-weight: 400;
            color: rgba(245, 242, 236, .88);
        }

        .logo-text strong {
            font-weight: 700;
            color: #fff;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            display: inline-flex;
            align-items: center;
            padding: 10px 18px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 500;
            color: rgba(245, 242, 236, .82);
            transition: all .2s ease;
        }

        .nav-menu a:hover {
            color: #fff;
            background: rgba(184, 135, 74, .12);
        }

        .nav-menu a.active {
            color: #fff;
            background: rgba(184, 135, 74, .18);
            box-shadow: inset 0 -2px 0 var(--gold);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            background: var(--gold);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.4;
            border: 1px solid transparent;
            transition: all .2s ease;
        }

        .btn-nav-cta:hover {
            background: var(--gold-light);
            color: #0A3029;
            transform: translateY(-1px);
        }

        .nav-toggle {
            display: none;
            border: 1px solid var(--border-gold);
            background: rgba(184, 135, 74, .08);
            width: 42px;
            height: 42px;
            border-radius: var(--radius-sm);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            padding: 0;
        }

        .nav-toggle .nav-bar {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--gold-light);
            border-radius: 2px;
            transition: all .25s ease;
        }

        .nav-toggle.open .nav-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.open .nav-bar:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.open .nav-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* count-down strip */
        .countdown-strip {
            margin-top: 20px;
        }

        .countdown-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            background: rgba(245, 242, 236, .06);
            border-top: 1px solid rgba(184, 135, 74, .16);
            border-bottom: 1px solid rgba(184, 135, 74, .14);
            padding: 10px 18px;
            border-radius: var(--radius-md);
            width: 100%;
        }

        .countdown-label {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gold-light);
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
        }

        .countdown-label .cd-pulse {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--red);
            box-shadow: 0 0 0 0 rgba(166, 58, 43, .5);
            animation: cdPulse 2s infinite;
            display: inline-block;
        }

        @keyframes cdPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(166, 58, 43, .5);
            }
            70% {
                box-shadow: 0 0 0 9px rgba(166, 58, 43, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(166, 58, 43, 0);
            }
        }

        .countdown-timer {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .cd-unit {
            display: inline-flex;
            align-items: baseline;
            gap: 4px;
            background: rgba(245, 242, 236, .08);
            border-radius: var(--radius-sm);
            padding: 3px 9px;
        }

        .cd-unit b {
            font-size: 24px;
            line-height: 1.3;
            font-weight: 700;
            font-variant-numeric: tabular-nums;
            color: #fff;
            letter-spacing: .02em;
        }

        .cd-unit i {
            font-style: normal;
            font-size: 12px;
            color: rgba(245, 242, 236, .72);
        }

        .cd-sep {
            color: var(--gold);
            font-weight: 700;
            font-size: 20px;
        }

        .cd-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold-light);
            font-weight: 500;
            font-size: 14px;
            white-space: nowrap;
            border-bottom: 1px solid transparent;
        }

        .cd-link:hover {
            border-bottom-color: var(--gold);
            color: var(--gold-light);
        }

        .cd-link svg {
            width: 16px;
            height: 16px;
            transition: transform .2s ease;
        }

        .cd-link:hover svg {
            transform: translateX(3px);
        }

        /* hero */
        .hero-section {
            padding: 80px 0 92px;
        }

        .hero-main {
            padding-right: 20px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(184, 135, 74, .3);
            background: rgba(184, 135, 74, .08);
            border-radius: 100px;
            padding: 5px 16px;
            color: var(--gold-light);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .04em;
            margin-bottom: 26px;
        }

        .hero-eyebrow .dot {
            width: 5px;
            height: 5px;
            background: var(--gold);
            border-radius: 50%;
        }

        .hero-title {
            font-size: 54px;
            line-height: 1.28;
            font-weight: 700;
            color: #fff;
            letter-spacing: -.015em;
            margin-bottom: 22px;
        }

        .hero-title .text-strong {
            color: var(--gold-light);
        }

        .hero-subtitle {
            color: rgba(245, 242, 236, .78);
            font-size: 17px;
            line-height: 1.9;
            max-width: 560px;
            margin-bottom: 32px;
        }

        .hero-cta-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: var(--radius-sm);
            padding: 13px 28px;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
            border: 1px solid transparent;
            transition: all .2s ease;
        }

        .btn-gold {
            background: var(--gold);
            color: #fff;
            border-color: var(--gold);
        }

        .btn-gold:hover {
            background: var(--gold-light);
            border-color: var(--gold-light);
            color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(184, 135, 74, .22);
        }

        .btn-outline {
            border: 1px solid rgba(184, 135, 74, .65);
            color: #fff;
            background: transparent;
        }

        .btn-outline:hover {
            background: rgba(184, 135, 74, .12);
            border-color: var(--gold);
            color: var(--gold-light);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            border: 1px solid var(--primary);
        }

        .btn-primary:hover {
            background: var(--primary-soft);
            border-color: var(--primary-soft);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 14px 24px rgba(10, 48, 41, .14);
        }

        /* hero dashboard card */
        .hero-dashboard {
            border-radius: var(--radius-lg);
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(184, 135, 74, .18);
            padding: 24px;
            backdrop-filter: blur(8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
        }

        .dash-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .dash-head span {
            font-size: 13px;
            letter-spacing: .08em;
            color: rgba(245, 242, 236, .58);
        }

        .dash-head .dash-live {
            background: rgba(166, 58, 43, .5);
            border-radius: 12px;
            color: #fff;
            padding: 2px 10px;
            font-size: 12px;
            letter-spacing: .04em;
        }

        .dash-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: rgba(245, 242, 236, .08);
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 18px;
        }

        .dash-stat {
            background: #0A3029;
            color: var(--text-bright);
            padding: 16px 14px;
            text-align: left;
        }

        .dash-stat b {
            font-size: 26px;
            font-weight: 700;
            color: var(--gold-light);
            font-variant-numeric: tabular-nums;
            display: block;
            line-height: 1.3;
        }

        .dash-stat span {
            font-size: 13px;
            color: rgba(245, 242, 236, .58);
            display: block;
            margin-top: 4px;
        }

        .dash-event {
            border-top: 1px solid rgba(245, 242, 236, .08);
            padding-top: 14px;
        }

        .dash-event-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: rgba(245, 242, 236, .76);
            margin-bottom: 10px;
        }

        .dash-event-row:last-child {
            margin-bottom: 0;
        }

        .dash-event-row strong {
            color: var(--gold-light);
            font-weight: 600;
        }

        .dash-event-row .status {
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            display: inline-block;
        }

        /* features */
        .features-section {
            background: var(--warm);
        }

        .section-head-flex {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 46px;
        }

        .feature-grid .feature-card {
            background: #fff;
            border: 1px solid var(--border-warm);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            padding: 28px 24px 24px;
            height: 100%;
            position: relative;
            transition: transform .22s ease, box-shadow .22s ease;
        }

        .feature-grid .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .feature-grid .feature-card.feature-featured {
            border-left: 3px solid var(--gold);
        }

        .feature-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(184, 135, 74, .12);
            color: var(--gold-dark);
            border: 1px solid rgba(184, 135, 74, .22);
            margin-bottom: 18px;
            font-size: 22px;
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 6px;
            letter-spacing: -.01em;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.72;
            margin-bottom: 0;
        }

        .feature-card .feature-tag {
            position: absolute;
            top: 18px;
            right: 18px;
            font-size: 12px;
            padding: 2px 10px;
            border-radius: 20px;
            color: var(--gold-dark);
            background: rgba(184, 135, 74, .1);
            font-weight: 600;
        }

        /* gallery / highlight */
        .gallery-section {
            background: var(--green-soft);
        }

        .gallery-wrap {
            margin-top: 42px;
        }

        .gallery-panel {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .gallery-item {
            border-radius: var(--radius-md);
            overflow: hidden;
            background: #fff;
            box-shadow: var(--shadow-card);
            transition: transform .22s ease, box-shadow .22s ease;
            border: 1px solid #D5DfD5;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .gallery-item .gallery-img {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            position: relative;
        }

        .gallery-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .3s ease;
        }

        .gallery-item:hover .gallery-img img {
            transform: scale(1.04);
        }

        .gallery-item.wide {
            grid-row: span 1;
        }

        .gallery-item:first-child {
            grid-row: span 2;
        }

        .gallery-item:first-child .gallery-img {
            aspect-ratio: auto;
            height: 100%;
            min-height: 330px;
        }

        .gallery-caption {
            padding: 14px 16px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .gallery-caption span {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
        }

        .gallery-caption em {
            font-style: normal;
            font-size: 12px;
            color: var(--text-secondary);
            display: block;
            margin-top: 2px;
        }

        .gallery-caption .arrow-link {
            color: var(--gold-dark);
            font-size: 13px;
            white-space: nowrap;
        }

        /* CTA form */
        .cta-section {
            background: var(--primary);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            border: 1px solid rgba(184, 135, 74, .16);
            border-radius: 14px;
            transform: rotate(12deg);
            top: -120px;
            left: -50px;
        }

        .cta-section::after {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            border: 1px solid rgba(184, 135, 74, .12);
            border-radius: 14px;
            transform: rotate(-8deg);
            bottom: -180px;
            right: -30px;
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
        }

        .cta-card {
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(184, 135, 74, .2);
            border-radius: var(--radius-lg);
            padding: 46px 50px;
            backdrop-filter: blur(6px);
            display: grid;
            grid-template-columns: .9fr 1.4fr;
            gap: 42px;
            align-items: center;
        }

        .cta-card h2 {
            font-size: 34px;
            line-height: 1.35;
            font-weight: 700;
            letter-spacing: -.01em;
            margin-bottom: 14px;
        }

        .cta-card .cta-head p {
            color: rgba(245, 242, 236, .68);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .cta-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .cta-form .form-field {
            background: rgba(255, 255, 255, .08);
            border-radius: var(--radius-sm);
            border: 1px solid rgba(184, 135, 74, .22);
            padding: 14px 16px 10px;
        }

        .cta-form label {
            display: flex;
            gap: 8px;
            font-size: 12px;
            color: rgba(245, 242, 236, .56);
            letter-spacing: .04em;
            margin-bottom: 4px;
        }

        .cta-form label span {
            color: var(--gold);
            font-weight: 700;
        }

        .cta-form input,
        .cta-form select {
            width: 100%;
            border: none;
            background: transparent;
            outline: none;
            color: #fff;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 1px solid transparent;
        }

        .cta-form input::placeholder {
            color: rgba(245, 242, 236, .4);
        }

        .cta-form select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23B8874A' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 4px center;
            padding-right: 20px;
        }

        .cta-form select option {
            color: var(--text-main);
            background: #fff;
        }

        .cta-form input:focus {
            outline: none;
            border-bottom-color: var(--gold);
        }

        .cta-form .field-full {
            grid-column: span 2;
        }

        .form-submit {
            display: flex;
            align-items: center;
            gap: 17px;
            flex-wrap: wrap;
            grid-column: span 2;
        }

        .form-submit .btn-submit {
            background: var(--gold);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            padding: 14px 34px;
            font-weight: 600;
            font-size: 15px;
            transition: all .2s ease;
        }

        .form-submit .btn-submit:hover {
            background: var(--gold-light);
            color: var(--primary);
            transform: translateY(-1px);
        }

        .form-submit .form-note {
            color: rgba(245, 242, 236, .5);
            font-size: 13px;
            margin: 0;
        }

        .cta-success {
            display: none;
            text-align: center;
            padding: 30px 10px;
            border: 1px dashed rgba(184, 135, 74, .4);
            border-radius: var(--radius-md);
        }

        .cta-success.show {
            display: block;
        }

        .cta-success .success-icon {
            width: 52px;
            height: 52px;
            line-height: 52px;
            border-radius: 50%;
            background: var(--gold);
            color: var(--primary);
            font-size: 24px;
            margin: 0 auto 14px;
        }

        /* rule faq */
        .rules-section {
            background: #fff;
        }

        .rules-left {
            border-top: 3px solid var(--gold);
        }

        .rules-left ol {
            padding-left: 0;
            list-style: none;
            margin-top: 26px;
            counter-reset: ruleCounter;
        }

        .rules-left ol li {
            counter-increment: ruleCounter;
            position: relative;
            padding-left: 40px;
            padding-top: 4px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-warm);
            margin-bottom: 16px;
            color: var(--text-main);
            font-size: 15px;
        }

        .rules-left ol li::before {
            content: counter(ruleCounter, decimal-leading-zero);
            position: absolute;
            left: 0;
            top: 3px;
            font-weight: 700;
            color: var(--gold);
            font-size: 15px;
        }

        .custom-accordion .accordion-item {
            border: none;
            border-bottom: 1px solid var(--border-warm);
            background: transparent;
            border-radius: 0;
        }

        .custom-accordion .accordion-item:first-child {
            border-top: 1px solid var(--border-warm);
        }

        .custom-accordion .accordion-header {
            margin: 0;
        }

        .custom-accordion .accordion-button {
            box-shadow: none;
            background: transparent;
            padding: 20px 16px 20px 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            border: none;
            position: relative;
        }

        .custom-accordion .accordion-button::after {
            content: "";
            background: none;
            width: auto;
            height: auto;
            font-size: 22px;
            font-weight: 300;
            color: var(--gold-dark);
            background-image: none;
            transform: none;
            margin-left: 10px;
            transition: transform .22s ease;
        }

        .custom-accordion .accordion-button:not(.collapsed)::after {
            background-image: none;
            transform: rotate(45deg);
            content: "";
            background: none;
            color: var(--gold);
        }

        .custom-accordion .accordion-button::before {
            content: "+";
            position: absolute;
            right: 2px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            line-height: 1;
            font-weight: 300;
            color: var(--gold-dark);
        }

        .custom-accordion .accordion-button:not(.collapsed)::before {
            content: "×";
            color: var(--gold);
            transform: translateY(-50%) rotate(0);
        }

        .custom-accordion .accordion-button:focus {
            box-shadow: none;
        }

        .custom-accordion .accordion-body {
            padding: 4px 24px 20px 0;
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.85;
        }

        .faq-more {
            margin-top: 22px;
        }

        .faq-more a {
            color: var(--gold-dark);
            font-size: 14px;
            border-bottom: 1px solid rgba(184, 135, 74, .4);
        }

        .faq-more a:hover {
            border-bottom-color: var(--gold);
        }

        /* news / CMS */
        .news-section {
            background: var(--warm);
        }

        .news-list {
            margin-top: 42px;
        }

        .news-item {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 28px;
            background: #fff;
            border: 1px solid var(--border-warm);
            border-radius: var(--radius-lg);
            padding: 26px 30px;
            margin-bottom: 14px;
            transition: box-shadow .22s ease, transform .22s ease;
            box-shadow: var(--shadow-card);
        }

        .news-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateX(2px);
        }

        .news-main {
            flex: 1;
            min-width: 0;
        }

        .news-main h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .news-main h3 a {
            color: var(--text-main);
        }

        .news-main h3 a:hover {
            color: var(--gold-dark);
        }

        .news-main p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.72;
            margin-bottom: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .news-meta {
            flex: 0 0 116px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
        }

        .news-meta .badge {
            display: inline-block;
            background: rgba(184, 135, 74, .12);
            color: var(--gold-dark);
            border: 1px solid rgba(184, 135, 74, .2);
            font-size: 12px;
            font-weight: 500;
            padding: 2px 12px;
            border-radius: 20px;
        }

        .news-meta time {
            font-size: 13px;
            color: var(--text-secondary);
            font-variant-numeric: tabular-nums;
        }

        .news-empty {
            background: #fff;
            border: 1px dashed var(--border-warm);
            border-radius: var(--radius-lg);
            padding: 50px 30px;
            text-align: center;
            box-shadow: none;
        }

        .news-empty .empty-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 16px;
            border-radius: 50%;
            border: 1px dashed var(--gold);
            background: rgba(184, 135, 74, .04);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
        }

        .news-empty p {
            color: var(--text-secondary);
            font-size: 15px;
            margin: 0;
        }

        /* footer */
        .site-footer {
            background: var(--primary);
            color: rgba(245, 242, 236, .72);
            position: relative;
        }

        .site-footer::before {
            content: "";
            height: 1px;
            display: block;
            background: linear-gradient(90deg, var(--gold) 0%, rgba(184, 135, 74, .1) 40%, rgba(184, 135, 74, .1) 100%);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1.2fr;
            gap: 40px;
            padding: 60px 0 42px;
        }

        .footer-brand .brand-logo {
            margin-bottom: 18px;
        }

        .footer-brand p {
            color: rgba(245, 242, 236, .54);
            font-size: 14px;
            line-height: 1.8;
            max-width: 300px;
            margin: 0;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .footer-title {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 12px;
            border-bottom: 1px solid rgba(184, 135, 74, .18);
            padding-bottom: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(245, 242, 236, .66);
            display: inline-block;
            width: max-content;
            border-bottom: 1px solid transparent;
        }

        .footer-links a:hover {
            color: var(--gold-light);
            border-bottom-color: var(--gold);
        }

        .footer-contact p {
            font-size: 14px;
            color: rgba(245, 242, 236, .62);
            margin-bottom: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(245, 242, 236, .08);
            padding: 22px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            color: rgba(245, 242, 236, .4);
            font-size: 13px;
        }

        .footer-bottom p {
            margin: 0;
        }

        /* responsive */
        @media (max-width: 991.98px) {
            .section-block {
                padding: 72px 0;
            }

            .site-header {
                padding: 18px 20px 0;
            }

            .nav-panel {
                padding: 10px 14px;
            }

            .nav-menu {
                gap: 4px;
            }

            .nav-menu a {
                padding: 9px 12px;
                font-size: 14px;
            }

            .hero-title {
                font-size: 44px;
            }

            .hero-section {
                padding: 60px 0 78px;
            }

            .cta-card {
                padding: 36px 30px;
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .cta-form {
                grid-template-columns: 1fr 1fr;
            }

            .gallery-panel {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-item:first-child {
                grid-row: auto;
            }

            .gallery-item:first-child .gallery-img {
                aspect-ratio: 4 / 3;
                min-height: auto;
                height: auto;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 767.98px) {
            .section-block {
                padding: 56px 0;
            }

            .container,
            .site-header {
                padding-left: 20px;
                padding-right: 20px;
            }

            .site-header {
                padding-top: 12px;
            }

            .nav-panel {
                position: relative;
                flex-wrap: wrap;
                border-radius: var(--radius-md);
            }

            .brand-logo {
                font-size: 15px;
            }

            .logo-mark {
                width: 34px;
                height: 34px;
                font-size: 16px;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                margin-top: 8px;
                border-top: 1px solid var(--border-gold);
            }

            .nav-menu.open {
                display: flex;
            }

            .nav-menu a {
                padding: 14px 12px;
                width: 100%;
            }

            .nav-actions {
                margin-left: auto;
            }

            .btn-nav-cta {
                padding: 9px 14px;
                font-size: 13px;
            }

            .countdown-inner {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px 16px;
                padding: 12px 14px;
            }

            .countdown-timer {
                flex-wrap: wrap;
                justify-content: center;
            }

            .cd-unit b {
                font-size: 20px;
            }

            .hero-section {
                padding: 42px 0 62px;
            }

            .hero-title {
                font-size: 34px;
                line-height: 1.36;
            }

            .hero-subtitle {
                font-size: 15px;
            }

            .hero-cta-wrap {
                gap: 10px;
            }

            .btn {
                padding: 12px 20px;
                font-size: 14px;
            }

            .hero-dashboard {
                margin-top: 22px;
                padding: 18px;
            }

            .section-title {
                font-size: 26px;
            }

            .section-lead {
                font-size: 15px;
            }

            .gallery-panel {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 14px;
                margin-left: -20px;
                margin-right: -20px;
                padding-left: 20px;
                padding-right: 20px;
            }

            .gallery-item {
                flex: 0 0 78%;
                scroll-snap-align: start;
            }

            .gallery-item:first-child {
                grid-row: auto;
            }

            .cta-card {
                padding: 24px 18px;
            }

            .cta-card h2 {
                font-size: 26px;
            }

            .cta-form {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .cta-form .field-full,
            .form-submit {
                grid-column: span 1;
            }

            .news-item {
                flex-direction: column;
                gap: 12px;
                padding: 18px 18px;
            }

            .news-meta {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                flex: auto;
                order: 3;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 28px;
                padding-top: 38px;
                padding-bottom: 20px;
            }

            .footer-bottom {
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 31px;
            }

            .countdown-label {
                font-size: 12px;
            }

            .countdown-link {
                display: none;
            }

            .dash-stats {
                grid-template-columns: 1fr 1fr;
            }

            .dash-stat b {
                font-size: 22px;
            }

            .section-head-flex {
                margin-bottom: 28px;
            }

            .feature-grid .feature-card {
                padding: 22px 18px;
            }

            .cta-section .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .cta-card {
                padding: 20px 14px;
            }

            .cta-form input,
            .cta-form select {
                font-size: 14px;
            }

            .form-submit .btn-submit {
                width: 100%;
            }

            .form-submit {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }

            .form-submit .form-note {
                font-size: 12px;
            }
        }

/* roulang page: article */
:root {
    --green-950:#06231d;
    --green-900:#0a3029;
    --green-800:#11453b;
    --green-700:#155348;
    --brass:#b8874a;
    --brass-strong:#9a6b32;
    --brass-soft:#dcb47c;
    --cream:#f5f2ec;
    --warm-white:#faf8f4;
    --paper:#ffffff;
    --ink:#1f2a27;
    --muted:#5f6f68;
    --muted-2:#8a9b94;
    --line:#e1dad0;
    --line-deep:rgba(184,135,74,.35);
    --shadow-card:0 1px 0 rgba(10,48,41,.04),0 8px 24px rgba(10,48,41,.06);
    --shadow-hover:0 16px 32px rgba(10,48,41,.09);
    --radius-card:18px;
    --radius-btn:6px;
    --radius-small:8px;
    --transition:all .2s ease;
    --font-body:"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
}

*,
*::before,
*::after {
    box-sizing:border-box;
}

html {
    scroll-padding-top:120px;
    -webkit-text-size-adjust:100%;
}

body {
    margin:0;
    font-family:var(--font-body);
    font-size:16px;
    line-height:1.8;
    color:var(--ink);
    background:var(--cream);
    -webkit-font-smoothing:antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight:700;
    line-height:1.35;
    color:var(--ink);
    margin:0 0 .5em;
}

p {
    margin:0 0 1em;
}

a {
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

img {
    max-width:100%;
    height:auto;
    display:block;
}

ul, ol {
    padding-left:1.2em;
}

input, button, textarea, select {
    font-family:inherit;
}

button {
    border:0;
}

:focus-visible {
    outline:3px solid rgba(184,135,74,.45);
    outline-offset:2px;
    border-radius:4px;
}

::selection {
    background:rgba(184,135,74,.22);
    color:var(--green-950);
}

.container {
    max-width:1300px;
    padding-left:1.5rem;
    padding-right:1.5rem;
}

/* Header + card navigation */
.site-header {
    position:sticky;
    top:0;
    z-index:1080;
    padding:14px 18px 8px;
    background:rgba(245,242,236,.78);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.nav-panel {
    display:flex;
    align-items:center;
    gap:14px;
    max-width:1320px;
    margin:0 auto;
    padding:10px 14px;
    background:var(--paper);
    border:1px solid var(--line);
    border-top:3px solid var(--brass);
    border-radius:18px;
    box-shadow:0 1px 0 rgba(10,48,41,.04),0 14px 34px rgba(10,48,41,.07);
    flex-wrap:nowrap;
}

.brand-logo {
    display:inline-flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.logo-mark {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    background:var(--green-900);
    color:#f7f0e2;
    font-weight:800;
    font-size:17px;
    border-radius:9px;
    box-shadow:inset 0 0 0 1px rgba(184,135,74,.3);
}

.logo-text {
    font-size:17px;
    font-weight:600;
    color:var(--green-950);
    letter-spacing:.02em;
    white-space:nowrap;
}

.logo-text strong {
    color:var(--brass-strong);
    font-weight:800;
}

.nav-menu {
    display:flex;
    align-items:center;
    gap:2px;
    list-style:none;
    margin:0;
    padding:0 8px;
}

.nav-menu li a {
    display:inline-block;
    padding:9px 16px;
    font-size:15px;
    font-weight:600;
    color:var(--ink);
    border-radius:8px;
    transition:var(--transition);
    white-space:nowrap;
}

.nav-menu li a:hover {
    color:var(--green-900);
    background:#f1eadf;
}

.nav-menu li a.active {
    color:var(--green-950);
    background:#faf4ea;
    box-shadow:inset 0 -2px 0 var(--brass);
}

.nav-actions {
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:auto;
}

.btn-nav-cta {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 22px;
    font-size:14px;
    font-weight:700;
    color:#fbf7ee;
    background:var(--brass);
    border-radius:var(--radius-btn);
    transition:var(--transition);
    white-space:nowrap;
}

.btn-nav-cta:hover {
    background:var(--brass-strong);
    color:#fff;
    transform:translateY(-1px);
}

.nav-toggle {
    display:none;
    width:42px;
    height:42px;
    border-radius:8px;
    background:#f2ede4;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    cursor:pointer;
    border:1px solid var(--line);
}

.nav-toggle .nav-bar {
    display:block;
    width:19px;
    height:2px;
    background:var(--green-900);
    border-radius:2px;
}

/* Main article layout */
.site-main {
    padding:36px 0 90px;
}

.article-narrow {
    max-width:1040px;
    margin:0 auto;
}

.breadcrumb-wrap {
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:24px;
    font-size:14px;
    color:var(--muted);
}

.breadcrumb-wrap a {
    color:var(--muted);
    font-weight:500;
}

.breadcrumb-wrap a:hover {
    color:var(--green-900);
}

.breadcrumb-wrap .sep {
    color:var(--brass);
    font-weight:700;
}

.breadcrumb-wrap .current {
    color:var(--ink);
    font-weight:600;
    max-width:440px;
    display:inline-block;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.article-panel {
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:var(--shadow-card);
    padding:clamp(28px,5vw,66px);
    margin-bottom:56px;
}

.article-heading::before {
    content:"";
    display:block;
    width:48px;
    height:3px;
    background:var(--brass);
    border-radius:3px;
    margin-bottom:24px;
}

.article-title {
    font-size:clamp(32px,4vw,48px);
    letter-spacing:-.01em;
    line-height:1.28;
    font-weight:800;
    color:var(--green-950);
    margin-bottom:18px;
    word-break:break-word;
}

.article-meta-row {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px 22px;
    color:var(--muted);
    font-size:14px;
    border-top:1px solid #eee8df;
    padding-top:20px;
}

.article-meta-row .meta-item {
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.article-meta-row .meta-item i {
    color:var(--brass);
    font-size:14px;
    width:15px;
}

.article-meta-row .category-chip {
    padding:5px 13px;
    background:#f7f1e6;
    border-radius:20px;
    color:var(--green-900);
    font-weight:600;
    font-size:13px;
}

.article-meta-row .meta-sep {
    width:3px;
    height:3px;
    background:var(--brass);
    border-radius:50%;
    opacity:.5;
}

.article-body {
    margin-top:36px;
    font-size:16.5px;
    line-height:2;
    color:#2a3732;
}

.article-body > *:last-child {
    margin-bottom:0;
}

.article-body h2 {
    font-size:1.6rem;
    font-weight:700;
    margin:2.6em 0 1em;
    padding-left:15px;
    border-left:4px solid var(--brass);
    color:var(--green-950);
}

.article-body h3 {
    font-size:1.3rem;
    margin:2em 0 .8em;
    font-weight:700;
    color:var(--green-900);
}

.article-body p {
    margin-bottom:1.45em;
    letter-spacing:.01em;
}

.article-body ul,
.article-body ol {
    margin:1.2em 0 1.6em;
    padding-left:1.6em;
}

.article-body li {
    margin-bottom:.55em;
}

.article-body blockquote {
    margin:2em 0;
    padding:22px 26px;
    background:var(--warm-white);
    border-left:4px solid var(--brass);
    border-radius:0 14px 14px 0;
    color:#495a54;
    font-size:1.05em;
    font-style:normal;
}

.article-body img {
    width:100%;
    border-radius:14px;
    margin:28px 0;
    box-shadow:0 8px 20px rgba(10,48,41,.08);
    object-fit:cover;
}

.article-body a {
    color:var(--brass-strong);
    text-decoration:underline;
    text-underline-offset:3px;
}

.article-body a:hover {
    color:var(--green-900);
}

.article-body hr {
    margin:2.4em 0;
    border:0;
    border-top:1px solid var(--line);
}

.article-divider {
    display:flex;
    align-items:center;
    gap:14px;
    margin:46px 0;
    color:var(--muted);
    font-size:13px;
}

.article-divider::before,
.article-divider::after {
    content:"";
    flex:1;
    height:1px;
    background:var(--line);
}

.tags-row {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
}

.tags-row .tag-label {
    color:var(--muted);
    font-size:13px;
    font-weight:600;
    margin-right:2px;
}

.tags-row .tag-link {
    display:inline-block;
    padding:7px 16px;
    font-size:13px;
    font-weight:600;
    color:var(--green-900);
    background:#f7f3eb;
    border:1px solid var(--line);
    border-radius:20px;
    transition:var(--transition);
}

.tags-row .tag-link:hover {
    border-color:var(--brass);
    color:var(--brass-strong);
    background:#fff;
}

.article-back {
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:34px;
    padding:10px 0;
    font-size:15px;
    font-weight:700;
    color:var(--green-950);
    border-bottom:1px solid var(--line-deep);
}

.article-back i {
    color:var(--brass);
    transition:transform .2s ease;
}

.article-back:hover {
    color:var(--brass-strong);
    border-color:var(--brass);
}

.article-back:hover i {
    transform:translateX(-4px);
}

/* Missing article */
.missing-card {
    text-align:center;
    padding:80px 30px;
}

.missing-icon {
    width:88px;
    height:88px;
    margin:0 auto 28px;
    border-radius:50%;
    border:1px dashed var(--brass);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--brass);
    font-size:30px;
    background:rgba(184,135,74,.05);
}

.missing-card h1 {
    font-size:36px;
    font-weight:800;
    color:var(--green-950);
    margin-bottom:16px;
}

.missing-card p {
    color:var(--muted);
    max-width:520px;
    margin:0 auto 32px;
}

.button {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px 28px;
    font-size:15px;
    font-weight:700;
    border-radius:var(--radius-btn);
    background:var(--green-900);
    color:#f8f2e8;
    border:1px solid transparent;
    transition:var(--transition);
}

.button:hover {
    background:var(--green-700);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(10,48,41,.18);
}

.button-brass {
    background:var(--brass);
    color:#fff;
    border-color:var(--brass);
}

.button-brass:hover {
    background:var(--brass-strong);
    border-color:var(--brass-strong);
    color:#fff;
}

/* CTA band */
.cta-band {
    position:relative;
    background:
        linear-gradient(rgba(5,30,24,.92),rgba(8,42,35,.94)),
        url('/assets/images/backpic/back-1.png') center/cover no-repeat;
    border-radius:24px;
    margin:0 0 72px;
    padding:70px 44px;
    overflow:hidden;
    box-shadow:var(--shadow-card);
}

.cta-band::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,transparent,var(--brass),transparent);
    opacity:.7;
}

.cta-band::after {
    content:"";
    position:absolute;
    right:-60px;
    bottom:-60px;
    width:240px;
    height:240px;
    background:radial-gradient(circle,rgba(184,135,74,.2),transparent 68%);
}

.cta-band-inner {
    position:relative;
    z-index:1;
    max-width:760px;
}

.cta-overline {
    font-size:13px;
    font-weight:700;
    letter-spacing:.22em;
    color:var(--brass-soft);
    margin-bottom:14px;
    text-transform:uppercase;
}

.cta-band h2 {
    color:#f7f2e8;
    font-size:clamp(28px,3.4vw,42px);
    font-weight:800;
    letter-spacing:-.01em;
    margin-bottom:20px;
}

.cta-band p {
    color:rgba(247,245,238,.78);
    font-size:16px;
    line-height:1.9;
    max-width:620px;
    margin-bottom:32px;
}

.cta-actions {
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.cta-actions .link-light {
    color:rgba(255,255,255,.9);
    font-weight:600;
    font-size:15px;
    padding:12px 6px;
    border-bottom:1px solid rgba(255,255,255,.3);
}

.cta-actions .link-light:hover {
    color:var(--brass-soft);
    border-color:var(--brass);
}

/* Related cards */
.related-section {
    margin-bottom:64px;
}

.section-heading-wrap {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:24px;
}

.section-heading {
    font-size:clamp(22px,3vw,32px);
    color:var(--green-950);
    margin:0;
}

.section-heading-line {
    width:44px;
    height:3px;
    background:var(--brass);
    border-radius:2px;
    margin-top:12px;
}

..section-more-link {
    font-size:14px;
    font-weight:600;
    color:var(--muted);
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.section-more-link:hover {
    color:var(--green-900);
}

.section-more-link i {
    color:var(--brass);
}

.related-cards {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.related-card {
    display:block;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:16px;
    overflow:hidden;
    box-shadow:var(--shadow-card);
    transition:var(--transition);
    height:100%;
}

.related-card:hover {
    transform:translateY(-4px);
    box-shadow:var(--shadow-hover);
}

.related-thumb {
    position:relative;
    aspect-ratio:4/3;
    overflow:hidden;
    background:#dfe6e0;
}

.related-thumb img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.related-card:hover .related-thumb img {
    transform:scale(1.05);
}

.related-label {
    position:absolute;
    left:14px;
    top:14px;
    padding:5px 14px;
    background:rgba(10,48,41,.82);
    color:#f4efdf;
    font-size:12px;
    font-weight:600;
    border-radius:20px;
    backdrop-filter:blur(8px);
    border:1px solid rgba(184,135,74,.25);
}

.related-card-body {
    padding:20px 22px 22px;
}

.related-card-body h3 {
    font-size:18px;
    font-weight:700;
    color:var(--green-950);
    margin-bottom:8px;
    line-height:1.5;
}

.related-card-body p {
    font-size:14px;
    color:var(--muted);
    line-height:1.7;
    margin-bottom:16px;
}

.related-entry {
    display:inline-flex;
    align-items:center;
    gap:7px;
    font-size:13.5px;
    font-weight:700;
    color:var(--brass-strong);
    transition:var(--transition);
}

.related-card:hover .related-entry {
    gap:11px;
    color:var(--green-900);
}

/* Footer */
.site-footer {
    background:var(--green-900);
    color:rgba(245,242,236,.88);
    padding:70px 0 0;
    position:relative;
    overflow:hidden;
}

.site-footer::before {
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:1px;
    width:100%;
    background:linear-gradient(90deg,transparent,var(--brass),transparent);
    opacity:.8;
}

.footer-main {
    display:grid;
    grid-template-columns:2fr 1fr 1.2fr;
    gap:48px;
    padding-bottom:48px;
}

.footer-brand .brand-logo {
    margin-bottom:18px;
}

.footer-brand .brand-logo .logo-mark {
    background:rgba(255,255,255,.08);
    border:1px solid rgba(184,135,74,.5);
    color:#e8d6b8;
}

.footer-brand .brand-logo .logo-text {
    color:#f4efdf;
}

.footer-brand .brand-logo .logo-text strong {
    color:var(--brass-soft);
}

.footer-brand p {
    font-size:14px;
    color:rgba(245,242,236,.62);
    max-width:360px;
    line-height:1.9;
}

.footer-title {
    display:block;
    font-size:15px;
    color:#f4efdf;
    font-weight:700;
    margin-bottom:14px;
}

.footer-links {
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-links a {
    font-size:14px;
    color:rgba(245,242,236,.75);
    width:max-content;
    transition:var(--transition);
    padding-bottom:2px;
    border-bottom:1px solid transparent;
}

.footer-links a:hover {
    color:var(--brass-soft);
    border-color:var(--brass-soft);
}

.footer-contact p {
    font-size:14px;
    color:rgba(245,242,236,.75);
    margin-bottom:12px;
    line-height:1.7;
}

.footer-bottom {
    border-top:1px solid rgba(184,135,74,.18);
    padding:24px 0;
    display:flex;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    font-size:13px;
    color:rgba(245,242,236,.55);
}

.footer-bottom p {
    margin:0;
}

/* Responsive */
@media (max-width:991.98px) {
    .footer-main {
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

    .footer-brand {
        grid-column:1 / -1;
    }

    .nav-panel {
        flex-wrap:wrap;
        position:relative;
    }

    .nav-menu {
        display:none;
        flex-basis:100%;
        flex-direction:column;
        align-items:flex-start;
        background:#fffdf9;
        border-top:1px solid var(--line);
        margin-top:6px;
        padding:12px 8px;
        gap:2px;
    }

    .nav-menu.open {
        display:flex;
    }

    .nav-menu li {
        width:100%;
    }

    .nav-menu li a {
        width:100%;
        padding:13px 16px;
        border-radius:8px;
    }

    .nav-menu li a.active {
        box-shadow:inset 3px 0 0 var(--brass);
    }

    .nav-toggle {
        display:inline-flex;
    }

    .btn-nav-cta {
        margin-left:auto;
    }

    .related-cards {
        grid-template-columns:1fr 1fr;
    }

    .cta-band {
        padding:52px 28px;
    }
}

@media (max-width:767.98px) {
    .site-header {
        padding:10px 12px 6px;
    }

    .nav-panel {
        padding:8px 10px;
        border-radius:14px;
        gap:8px;
    }

    .logo-text {
        font-size:15px;
    }

    .logo-mark {
        width:32px;
        height:32px;
        font-size:15px;
    }

    .btn-nav-cta {
        padding:10px 14px;
        font-size:13px;
    }

    .article-panel {
        padding:24px 18px;
        border-radius:16px;
        margin-bottom:40px;
    }

    .article-title {
        font-size:28px;
    }

    .article-meta-row {
        gap:8px 14px;
    }

    .article-divider {
        margin:36px 0;
    }

    .related-cards {
        grid-template-columns:1fr;
        gap:16px;
    }

    .cta-band {
        margin:32px 0 48px;
        padding:44px 20px;
        border-radius:18px;
    }

    .cta-actions {
        flex-direction:column;
        align-items:stretch;
    }

    .cta-actions .button,
    .cta-actions .link-light {
        justify-content:center;
        text-align:center;
    }

    .footer-main {
        grid-template-columns:1fr;
        gap:32px;
        padding-bottom:32px;
    }

    .footer-bottom {
        flex-direction:column;
        padding:18px 0;
    }

    .breadcrumb-wrap .current {
        max-width:200px;
    }
}

@media (max-width:575.98px) {
    .site-main {
        padding:20px 0 60px;
    }

    .nav-menu {
        border-radius:10px;
    }

    .cta-band h2 {
        font-size:25px;
    }

    .cta-band p {
        font-size:15px;
    }
}

/* roulang page: category1 */
:root {
            --green-900: #0A3029;
            --green-700: #145047;
            --green-100: #DCE4DC;
            --bronze: #B8874A;
            --bronze-light: #D6AC74;
            --red: #A63A2B;
            --cream: #F5F2EC;
            --beige: #F1ECE2;
            --line: #E1DAD0;
            --text: #1F2A27;
            --muted: #5C6F68;
            --white: #FFFFFF;
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-sm: 6px;
            --shadow-card: 0 1px 0 rgba(10, 48, 41, 0.04), 0 8px 24px rgba(10, 48, 41, 0.06);
            --shadow-hover: 0 16px 32px rgba(10, 48, 41, 0.08);
            --container-w: 1280px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            background: var(--cream);
            color: var(--text);
            font-size: 16px;
            line-height: 1.8;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        a:hover {
            color: var(--bronze);
        }

        button,
        input {
            font-family: inherit;
        }

        ul,
        ol,
        dl,
        p {
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: var(--container-w);
            padding-left: 24px;
            padding-right: 24px;
        }

        .section {
            padding: 96px 0;
        }

        /* Header nav panel */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1040;
            padding: 14px 24px;
            background: var(--cream);
        }

        .nav-panel {
            display: flex;
            align-items: center;
            gap: 14px;
            max-width: calc(var(--container-w) + 48px);
            margin: 0 auto;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            flex-wrap: wrap;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--green-900);
            font-weight: 700;
            font-size: 19px;
            line-height: 1.25;
            white-space: nowrap;
        }

        .brand-logo .logo-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            flex: 0 0 40px;
            border: 1px solid var(--bronze);
            border-radius: 8px;
            color: var(--bronze);
            font-size: 20px;
            line-height: 1;
            letter-spacing: 0;
            background: rgba(184, 135, 74, 0.08);
        }

        .brand-logo .logo-text {
            display: inline;
            color: var(--green-900);
        }

        .brand-logo .logo-text strong {
            font-weight: 800;
            color: var(--green-900);
        }

        .nav-panel .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0 auto;
            padding: 0;
            list-style: none;
        }

        .nav-panel .nav-menu a {
            display: inline-flex;
            align-items: center;
            padding: 9px 15px;
            border: 1px solid transparent;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            transition: all 0.2s ease;
        }

        .nav-panel .nav-menu a:hover {
            background: var(--green-100);
            color: var(--green-900);
            border-color: rgba(10, 48, 41, 0.08);
        }

        .nav-panel .nav-menu a.active {
            background: var(--green-900);
            border-color: var(--green-900);
            color: var(--cream);
            font-weight: 600;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0 22px;
            background: var(--bronze);
            color: #ffffff;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.2s ease;
        }

        .btn-nav-cta:hover {
            background: #ca9a5c;
            color: #ffffff;
            transform: translateY(-1px);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            padding: 0;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #ffffff;
            cursor: pointer;
        }

        .nav-toggle .nav-bar {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--green-900);
            border-radius: 2px;
            transition: all 0.2s ease;
        }

        /* Category hero */
        .category-banner {
            position: relative;
            padding: 72px 0;
            background: var(--green-900);
            color: #F5F2EC;
            overflow: hidden;
        }

        .category-banner::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.16;
            z-index: 0;
        }

        .category-banner::after {
            content: "";
            position: absolute;
            top: -80px;
            right: -80px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(184, 135, 74, 0.18), rgba(10, 48, 41, 0));
            z-index: 0;
        }

        .category-banner .container {
            position: relative;
            z-index: 2;
        }

        .category-banner .row {
            align-items: stretch;
        }

        .banner-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-crumb {
            font-size: 13px;
            letter-spacing: 0.03em;
            color: rgba(220, 228, 220, 0.72);
            margin-bottom: 26px;
        }

        .hero-crumb a {
            color: var(--bronze-light);
        }

        .hero-crumb a:hover {
            color: #ffffff;
        }

        .cat-hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--bronze-light);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .cat-hero-kicker::before {
            content: "";
            width: 24px;
            height: 1px;
            background: var(--bronze);
        }

        .cat-h1 {
            margin: 0 0 18px;
            font-size: 56px;
            font-weight: 800;
            line-height: 1.18;
            color: #ffffff;
            letter-spacing: 0.02em;
        }

        .cat-lead {
            max-width: 680px;
            font-size: 17px;
            line-height: 1.9;
            color: rgba(220, 228, 220, 0.9);
            margin-bottom: 26px;
        }

        .cat-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .cat-meta-row .tag-chip {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            border: 1px solid rgba(184, 135, 74, 0.3);
            border-radius: 6px;
            font-size: 13px;
            color: rgba(245, 242, 236, 0.9);
            background: rgba(10, 48, 41, 0.25);
        }

        .btn-primary-dark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            padding: 0 28px;
            background: var(--bronze);
            color: #ffffff;
            font-weight: 600;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
            border: 1px solid var(--bronze);
        }

        .btn-primary-dark:hover {
            background: #ca9a5c;
            border-color: #ca9a5c;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            padding: 0 28px;
            background: transparent;
            color: var(--cream);
            font-weight: 600;
            border: 1px solid rgba(220, 228, 220, 0.4);
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
        }

        .btn-outline-light:hover {
            border-color: var(--bronze);
            color: var(--bronze-light);
            background: rgba(184, 135, 74, 0.08);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        /* Aside */
        .banner-aside {
            padding: 24px;
            border: 1px solid rgba(184, 135, 74, 0.28);
            border-radius: var(--radius-lg);
            background: rgba(245, 242, 236, 0.06);
            backdrop-filter: blur(6px);
            height: 100%;
        }

        .banner-aside .aside-title {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--bronze-light);
            border-bottom: 1px solid rgba(184, 135, 74, 0.2);
            padding-bottom: 10px;
            margin-bottom: 18px;
        }

        .aside-facts {
            display: grid;
            grid-template-columns: auto 1fr;
            column-gap: 18px;
            row-gap: 14px;
        }

        .aside-facts dt {
            font-size: 14px;
            color: rgba(220, 228, 220, 0.72);
            white-space: nowrap;
        }

        .aside-facts dd {
            font-size: 14px;
            color: #ffffff;
            text-align: right;
        }

        /* Section head */
        .section-head {
            display: flex;
            align-items: flex-end;
            gap: 22px;
            margin-bottom: 48px;
        }

        .section-head .section-index {
            font-family: Georgia, "Times New Roman", serif;
            color: var(--bronze);
            font-size: 14px;
            border: 1px solid rgba(184, 135, 74, 0.45);
            padding: 3px 11px;
            border-radius: 5px;
            line-height: 1.4;
            flex: 0 0 auto;
        }

        .section-head h2 {
            margin: 0;
            font-size: 32px;
            font-weight: 700;
            color: var(--green-900);
        }

        .section-head .section-desc {
            max-width: 600px;
            color: var(--muted);
            margin-top: 6px;
            font-size: 15px;
        }

        /* Service cards */
        .svc-section {
            background: #ECECE3;
        }

        .svc-card {
            position: relative;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 32px 26px 28px;
            height: 100%;
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .svc-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 24px;
            bottom: 24px;
            width: 2px;
            background: var(--bronze);
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .svc-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .svc-card:hover::before {
            opacity: 1;
        }

        .svc-num {
            display: block;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 15px;
            color: var(--bronze);
            margin-bottom: 18px;
        }

        .svc-icon {
            display: inline-flex;
            width: 46px;
            height: 46px;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-bottom: 22px;
            background: var(--green-100);
            color: var(--green-900);
        }

        .svc-icon svg {
            width: 23px;
            height: 23px;
        }

        .svc-card h3 {
            margin: 0 0 12px;
            font-size: 19px;
            font-weight: 700;
            color: var(--green-900);
        }

        .svc-card p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8;
        }

        /* Scene gallery */
        .scene-section {
            background: var(--cream);
        }

        .scene-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .scene-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .scene-img {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: var(--green-100);
        }

        .scene-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .scene-card:hover .scene-img img {
            transform: scale(1.03);
        }

        .scene-tag {
            position: absolute;
            left: 16px;
            bottom: 16px;
            padding: 6px 13px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            color: #ffffff;
            background: rgba(10, 48, 41, 0.82);
            backdrop-filter: blur(4px);
        }

        .scene-body {
            padding: 24px;
        }

        .scene-body h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--green-900);
            margin: 0 0 10px;
        }

        .scene-body p {
            font-size: 14px;
            color: var(--muted);
            margin: 0;
        }

        /* Detail section */
        .detail-section {
            background: #EAE7DF;
        }

        .detail-side {
            padding-right: 28px;
        }

        .detail-side h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--green-900);
            margin: 0 0 18px;
        }

        .detail-side p {
            color: var(--muted);
            font-size: 15px;
            margin-bottom: 18px;
            max-width: 360px;
        }

        .detail-side .side-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--bronze);
            border: 1px solid rgba(184, 135, 74, 0.4);
            padding: 8px 15px;
            border-radius: 6px;
        }

        .detail-panel {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }

        .detail-row {
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 22px;
            padding: 20px 26px;
            border-top: 1px solid var(--line);
            align-items: baseline;
        }

        .detail-row:first-child {
            border-top: 0;
        }

        .detail-label {
            color: var(--green-900);
            font-weight: 700;
            font-size: 15px;
        }

        .detail-value {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.85;
        }

        /* Data band */
        .data-band {
            padding: 80px 0;
            background: var(--green-900);
            color: var(--cream);
        }

        .data-band .row {
            align-items: center;
        }

        .data-head h2 {
            font-size: 30px;
            font-weight: 700;
            margin: 0 0 12px;
            color: #ffffff;
        }

        .data-head p {
            color: rgba(220, 228, 220, 0.78);
            max-width: 430px;
            font-size: 15px;
        }

        .data-stat {
            padding: 20px 12px;
            border-left: 1px solid rgba(184, 135, 74, 0.24);
            min-height: 120px;
        }

        .stat-value {
            display: block;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--bronze-light);
            line-height: 1.1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 13px;
            color: rgba(220, 228, 220, 0.78);
        }

        /* FAQ */
        .faq-section {
            background: var(--cream);
        }

        .faq-intro {
            max-width: 380px;
        }

        .faq-intro h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--green-900);
            margin: 0 0 18px;
        }

        .faq-intro p {
            color: var(--muted);
            font-size: 15px;
        }

        .accordion {
            --bs-accordion-bg: transparent;
            --bs-accordion-border-width: 0;
            --bs-accordion-btn-bg: transparent;
            --bs-accordion-active-bg: transparent;
            --bs-accordion-btn-focus-box-shadow: none;
        }

        .accordion-item {
            background: transparent;
            border: 0;
            border-top: 1px solid var(--line);
            padding: 2px 0;
        }

        .accordion-item:last-child {
            border-bottom: 1px solid var(--line);
        }

        .accordion-button {
            padding: 20px 46px 20px 0;
            background: transparent;
            color: var(--green-900);
            font-size: 17px;
            font-weight: 700;
            border: 0;
            box-shadow: none;
            position: relative;
            transition: all 0.2s ease;
        }

        .accordion-button:hover {
            color: var(--bronze);
        }

        .accordion-button:not(.collapsed) {
            color: var(--green-900);
            box-shadow: none;
        }

        .accordion-button::after {
            position: absolute;
            right: 0;
            width: 30px;
            height: 30px;
            background-image: none;
            display: flex;
            align-items: center;
            justify-content: center;
            content: "\FF0B";
            font-size: 20px;
            color: var(--bronze);
            font-weight: 400;
            transform: none;
            border: 1px solid rgba(184, 135, 74, 0.3);
            border-radius: 50%;
        }

        .accordion-button:not(.collapsed)::after {
            content: "\FF0B";
            transform: rotate(45deg);
            color: var(--bronze);
            border-color: var(--bronze);
        }

        .accordion-body {
            padding: 0 44px 22px 0;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.9;
        }

        /* Final CTA */
        .cta-section {
            padding: 0 0 96px;
            background: var(--cream);
        }

        .cta-box {
            position: relative;
            background: var(--green-900);
            border: 1px solid rgba(184, 135, 74, 0.22);
            border-radius: 20px;
            padding: 58px 56px;
            overflow: hidden;
        }

        .cta-box::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(184, 135, 74, 0.05), rgba(10, 48, 41, 0) 70%);
        }

        .cta-box .row {
            position: relative;
            z-index: 1;
            align-items: center;
        }

        .cta-eyebrow {
            display: block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--bronze-light);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .cta-box h2 {
            color: #ffffff;
            font-size: 30px;
            font-weight: 700;
            margin: 0 0 14px;
            line-height: 1.35;
        }

        .cta-box p {
            color: rgba(220, 228, 220, 0.8);
            font-size: 15px;
            max-width: 560px;
        }

        .btn-cta-bronze {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            padding: 0 32px;
            background: var(--bronze);
            color: #ffffff;
            font-weight: 600;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
            margin-right: 10px;
            margin-bottom: 8px;
        }

        .btn-cta-bronze:hover {
            background: #ca9a5c;
            color: #ffffff;
        }

        .btn-cta-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            padding: 0 32px;
            color: var(--cream);
            font-weight: 600;
            border: 1px solid rgba(220, 228, 220, 0.4);
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
            margin-bottom: 8px;
        }

        .btn-cta-outline:hover {
            color: var(--bronze-light);
            border-color: var(--bronze);
            background: rgba(184, 135, 74, 0.1);
        }

        /* Footer */
        .site-footer {
            background: var(--green-900);
            color: rgba(220, 228, 220, 0.82);
            padding: 64px 0 22px;
            border-top: 3px solid var(--bronze);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1.2fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(184, 135, 74, 0.2);
            margin-bottom: 26px;
        }

        .site-footer .brand-logo {
            color: #ffffff;
        }

        .site-footer .brand-logo .logo-text,
        .site-footer .brand-logo .logo-text strong {
            color: #ffffff;
        }

        .site-footer .brand-logo .logo-mark {
            border-color: rgba(184, 135, 74, 0.65);
        }

        .footer-brand p {
            margin-top: 18px;
            max-width: 280px;
            font-size: 14px;
            line-height: 1.9;
            color: rgba(220, 228, 220, 0.72);
        }

        .footer-title {
            display: block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--bronze-light);
            margin-bottom: 18px;
        }

        .footer-links a {
            display: inline-block;
            padding: 6px 0;
            color: rgba(220, 228, 220, 0.85);
            font-size: 15px;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--bronze-light);
        }

        .footer-contact p {
            font-size: 15px;
            line-height: 1.9;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 13px;
            color: rgba(220, 228, 220, 0.55);
        }

        /* Responsive */
        @media (max-width: 1199.98px) {
            .stat-value {
                font-size: 34px;
            }
        }

        @media (max-width: 991.98px) {
            .section {
                padding: 72px 0;
            }

            .nav-panel {
                gap: 10px;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: calc(100% + 12px);
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                gap: 6px;
                background: #ffffff;
                border: 1px solid var(--line);
                border-radius: var(--radius-lg);
                box-shadow: var(--shadow-hover);
                padding: 14px;
                z-index: 50;
            }

            .nav-menu.open {
                display: flex !important;
            }

            .nav-menu a {
                width: 100%;
            }

            .nav-toggle {
                display: inline-flex;
            }

            .nav-panel .nav-actions {
                margin-left: auto;
            }

            .nav-panel .nav-menu li {
                width: 100%;
            }

            .category-banner {
                padding: 60px 0;
            }

            .banner-aside {
                margin-top: 24px;
            }

            .cat-h1 {
                font-size: 44px;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }

            .detail-side {
                padding-right: 0;
                margin-bottom: 28px;
            }
        }

        @media (max-width: 767.98px) {
            body {
                font-size: 15px;
            }

            .site-header {
                padding: 10px 14px;
            }

            .nav-panel {
                padding: 10px 12px;
            }

            .brand-logo {
                font-size: 16px;
            }

            .brand-logo .logo-mark {
                width: 36px;
                height: 36px;
                flex: 0 0 36px;
                font-size: 18px;
            }

            .btn-nav-cta {
                min-height: 38px;
                padding: 0 14px;
                font-size: 13px;
            }

            .section {
                padding: 52px 0;
            }

            .container {
                padding-left: 20px;
                padding-right: 20px;
            }

            .category-banner {
                padding: 44px 0;
            }

            .cat-h1 {
                font-size: 40px;
            }

            .cat-lead {
                font-size: 16px;
            }

            .section-head {
                display: block;
                margin-bottom: 32px;
            }

            .section-head .section-index {
                margin-bottom: 12px;
                display: inline-block;
            }

            .section-head h2 {
                font-size: 28px;
                margin-top: 4px;
            }

            .section-head .section-desc {
                margin-top: 8px;
            }

            .cta-box {
                padding: 32px 24px;
            }

            .cta-box h2 {
                font-size: 24px;
            }

            .stat-value {
                font-size: 30px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
                padding-bottom: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 575.98px) {
            .cat-h1 {
                font-size: 36px;
                letter-spacing: 0;
            }

            .cat-lead {
                font-size: 15px;
            }

            .btn-nav-cta {
                display: none;
            }

            .nav-toggle {
                width: 40px;
                height: 40px;
            }

            .detail-row {
                grid-template-columns: 1fr;
                gap: 6px;
                padding: 18px 22px;
            }

            .detail-label {
                font-size: 14px;
            }

            .detail-value {
                font-size: 14px;
            }

            .btn-cta-bronze,
            .btn-cta-outline {
                width: 100%;
                margin-right: 0;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #0A3029;
            --primary-dark: #07241F;
            --accent: #B8874A;
            --accent-light: #D2A36B;
            --bg-soft: #DCE4DC;
            --bg-cream: #F5F2EC;
            --surface: #FFFFFF;
            --text-main: #1F2A27;
            --text-muted: #5C6F68;
            --border-line: #E1DAD0;
            --line-gold: rgba(184, 135, 74, 0.35);
            --danger: #A63A2B;
            --radius-lg: 16px;
            --radius-sm: 6px;
            --shadow-card: 0 1px 0 rgba(10,48,41,0.04), 0 8px 24px rgba(10,48,41,0.06);
            --shadow-hover: 0 16px 32px rgba(10,48,41,0.10);
            --ease: 200ms ease;
            --font-main: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
        }
        * {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-main);
            background-color: var(--bg-cream);
        }
        h1, h2, h3, h4, p, ul, ol {
            margin: 0;
        }
        ul, ol {
            padding: 0;
            list-style: none;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--ease), border-color var(--ease), background-color var(--ease), box-shadow var(--ease), transform var(--ease);
        }
        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }
        button {
            border: none;
            background: none;
            font-family: inherit;
        }
        :focus-visible {
            outline: 3px solid rgba(184,135,74,0.55);
            outline-offset: 2px;
            border-radius: 4px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 42px;
            padding-right: 42px;
        }
        section {
            padding: 96px 0;
        }
        .site-header {
            background: var(--bg-cream);
            padding: 22px 0 6px;
            position: sticky;
            top: 0;
            z-index: 1090;
        }
        .nav-panel {
            background: var(--surface);
            border: 1px solid var(--border-line);
            border-top: 3px solid var(--accent);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 12px 20px;
        }
        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            font-weight: 600;
            color: var(--primary);
        }
        .logo-mark {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--primary);
            color: var(--accent-light);
            font-size: 20px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(184,135,74,0.5);
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 17px;
            letter-spacing: 0.02em;
        }
        .logo-text strong {
            font-weight: 800;
            color: var(--accent);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-left: 18px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            display: inline-block;
            padding: 9px 16px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
            border: 1px solid transparent;
        }
        .nav-menu a:hover {
            background: var(--bg-soft);
            color: var(--primary);
            border-color: var(--border-line);
        }
        .nav-menu a.active {
            background: var(--primary);
            color: #FFF9F0;
            border-color: var(--primary);
            box-shadow: 0 6px 14px rgba(10,48,41,0.16);
        }
        .nav-actions {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: #FFF9F0;
            font-weight: 700;
            font-size: 15px;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            border: 1px solid transparent;
            min-height: 44px;
            transition: all var(--ease);
            box-shadow: 0 4px 12px rgba(184,135,74,0.20);
        }
        .btn-nav-cta:hover {
            background: var(--accent-light);
            color: #FFF;
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(184,135,74,0.30);
        }
        .nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid var(--border-line);
            border-radius: 8px;
            background: var(--surface);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        .nav-toggle .nav-bar {
            width: 20px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: all .2s ease;
        }
        .nav-toggle.open .nav-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .nav-toggle.open .nav-bar:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.open .nav-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .page-hero {
            background-color: var(--primary);
            background-image: linear-gradient(90deg, rgba(10,48,41,0.96), rgba(10,48,41,0.72)), url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center;
            padding-top: 68px;
            padding-bottom: 76px;
            color: #F5F2EC;
            position: relative;
            overflow: hidden;
            border-radius: 0 0 32px 32px;
        }
        .page-hero .breadcrumb-custom {
            display: flex;
            gap: 8px;
            font-size: 13px;
            color: rgba(245,242,236,0.7);
            letter-spacing: .02em;
            margin-bottom: 26px;
        }
        .page-hero .breadcrumb-custom a:hover {
            color: var(--accent-light);
        }
        .page-hero .breadcrumb-custom span {
            color: rgba(245,242,236,0.5);
        }
        .hero-title {
            font-size: clamp(38px, 6vw, 64px);
            font-weight: 800;
            letter-spacing: 0.02em;
            line-height: 1.16;
            margin-bottom: 20px;
            color: #FFF9F0;
        }
        .hero-title em {
            font-style: normal;
            color: var(--accent-light);
        }
        .hero-lead {
            max-width: 640px;
            font-size: 17px;
            line-height: 1.9;
            color: rgba(245,242,236,0.88);
            margin-bottom: 36px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 28px;
        }
        .hero-meta .meta-pill {
            border: 1px solid rgba(245,242,236,0.18);
            background: rgba(255,255,255,0.06);
            padding: 8px 14px;
            border-radius: 40px;
            font-size: 13px;
            color: rgba(245,242,236,0.78);
        }
        .hero-meta .meta-pill i {
            font-style: normal;
            color: var(--accent-light);
            margin-right: 5px;
        }
        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn-solid {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            background: var(--accent);
            color: #FFF;
            font-weight: 700;
            font-size: 15px;
            border: 1px solid transparent;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .btn-solid:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(184,135,74,0.28);
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 12px 26px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(245,242,236,0.6);
            color: #F5F2EC;
            font-weight: 600;
            font-size: 15px;
            background: transparent;
        }
        .btn-ghost:hover {
            border-color: var(--accent-light);
            color: var(--accent-light);
        }
        .hero-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: 20px;
            backdrop-filter: blur(4px);
            overflow: hidden;
            box-shadow: 0 20px 42px rgba(0,0,0,0.18);
            margin-top: 30px;
        }
        .hero-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .hero-card-body {
            padding: 25px;
            color: #F5F2EC;
        }
        .hero-card-body .status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-light);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .hero-card-body .status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #60C39A;
            border-radius: 50%;
            box-shadow: 0 0 0 3px rgba(96,195,154,0.24);
        }
        .hero-card-body h3 {
            font-size: 22px;
            margin-bottom: 8px;
            font-weight: 700;
        }
        .hero-card-body p {
            font-size: 15px;
            color: rgba(245,242,236,0.76);
        }
        .schedule-section {
            background: var(--surface);
            border-radius: 36px;
            margin: -22px 24px 0;
            position: relative;
            z-index: 3;
            padding: 80px 52px;
            box-shadow: var(--shadow-card);
        }
        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 42px;
        }
        .section-sub {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 6px;
        }
        .section-h2 {
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 700;
            color: var(--primary);
            line-height: 1.3;
        }
        .section-desc {
            max-width: 400px;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.9;
        }
        .timeline-position {
            position: relative;
            padding-left: 40px;
        }
        .timeline-position::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 4px;
            bottom: 4px;
            width: 2px;
            background: linear-gradient(180deg, var(--accent), var(--bg-soft));
        }
        .timeline-row {
            position: relative;
            display: grid;
            grid-template-columns: 170px 300px 1fr;
            gap: 14px;
            align-items: baseline;
            padding: 20px 0;
            border-bottom: 1px dashed var(--border-line);
        }
        .timeline-row:last-child {
            border-bottom: none;
        }
        .timeline-row::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 25px;
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: var(--surface);
            border: 3px solid var(--accent);
            box-shadow: 0 0 0 4px rgba(184,135,74,0.15);
        }
        .time-badge {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.02em;
            font-family: Georgia, "Times New Roman", serif;
            white-space: nowrap;
        }
        .timeline-project {
            font-weight: 600;
            color: var(--text-main);
            font-size: 17px;
        }
        .timeline-project small {
            display: block;
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 400;
            margin-top: 2px;
            line-height: 1.6;
        }
        .timeline-note {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 14px;
            color: var(--text-muted);
        }
        .badge-status {
            display: inline-flex;
            padding: 4px 12px;
            border-radius: 20px;
            background: var(--bg-soft);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .01em;
        }
        .badge-status.hot {
            background: rgba(166,58,43,0.10);
            color: var(--danger);
        }
        .badge-status.open {
            background: rgba(10,48,41,0.08);
            color: var(--primary);
        }
        .venue-section {
            background: transparent;
            padding-top: 40px;
            padding-bottom: 24px;
        }
        .venue-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .venue-card {
            border-radius: var(--radius-lg);
            background: var(--surface);
            border: 1px solid var(--border-line);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
            height: 100%;
        }
        .venue-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(184,135,74,0.45);
        }
        .venue-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 500ms ease;
        }
        .venue-card:hover img {
            transform: scale(1.03);
        }
        .venue-card-body {
            padding: 22px 20px 24px;
        }
        .venue-card h3 {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--primary);
        }
        .venue-card p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 16px;
            line-height: 1.75;
        }
        .venue-card-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .venue-card-tags span {
            font-size: 12px;
            color: var(--text-muted);
            background: var(--bg-cream);
            padding: 4px 10px;
            border-radius: 6px;
            border: 1px solid var(--border-line);
        }
        .rule-section {
            background: var(--bg-soft);
            border-radius: 28px;
            color: var(--text-main);
            margin: 40px auto;
            overflow: hidden;
        }
        .rule-section .row {
            align-items: stretch;
        }
        .rule-col {
            padding: 64px 44px;
        }
        .rule-col .section-h2 {
            margin-bottom: 16px;
        }
        .rule-list li {
            display: flex;
            gap: 15px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255,255,255,0.45);
            font-size: 15px;
            color: var(--text-main);
            line-height: 1.8;
        }
        .rule-list li:last-child {
            border-bottom: none;
        }
        .rule-list span {
            color: var(--accent);
            font-weight: 800;
            font-size: 22px;
            font-family: Georgia, serif;
            min-width: 26px;
        }
        .rule-note {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.9;
        }
        .flow-section {
            padding: 50px 0 90px;
        }
        .flow-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            margin-top: 40px;
        }
        .flow-step {
            position: relative;
            background: var(--surface);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-lg);
            padding: 36px 24px 28px;
            box-shadow: var(--shadow-card);
        }
        .flow-step::after {
            content: '';
            position: absolute;
            top: 42px;
            right: -18px;
            width: 16px;
            height: 2px;
            background: var(--accent);
            opacity: 0.7;
        }
        .flow-step:last-child::after {
            display: none;
        }
        .step-num {
            color: var(--accent);
            font-family: Georgia, serif;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.1em;
        }
        .flow-step h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin: 12px 0 8px;
        }
        .flow-step p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
        }
        .faq-section {
            background: var(--primary);
            color: #F5F2EC;
            border-radius: 0;
            padding: 90px 0;
        }
        .faq-section .section-h2 {
            color: #FFF9F0;
        }
        .faq-section .section-sub {
            color: var(--accent-light);
        }
        .faq-panel {
            max-width: 860px;
            margin: 0 auto;
            background: rgba(255,255,255,0.05);
            border-radius: 22px;
            padding: 34px;
            border: 1px solid rgba(184,135,74,0.2);
        }
        .accordion-item {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.14) !important;
            border-radius: 0 !important;
        }
        .accordion-button {
            background: transparent;
            color: #F5F2EC;
            font-size: 17px;
            font-weight: 600;
            padding: 22px 10px;
            box-shadow: none;
            border-radius: 0 !important;
            line-height: 1.6;
            transition: color .2s ease;
        }
        .accordion-button::after {
            background-image: none !important;
            content: '+';
            font-size: 30px;
            font-weight: 300;
            color: var(--accent-light);
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: rotate(0deg);
            transition: transform .2s ease;
            font-family: sans-serif;
        }
        .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
            color: var(--accent-light);
        }
        .accordion-button:not(.collapsed) {
            background: transparent;
            color: var(--accent-light);
            box-shadow: none;
        }
        .accordion-button:hover {
            background: rgba(255,255,255,0.02);
        }
        .accordion-body {
            color: rgba(245,242,236,0.78);
            font-size: 15px;
            line-height: 1.9;
            padding: 0 42px 24px 10px;
        }
        .booking-cta {
            padding: 90px 0;
            background: var(--bg-cream);
        }
        .booking-cta-card {
            background: var(--surface);
            border: 1px solid var(--border-line);
            border-radius: 24px;
            padding: 58px;
            box-shadow: var(--shadow-card);
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 44px;
            align-items: center;
            position: relative;
        }
        .booking-cta-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 58px;
            right: 58px;
            height: 4px;
            background: var(--accent);
            border-radius: 0 0 6px 6px;
        }
        .booking-cta-card h2 {
            font-size: 30px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 14px;
            line-height: 1.4;
        }
        .booking-cta-card p {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.9;
            max-width: 620px;
        }
        .booking-cta-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-primary-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: #FFF;
            font-weight: 700;
            font-size: 16px;
            min-height: 54px;
            padding: 12px 32px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--primary);
            transition: all var(--ease);
        }
        .btn-primary-link:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(10,48,41,0.16);
            border-color: var(--accent);
        }
        .site-footer {
            background: var(--primary-dark);
            color: rgba(245,242,236,0.85);
            padding: 70px 0 30px;
        }
        .site-footer .brand-logo {
            color: #FFF9F0;
            margin-bottom: 18px;
        }
        .site-footer p {
            font-size: 14px;
            line-height: 1.9;
            color: rgba(245,242,236,0.62);
        }
        .footer-main {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(184,135,74,0.30);
        }
        .footer-title {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: #F5F2EC;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }
        .footer-links a {
            color: rgba(245,242,236,0.8);
            font-size: 14px;
            position: relative;
            padding: 2px 0;
        }
        .footer-links a:hover {
            color: var(--accent-light);
        }
        .footer-links a:hover::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 22px;
            height: 1px;
            background: var(--accent-light);
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            padding-top: 24px;
            font-size: 13px;
            color: rgba(245,242,236,0.42);
        }
        @media (max-width: 991px) {
            .container {
                padding-left: 24px;
                padding-right: 24px;
            }
            section {
                padding: 70px 0;
            }
            .venue-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .flow-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .timeline-row {
                grid-template-columns: 150px 250px 1fr;
            }
            .schedule-section {
                margin: -20px 12px 0;
                padding: 50px 30px;
            }
            .booking-cta-card {
                padding: 40px;
                grid-template-columns: 1fr;
            }
            .booking-cta-actions {
                justify-content: flex-start;
            }
            .site-footer .footer-main {
                gap: 40px;
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 767px) {
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }
            section {
                padding: 56px 0;
            }
            .nav-panel {
                padding: 10px 14px;
                flex-wrap: wrap;
                gap: 10px;
            }
            .brand-logo {
                margin-right: 0;
            }
            .nav-toggle {
                display: flex;
                margin-left: auto;
            }
            .nav-actions {
                margin-left: 0;
            }
            .nav-menu {
                width: 100%;
                height: 0;
                visibility: hidden;
                opacity: 0;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 0;
                overflow: hidden;
                transition: all 0.3s ease;
            }
            .nav-menu.open {
                height: auto;
                visibility: visible;
                opacity: 1;
                padding: 14px 4px;
                border-top: 1px solid var(--border-line);
                margin-top: 10px;
            }
            .nav-menu a {
                width: 100%;
                min-height: 44px;
                display: flex;
                align-items: center;
            }
            .nav-menu a.active {
                background: transparent;
                color: var(--accent);
                border-left: 3px solid var(--accent);
                border-radius: 0;
                padding-left: 14px;
            }
            .btn-nav-cta {
                display: none;
            }
            .page-hero {
                padding-top: 46px;
                padding-bottom: 52px;
                border-radius: 0 0 24px 24px;
            }
            .hero-cta-group .btn-solid, .hero-cta-group .btn-ghost {
                width: 100%;
            }
            .hero-card img {
                height: 220px;
            }
            .schedule-section {
                margin: -18px 0 0;
                padding: 44px 18px;
                border-radius: 0;
            }
            .timeline-position {
                padding-left: 24px;
            }
            .timeline-position::before {
                left: 6px;
            }
            .timeline-row {
                grid-template-columns: 1fr;
                gap: 8px;
                padding: 18px 0;
            }
            .timeline-row::before {
                left: -20px;
                top: 20px;
            }
            .venue-section {
                padding-top: 10px;
            }
            .venue-grid {
                grid-template-columns: 1fr;
            }
            .flow-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .flow-step::after {
                display: none;
            }
            .rule-section {
                margin: 20px 0 0;
                border-radius: 14px;
            }
            .rule-col {
                padding: 36px 22px;
            }
            .faq-section {
                padding: 60px 0;
            }
            .faq-panel {
                padding: 20px;
            }
            .accordion-button {
                padding: 18px 8px;
                font-size: 16px;
            }
            .booking-cta {
                padding: 50px 0;
            }
            .booking-cta-card {
                padding: 36px 24px;
            }
            .booking-cta-card::before {
                left: 24px;
                right: 24px;
            }
            .booking-cta-card h2 {
                font-size: 25px;
            }
            .site-footer {
                padding: 50px 0 26px;
            }
            .footer-main {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .footer-bottom {
                font-size: 12px;
            }
        }
        @media (max-width: 520px) {
            .section-h2 {
                font-size: 26px;
            }
            .brand-logo .logo-text {
                font-size: 15px;
            }
            .logo-mark {
                width: 36px;
                height: 36px;
                font-size: 17px;
            }
        }

/* roulang page: category3 */
:root {
            --deep: #0A3029;
            --deep-2: #123C34;
            --copper: #B8874A;
            --copper-light: #C79A5F;
            --sage: #DCE4DC;
            --bg: #F5F2EC;
            --panel: #FFFFFF;
            --text: #1F2A27;
            --text-weak: #5C6F68;
            --line: #E1DAD0;
            --line-deep: rgba(184, 135, 74, .25);
            --red: #A63A2B;
            --radius: 16px;
            --radius-sm: 6px;
            --shadow-sm: 0 1px 0 rgba(10, 48, 41, .04), 0 8px 24px rgba(10, 48, 41, .06);
            --shadow-md: 0 16px 32px rgba(10, 48, 41, .08);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            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 .2s ease, background .2s ease, border .2s ease;
        }

        a:hover {
            color: var(--copper);
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }

        .container {
            max-width: 1280px;
            padding-left: clamp(20px, 4vw, 48px);
            padding-right: clamp(20px, 4vw, 48px);
        }

        .section-pad {
            padding: 96px 0;
        }

        .bg-panel {
            background: var(--panel);
        }

        .bg-forest {
            background: var(--deep);
            color: #F5F2EC;
        }

        .bg-sage {
            background: var(--sage);
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--copper);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-tag::before {
            content: "";
            width: 24px;
            height: 1px;
            background: var(--copper);
        }

        .section-title {
            font-size: clamp(28px, 3vw, 36px);
            font-weight: 700;
            line-height: 1.25;
            color: var(--deep);
            margin: 0 0 18px;
            letter-spacing: -.02em;
        }

        .section-lead {
            font-size: 16px;
            color: var(--text-weak);
            max-width: 720px;
            margin: 0 0 34px;
        }

        .bg-forest .section-title {
            color: #F5F2EC;
        }

        .bg-forest .section-lead {
            color: rgba(245, 242, 236, .72);
        }

        .section-head {
            margin-bottom: 48px;
        }

        /* 顶部导航 */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1040;
            padding: 14px 0 10px;
            background: rgba(245, 242, 236, .82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .nav-panel {
            max-width: 1280px;
            margin: 0 auto;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            background: #fff;
            border-top: 3px solid var(--copper);
            border-radius: var(--radius-sm) var(--radius-sm) var(--radius) var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-mark {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            background: var(--deep);
            color: #F5F2EC;
            font-size: 20px;
            font-weight: 700;
            border-radius: var(--radius-sm);
            line-height: 1;
            letter-spacing: 0;
        }

        .logo-text {
            display: block;
            font-size: 20px;
            font-weight: 700;
            color: var(--deep);
            line-height: 1.25;
            letter-spacing: -.01em;
        }

        .logo-text strong {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--copper);
            letter-spacing: .1em;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0 0 0 auto;
            padding: 0;
        }

        .nav-menu a {
            display: inline-block;
            padding: 8px 15px;
            border-radius: var(--radius-sm);
            font-weight: 500;
            color: var(--text);
            font-size: 15px;
            white-space: nowrap;
            transition: all .2s ease;
        }

        .nav-menu a:hover {
            background: var(--sage);
            color: var(--deep);
        }

        .nav-menu a.active {
            background: var(--deep);
            color: #F5F2EC;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            background: var(--copper);
            color: #fff;
            padding: 9px 18px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            transition: all .2s ease;
        }

        .btn-nav-cta:hover {
            background: var(--copper-light);
            color: #fff;
            box-shadow: 0 8px 20px rgba(184, 135, 74, .26);
            transform: translateY(-1px);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            background: var(--sage);
            border: 0;
            border-radius: var(--radius-sm);
            padding: 10px 9px;
            cursor: pointer;
        }

        .nav-bar {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--deep);
            border-radius: 2px;
            transition: transform .2s ease, opacity .2s ease;
        }

        .nav-toggle.active .nav-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.active .nav-bar:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active .nav-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Hero */
        .mall-hero {
            position: relative;
            background: var(--deep);
            color: #F5F2EC;
            overflow: hidden;
            padding: 80px 0 90px;
            margin-top: 18px;
            border-radius: 24px 24px 0 0;
        }

        .mall-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center right;
            opacity: .25;
        }

        .mall-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(10, 48, 41, .98) 0%, rgba(10, 48, 41, .84) 55%, rgba(10, 48, 41, .58) 100%);
        }

        .mall-hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .16em;
            color: var(--copper-light);
            margin-bottom: 18px;
            text-transform: uppercase;
        }

        .hero-kicker::after {
            content: "";
            width: 38px;
            height: 1px;
            background: var(--copper);
        }

        .hero-title {
            font-size: clamp(44px, 6vw, 72px);
            line-height: 1.08;
            font-weight: 700;
            margin: 0 0 22px;
            letter-spacing: -.04em;
            color: #F5F2EC;
        }

        .hero-sub {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(245, 242, 236, .76);
            max-width: 550px;
            margin-bottom: 30px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn-copper,
        .btn-outline-light,
        .btn-ghost-white {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 13px 26px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 15px;
            transition: all .2s ease;
        }

        .btn-copper {
            background: var(--copper);
            color: #fff;
            border: 1px solid transparent;
        }

        .btn-copper:hover {
            background: var(--copper-light);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(184, 135, 74, .28);
        }

        .btn-outline-light {
            border: 1px solid rgba(245, 242, 236, .5);
            color: #F5F2EC;
            background: transparent;
        }

        .btn-outline-light:hover {
            border-color: var(--copper);
            color: var(--copper-light);
        }

        .btn-ghost-white {
            border: 1px solid rgba(255, 255, 255, .5);
            color: rgba(255, 255, 255, .85);
            background: transparent;
        }

        .btn-ghost-white:hover {
            border-color: var(--copper);
            color: var(--copper-light);
        }

        .hero-panel {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(184, 135, 74, .3);
            backdrop-filter: blur(8px);
            border-radius: var(--radius);
            padding: 24px;
            margin-left: auto;
        }

        .hero-panel-title {
            font-size: 14px;
            font-weight: 600;
            color: rgba(245, 242, 236, .66);
            letter-spacing: .04em;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(184, 135, 74, .22);
            margin-bottom: 18px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .hero-stat {
            padding: 14px;
            border-radius: 10px;
            background: rgba(10, 48, 41, .42);
            border: 1px solid rgba(245, 242, 236, .06);
        }

        .hero-stat .num {
            font-size: 32px;
            font-weight: 700;
            font-family: Georgia, "Times New Roman", serif;
            color: #F5F2EC;
            line-height: 1.1;
        }

        .hero-stat .num small {
            font-size: 15px;
            color: var(--copper-light);
        }

        .hero-stat .label {
            font-size: 13px;
            color: rgba(245, 242, 236, .62);
            margin-top: 4px;
        }

        .hero-stats .stat-copper .num {
            color: var(--copper-light);
        }

        /* 购前准则 */
        .feature-card {
            height: 100%;
            background: var(--panel);
            padding: 28px 24px;
            border-radius: var(--radius);
            border: 1px solid rgba(225, 218, 208, .7);
            box-shadow: var(--shadow-sm);
            transition: all .2s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: rgba(184, 135, 74, .3);
        }

        .feature-index {
            display: inline-flex;
            align-items: center;
            font-family: Georgia, serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--copper);
            width: 46px;
            height: 46px;
            background: var(--bg);
            border: 1px solid var(--line);
            border-radius: 10px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 19px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--deep);
        }

        .feature-card p {
            font-size: 15px;
            color: var(--text-weak);
            margin: 0;
            line-height: 1.75;
        }

        /* 装备索引 */
        .bg-forest .section-lead {
            color: rgba(245, 242, 236, .7);
        }

        .catalog-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--deep-2);
            height: 100%;
            min-height: 260px;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .catalog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 36px rgba(0, 0, 0, .34);
        }

        .catalog-card .media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .catalog-card .media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .45s ease;
        }

        .catalog-card:hover .media img {
            transform: scale(1.05);
        }

        .catalog-card .gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 48, 41, 0) 0%, rgba(10, 48, 41, .25) 42%, rgba(10, 48, 41, .92) 100%);
            z-index: 1;
        }

        .catalog-body {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 26px;
            min-height: 300px;
            color: #F5F2EC;
        }

        .catalog-body .cat-num {
            font-family: Georgia, serif;
            font-size: 15px;
            color: var(--copper-light);
            margin-bottom: 6px;
            letter-spacing: .1em;
        }

        .catalog-body h3 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .catalog-body p {
            font-size: 14px;
            color: rgba(255, 255, 255, .72);
            margin-bottom: 12px;
            line-height: 1.65;
        }

        .catalog-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .catalog-tags span {
            display: inline-block;
            padding: 3px 10px;
            border: 1px solid rgba(255, 255, 255, .35);
            border-radius: 100px;
            font-size: 12px;
            color: rgba(255, 255, 255, .8);
            background: rgba(0, 0, 0, .14);
        }

        /* 精选装备 */
        .pick-card {
            display: flex;
            align-items: center;
            background: var(--panel);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--line);
            margin-bottom: 28px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow .2s ease;
        }

        .pick-card:hover {
            box-shadow: var(--shadow-md);
        }

        .pick-card .pick-img {
            width: 46%;
            min-height: 340px;
            background: var(--bg);
            overflow: hidden;
            position: relative;
        }

        .pick-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pick-info {
            width: 54%;
            padding: 38px 42px;
        }

        .pick-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .08em;
            color: var(--copper);
            border: 1px solid var(--copper);
            border-radius: 100px;
            padding: 4px 12px;
            margin-bottom: 18px;
        }

        .pick-info h3 {
            font-size: 27px;
            font-weight: 700;
            color: var(--deep);
            margin: 0 0 10px;
        }

        .pick-info>p {
            font-size: 15px;
            color: var(--text-weak);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .param-list {
            list-style: none;
            margin: 0 0 28px;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            border-top: 1px solid var(--line);
            padding-top: 18px;
        }

        .param-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--text-weak);
            border-bottom: 1px dashed var(--line);
            padding-bottom: 8px;
        }

        .param-list li strong {
            color: var(--text);
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
        }

        .link-underline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--deep);
            border-bottom: 1px solid transparent;
            transition: all .2s ease;
        }

        .link-underline:hover {
            color: var(--copper);
            border-bottom-color: var(--copper);
        }

        .pick-card.reverse .pick-img {
            order: 2;
        }

        .pick-card.reverse .pick-info {
            order: 1;
        }

        /* 流程 */
        .process-step {
            position: relative;
            padding: 0 14px;
            border-top: 1px solid rgba(184, 135, 74, .3);
            margin-top: 10px;
            padding-top: 32px;
        }

        .process-step::before {
            content: "";
            position: absolute;
            top: -1px;
            left: 14px;
            width: 36px;
            height: 2px;
            background: var(--copper);
        }

        .process-num {
            font-family: Georgia, serif;
            font-size: 34px;
            font-weight: 700;
            color: var(--copper);
            line-height: 1;
            margin-bottom: 18px;
            display: block;
        }

        .process-step h3 {
            font-size: 18px;
            font-weight: 600;
            color: #F5F2EC;
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(245, 242, 236, .65);
            margin: 0;
        }

        /* 服务保障 */
        .assure-card {
            background: var(--panel);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            height: 100%;
        }

        .assure-card .assure-media {
            overflow: hidden;
        }

        .assure-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .assure-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .assure-item {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid var(--line);
        }

        .assure-item:last-child {
            border-bottom: 0;
        }

        .assure-icon {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            display: grid;
            place-items: center;
            border-radius: 10px;
            background: var(--bg);
            color: var(--copper);
            font-weight: 700;
            font-family: Georgia, serif;
            border: 1px solid var(--line);
        }

        .assure-item h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--deep);
            margin-bottom: 4px;
        }

        .assure-item p {
            font-size: 14px;
            color: var(--text-weak);
            margin: 0;
            line-height: 1.7;
        }

        /* FAQ */
        .accordion-item {
            background: transparent;
            border: 0;
            border-bottom: 1px solid var(--line);
            border-radius: 0 !important;
        }

        .accordion-button {
            background: transparent;
            box-shadow: none !important;
            padding: 22px 46px 22px 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--deep);
            border: 0;
            transition: color .2s ease;
        }

        .accordion-button:not(.collapsed) {
            background: transparent;
            color: var(--copper);
        }

        .accordion-button:focus {
            outline: none;
            box-shadow: none;
        }

        .accordion-button::after {
            width: 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            content: "+";
            background-image: none;
            font-size: 22px;
            font-weight: 300;
            color: var(--copper);
            transform: rotate(0deg);
            transition: transform .2s ease;
            position: absolute;
            right: 0;
            top: 50%;
            margin-top: -15px;
            border: 1px solid var(--copper);
            border-radius: 50%;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
            color: var(--copper);
            background-image: none;
        }

        .accordion-body {
            padding: 0 24px 24px 0;
            color: var(--text-weak);
            font-size: 15px;
            line-height: 1.8;
        }

        /* CTA */
        .mall-cta {
            background: var(--deep);
            padding: 90px 0;
            position: relative;
            overflow: hidden;
        }

        .mall-cta::before {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            right: -160px;
            top: -160px;
            border: 1px solid rgba(184, 135, 74, .22);
            border-radius: 50%;
        }

        .mall-cta::after {
            content: "";
            position: absolute;
            width: 360px;
            height: 360px;
            right: -70px;
            top: -70px;
            border: 1px solid rgba(184, 135, 74, .14);
            border-radius: 50%;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .cta-mark {
            font-family: Georgia, serif;
            letter-spacing: .24em;
            font-size: 14px;
            color: var(--copper-light);
            display: block;
            margin-bottom: 14px;
        }

        .cta-inner h2 {
            font-size: clamp(28px, 4vw, 42px);
            color: #fff;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -.02em;
        }

        .cta-inner>p {
            color: rgba(245, 242, 236, .68);
            max-width: 560px;
            margin: 0 auto 30px;
            font-size: 16px;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .cta-note {
            margin-top: 22px;
            font-size: 13px;
            color: rgba(245, 242, 236, .45);
        }

        /* 页脚 */
        .site-footer {
            background: #071F1B;
            color: rgba(245, 242, 236, .72);
            border-top: 1px solid var(--copper);
            padding: 64px 0 26px;
            font-size: 14px;
        }

        .site-footer .container {
            max-width: 1280px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1.2fr;
            gap: 48px;
            padding-bottom: 44px;
            border-bottom: 1px solid rgba(184, 135, 74, .18);
            margin-bottom: 24px;
        }

        .site-footer .brand-logo {
            margin-bottom: 16px;
        }

        .site-footer .logo-mark {
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(184, 135, 74, .4);
            color: #F5F2EC;
        }

        .site-footer .logo-text {
            color: #F5F2EC;
        }

        .footer-brand p {
            color: rgba(245, 242, 236, .58);
            margin: 14px 0 0;
            max-width: 320px;
            font-size: 14px;
            line-height: 1.8;
        }

        .footer-links,
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-title {
            font-size: 14px;
            font-weight: 600;
            color: #F5F2EC;
            margin-bottom: 10px;
            letter-spacing: .04em;
        }

        .footer-links a {
            color: rgba(245, 242, 236, .62);
            width: fit-content;
            transition: color .2s ease;
            position: relative;
            padding-bottom: 2px;
        }

        .footer-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background: var(--copper);
            transition: width .2s ease;
        }

        .footer-links a:hover {
            color: var(--copper-light);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-contact p {
            margin: 0;
            color: rgba(245, 242, 236, .62);
            line-height: 1.8;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            color: rgba(245, 242, 236, .42);
            font-size: 13px;
            padding-top: 6px;
        }

        .footer-bottom p {
            margin: 0;
        }

        @media (max-width: 991.98px) {
            .section-pad {
                padding: 72px 0;
            }

            .nav-panel {
                flex-wrap: wrap;
            }

            .nav-toggle {
                display: inline-flex;
                margin-left: auto;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 6px;
                order: 10;
                padding-top: 14px;
                border-top: 1px solid var(--line);
                margin: 6px 0 0;
            }

            .nav-menu.open {
                display: flex;
            }

            .nav-menu a {
                display: block;
                padding: 12px 14px;
                font-size: 16px;
                border-radius: var(--radius-sm);
            }

            .nav-actions {
                margin-left: auto;
            }

            .hero-panel {
                margin-left: 0;
                margin-top: 30px;
            }

            .pick-card {
                flex-direction: column;
            }

            .pick-card .pick-img,
            .pick-card .pick-info {
                width: 100%;
            }

            .pick-card .pick-img {
                min-height: 280px;
            }

            .pick-card.reverse .pick-img {
                order: 0;
            }

            .pick-card.reverse .pick-info {
                order: 2;
            }

            .process-step {
                margin-top: 32px;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 34px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 767.98px) {
            .section-pad {
                padding: 54px 0;
            }

            .mall-hero {
                padding: 54px 0 60px;
                border-radius: 16px 16px 0 0;
            }

            .hero-sub {
                font-size: 15px;
            }

            .hero-actions {
                gap: 10px;
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions a {
                width: 100%;
            }

            .hero-stats {
                gap: 10px;
            }

            .hero-stat .num {
                font-size: 28px;
            }

            .param-list {
                grid-template-columns: 1fr;
            }

            .pick-info {
                padding: 28px 22px;
            }

            .accordion-button {
                font-size: 15px;
                padding-right: 42px;
            }

            .accordion-body {
                padding-right: 10px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 575.98px) {
            .section-lead {
                font-size: 14px;
            }

            .section-title {
                font-size: 26px;
            }

            .mall-hero {
                padding: 46px 0 50px;
                margin-top: 8px;
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-sub {
                font-size: 15px;
            }

            .hero-stats {
                grid-template-columns: 1fr 1fr;
            }

            .catalog-card .catalog-body {
                padding: 20px;
                min-height: 240px;
            }

            .catalog-body h3 {
                font-size: 19px;
            }

            .cta-actions {
                flex-direction: column;
            }

            .cta-actions a {
                width: 100%;
            }
        }
