:root {
            --primary: #122A24;
            --primary-light: #1E3A33;
            --gold: #C8A96A;
            --gold-light: #D9BE8B;
            --bg-light: #F4F0E8;
            --bg-warm: #EAE5DC;
            --text-dark: #1F2D28;
            --text-gray: #65736C;
            --border-gold: rgba(200, 169, 106, 0.4);
            --border-line: rgba(18, 42, 36, 0.15);
            --radius: 4px;
            --radius-lg: 12px;
            --shadow: 0 2px 12px rgba(18, 42, 36, 0.06);
            --shadow-hover: 0 12px 28px rgba(18, 42, 36, 0.12);
            --font-serif: "Noto Serif SC", "Source Han Serif SC", Georgia, "Songti SC", serif;
            --font-sans: -apple-system, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            color: var(--text-dark);
            background: #fff;
            line-height: 1.7;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        a:hover {
            color: var(--gold);
        }
        button {
            font-family: inherit;
        }
        .container {
            max-width: 1280px;
            padding-left: 24px;
            padding-right: 24px;
        }
        .section-head {
            display: flex;
            align-items: baseline;
            gap: 18px;
            margin-bottom: 46px;
            flex-wrap: wrap;
        }
        .section-head .section-no {
            font-family: var(--font-serif);
            font-size: 16px;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 2px;
        }
        .section-head h2 {
            font-family: var(--font-serif);
            font-size: 34px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.25;
        }
        .section-head p {
            width: 100%;
            margin: 6px 0 0 0;
            color: var(--text-gray);
            font-size: 15px;
            max-width: 680px;
        }
        .section-head .section-line {
            flex: 1;
            height: 1px;
            background: var(--border-gold);
            min-width: 60px;
            margin-top: 10px;
        }
        .section-head.light h2 {
            color: #fff;
        }
        .section-head.light p {
            color: rgba(255, 255, 255, 0.7);
        }
        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--gold);
            color: var(--primary);
            border: none;
            padding: 13px 30px;
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius);
            cursor: pointer;
            transition: all .25s ease;
            letter-spacing: .5px;
        }
        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(200, 169, 106, 0.35);
            color: var(--primary);
        }
        .btn-gold:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #fff;
            border: 1px solid var(--border-gold);
            padding: 12px 28px;
            font-weight: 500;
            font-size: 15px;
            border-radius: var(--radius);
            cursor: pointer;
            transition: all .25s ease;
        }
        .btn-outline-light:hover {
            background: rgba(200, 169, 106, 0.12);
            border-color: var(--gold-light);
            color: var(--gold-light);
            transform: translateY(-2px);
        }
        .btn-outline-light:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        .btn-sm {
            padding: 8px 18px;
            font-size: 14px;
        }
        /* ===== Header / Masthead ===== */
        .masthead-header {
            background: var(--primary);
            border-bottom: 1px solid rgba(200, 169, 106, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 24px rgba(18, 42, 36, 0.18);
        }
        .masthead-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 10px;
        }
        .masthead-brand {
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 3px;
            line-height: 1.2;
        }
        .masthead-brand:hover {
            color: var(--gold-light);
        }
        .masthead-toggler {
            background: transparent;
            border: 1px solid var(--border-gold);
            border-radius: var(--radius);
            color: var(--gold);
            font-size: 20px;
            padding: 6px 12px;
            cursor: pointer;
            display: none;
        }
        .masthead-toggler:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        .masthead-nav {
            border-top: 1px solid rgba(200, 169, 106, 0.15);
            padding-top: 2px;
        }
        .masthead-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
        }
        .masthead-nav ul li {
            position: relative;
        }
        .masthead-nav ul li a {
            display: block;
            padding: 10px 20px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            transition: color .25s ease;
            border-bottom: 2px solid transparent;
        }
        .masthead-nav ul li:not(:first-child) a {
            border-left: 1px solid rgba(200, 169, 106, 0.12);
        }
        .masthead-nav ul li a:hover {
            color: var(--gold-light);
        }
        .masthead-nav ul li.active a {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }
        /* ===== Hero Bento ===== */
        .hero-section {
            position: relative;
            background: var(--primary);
            overflow: hidden;
        }
        .hero-backdrop {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: .28;
        }
        .hero-backdrop::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, rgba(18, 42, 36, 0.96) 0%, rgba(18, 42, 36, 0.78) 50%, rgba(18, 42, 36, 0.55) 100%);
        }
        .hero-bento {
            position: relative;
            z-index: 2;
            padding-top: 60px;
            padding-bottom: 48px;
        }
        .hero-main {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 30px 0;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(200, 169, 106, 0.14);
            border: 1px solid var(--border-gold);
            color: var(--gold-light);
            padding: 5px 14px;
            border-radius: 999px;
            font-size: 13px;
            letter-spacing: 1px;
            margin-bottom: 22px;
            align-self: flex-start;
        }
        .hero-title {
            font-family: var(--font-serif);
            font-size: 50px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin: 0 0 18px;
            letter-spacing: 2px;
        }
        .hero-desc {
            color: rgba(255, 255, 255, 0.78);
            font-size: 15px;
            line-height: 1.8;
            max-width: 520px;
            margin-bottom: 28px;
        }
        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }
        .hero-stats-row {
            display: flex;
            gap: 38px;
            flex-wrap: wrap;
            border-top: 1px solid rgba(200, 169, 106, 0.2);
            padding-top: 18px;
        }
        .hero-stat {
            display: flex;
            flex-direction: column;
        }
        .hero-stat-num {
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 700;
            color: var(--gold);
        }
        .hero-stat-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.55);
            letter-spacing: 1px;
        }
        .hero-sub-card {
            margin-bottom: 16px;
        }
        .hero-sub-card .sub-card-inner {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(200, 169, 106, 0.2);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            display: flex;
            gap: 14px;
            height: 100%;
            backdrop-filter: blur(6px);
            transition: border-color .25s ease, background .25s ease;
        }
        .hero-sub-card .sub-card-inner:hover {
            border-color: var(--border-gold);
            background: rgba(255, 255, 255, 0.06);
        }
        .hero-sub-card i {
            font-size: 24px;
            color: var(--gold);
            margin-top: 4px;
            flex-shrink: 0;
        }
        .hero-sub-card h3 {
            font-family: var(--font-serif);
            font-size: 17px;
            color: #fff;
            margin: 0 0 4px;
            font-weight: 600;
        }
        .hero-sub-card p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
            line-height: 1.6;
        }
        .hero-cta-bar {
            margin-top: 20px;
        }
        .hero-cta-inner {
            background: rgba(200, 169, 106, 0.1);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius);
            padding: 14px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .hero-cta-inner p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin: 0;
        }
        .hero-cta-inner p strong {
            color: var(--gold-light);
        }
        /* ===== Trust Strip ===== */
        .trust-strip {
            background: var(--bg-light);
            border-bottom: 1px solid var(--border-line);
        }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 28px 0;
        }
        .trust-item {
            text-align: center;
            border-right: 1px solid var(--border-line);
        }
        .trust-item:last-child {
            border-right: none;
        }
        .trust-num {
            font-family: var(--font-serif);
            font-size: 34px;
            font-weight: 700;
            color: var(--primary);
            display: block;
            line-height: 1.2;
        }
        .trust-label {
            font-size: 13px;
            color: var(--text-gray);
            letter-spacing: 1px;
        }
        /* ===== Services ===== */
        .services-section {
            background: var(--bg-light);
            padding: 72px 0 80px;
        }
        .services-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .service-row {
            display: flex;
            align-items: center;
            background: #fff;
            border: 1px solid var(--border-line);
            border-radius: var(--radius);
            padding: 22px 28px;
            transition: all .25s ease;
            position: relative;
            overflow: hidden;
        }
        .service-row::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gold);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform .25s ease;
        }
        .service-row:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .service-row:hover::before {
            transform: scaleY(1);
        }
        .service-num {
            font-family: var(--font-serif);
            font-size: 32px;
            font-weight: 700;
            color: var(--gold);
            width: 70px;
            flex-shrink: 0;
            transition: color .25s ease;
        }
        .service-body {
            flex: 1;
            padding: 0 20px;
            border-left: 1px solid var(--border-line);
        }
        .service-body h3 {
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 4px;
            color: var(--text-dark);
        }
        .service-body p {
            margin: 0;
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.65;
            max-width: 620px;
        }
        .service-arrow {
            font-size: 20px;
            color: var(--border-gold);
            flex-shrink: 0;
            transition: all .25s ease;
            width: 34px;
            text-align: center;
        }
        .service-row:hover .service-arrow {
            color: var(--gold);
            transform: translateX(4px);
        }
        /* ===== Time Slots ===== */
        .time-slots-section {
            background: #fff;
            padding: 72px 0 80px;
        }
        .time-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
        .time-card {
            background: var(--bg-light);
            border: 1px solid var(--border-line);
            border-radius: var(--radius);
            padding: 30px 28px;
            position: relative;
            transition: all .25s ease;
        }
        .time-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .time-card.featured {
            background: var(--primary);
            border-color: var(--gold);
            color: #fff;
            transform: scale(1.02);
        }
        .time-card.featured:hover {
            transform: scale(1.02) translateY(-3px);
            box-shadow: 0 14px 34px rgba(18, 42, 36, 0.22);
        }
        .time-range {
            font-family: var(--font-serif);
            font-size: 26px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 8px;
        }
        .time-card h3 {
            font-family: var(--font-serif);
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 14px;
            color: var(--text-dark);
        }
        .time-card.featured h3 {
            color: #fff;
        }
        .time-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .time-card ul li {
            padding: 5px 0 5px 18px;
            position: relative;
            font-size: 14px;
            color: var(--text-gray);
        }
        .time-card ul li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
        }
        .time-card.featured ul li {
            color: rgba(255, 255, 255, 0.75);
        }
        .featured-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--gold);
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 999px;
            letter-spacing: 1px;
        }
        /* ===== Scenes ===== */
        .scenes-section {
            background: var(--bg-warm);
            padding: 72px 0 80px;
        }
        .scene-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 56px;
        }
        .scene-row:last-child {
            margin-bottom: 0;
        }
        .scene-row.reverse .scene-image {
            order: 2;
        }
        .scene-row.reverse .scene-text {
            order: 1;
        }
        .scene-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-gold);
            position: relative;
        }
        .scene-image img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: transform .4s ease;
        }
        .scene-image:hover img {
            transform: scale(1.04);
        }
        .scene-tag {
            display: inline-block;
            background: rgba(200, 169, 106, 0.16);
            border: 1px solid var(--border-gold);
            color: var(--primary);
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }
        .scene-text h3 {
            font-family: var(--font-serif);
            font-size: 26px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 14px;
            line-height: 1.3;
        }
        .scene-text p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
            margin: 0;
            max-width: 480px;
        }
        .scene-text .scene-link {
            display: inline-block;
            margin-top: 18px;
            color: var(--gold);
            font-weight: 600;
            font-size: 14px;
            border-bottom: 1px solid var(--border-gold);
            padding-bottom: 2px;
            transition: all .25s ease;
        }
        .scene-text .scene-link:hover {
            color: var(--primary);
            border-color: var(--primary);
        }
        /* ===== Cases ===== */
        .cases-section {
            background: #fff;
            padding: 72px 0 80px;
        }
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
        .case-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-lg);
            padding: 30px 26px;
            transition: all .25s ease;
        }
        .case-card:hover {
            border-color: var(--border-gold);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .case-quote {
            font-family: var(--font-serif);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-dark);
            margin-bottom: 20px;
            quotes: '\201C' '\201D';
        }
        .case-quote::before {
            content: '“';
            color: var(--gold);
            font-size: 28px;
            line-height: 0;
            vertical-align: -6px;
            margin-right: 2px;
        }
        .case-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-line);
            padding-top: 14px;
        }
        .case-tag {
            background: rgba(200, 169, 106, 0.14);
            color: var(--primary);
            font-size: 12px;
            padding: 3px 10px;
            border-radius: 999px;
            font-weight: 500;
        }
        .case-label {
            font-size: 12px;
            color: var(--text-gray);
        }
        /* ===== Pricing ===== */
        .pricing-section {
            background: var(--primary);
            padding: 72px 0 80px;
            position: relative;
        }
        .pricing-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 20%, rgba(200, 169, 106, 0.08), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(200, 169, 106, 0.05), transparent 50%);
            pointer-events: none;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
            z-index: 2;
        }
        .pricing-card {
            background: var(--bg-light);
            border-radius: var(--radius);
            padding: 34px 30px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all .25s ease;
        }
        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
        }
        .pricing-card.featured {
            background: #fff;
            border: 2px solid var(--gold);
            transform: scale(1.04);
        }
        .pricing-card.featured:hover {
            transform: scale(1.04) translateY(-4px);
        }
        .pricing-name {
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .pricing-price {
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 16px;
        }
        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
        }
        .pricing-card ul li {
            padding: 6px 0 6px 16px;
            position: relative;
            font-size: 14px;
            color: var(--text-gray);
        }
        .pricing-card ul li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
        }
        .pricing-card.featured ul li {
            color: var(--text-dark);
        }
        .pricing-card .btn-gold {
            width: 100%;
        }
        .pricing-note {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
            text-align: center;
            margin-top: 26px;
            position: relative;
            z-index: 2;
        }
        /* ===== News ===== */
        .news-section {
            background: var(--bg-light);
            padding: 72px 0 80px;
        }
        .news-list {
            display: flex;
            flex-direction: column;
        }
        .news-item {
            display: flex;
            align-items: center;
            padding: 18px 6px;
            border-bottom: 1px solid var(--border-line);
            gap: 18px;
            transition: all .25s ease;
        }
        .news-item:first-child {
            border-top: 1px solid var(--border-line);
        }
        .news-item:hover {
            padding-left: 14px;
            background: rgba(200, 169, 106, 0.04);
        }
        .news-cat {
            background: rgba(18, 42, 36, 0.06);
            color: var(--primary);
            font-size: 12px;
            padding: 3px 10px;
            border-radius: 999px;
            flex-shrink: 0;
            font-weight: 500;
        }
        .news-title {
            flex: 1;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
        }
        .news-item:hover .news-title {
            color: var(--gold);
        }
        .news-date {
            font-size: 13px;
            color: var(--text-gray);
            flex-shrink: 0;
        }
        .news-sidebar {
            background: #fff;
            border: 1px solid var(--border-line);
            border-radius: var(--radius);
            padding: 26px 24px;
        }
        .news-sidebar h3 {
            font-family: var(--font-serif);
            font-size: 19px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 18px;
            border-bottom: 1px solid var(--border-gold);
            padding-bottom: 8px;
        }
        .news-sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .news-sidebar li {
            padding: 7px 0 7px 18px;
            position: relative;
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
        }
        .news-sidebar li::before {
            content: '\2022';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
        }
        /* ===== FAQ ===== */
        .faq-section {
            background: #fff;
            padding: 72px 0 80px;
        }
        .custom-accordion .accordion-item {
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--border-line);
            border-radius: 0;
        }
        .custom-accordion .accordion-item:first-child {
            border-top: 1px solid var(--border-line);
        }
        .custom-accordion .accordion-button {
            background: transparent;
            box-shadow: none;
            color: var(--text-dark);
            font-family: var(--font-serif);
            font-size: 16px;
            font-weight: 600;
            padding: 18px 20px 18px 14px;
            border-radius: 0 !important;
            position: relative;
            transition: color .25s ease;
        }
        .custom-accordion .accordion-button::after {
            background-image: none;
            content: '+';
            font-size: 24px;
            font-weight: 300;
            color: var(--gold);
            transform: none;
            transition: transform .25s ease;
        }
        .custom-accordion .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
            color: var(--gold);
        }
        .custom-accordion .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: transparent;
            box-shadow: none;
        }
        .custom-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: var(--gold);
        }
        .custom-accordion .accordion-button:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: -2px;
        }
        .custom-accordion .accordion-item {
            position: relative;
            overflow: hidden;
        }
        .custom-accordion .accordion-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gold);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform .3s ease;
        }
        .custom-accordion .accordion-item:has(.accordion-button:not(.collapsed))::before {
            transform: scaleY(1);
        }
        .custom-accordion .accordion-header {
            border-radius: 0;
        }
        .custom-accordion .accordion-body {
            padding: 6px 20px 22px 14px;
            color: var(--text-gray);
            font-size: 14px;
            line-height: 1.7;
        }
        /* ===== Booking / CTA ===== */
        .booking-section {
            background: var(--primary);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .booking-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(45deg,
                    rgba(200, 169, 106, 0.03) 0px, rgba(200, 169, 106, 0.03) 1px,
                    transparent 1px, transparent 8px);
            pointer-events: none;
        }
        .booking-wrap {
            position: relative;
            z-index: 2;
        }
        .booking-left h2 {
            font-family: var(--font-serif);
            font-size: 34px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 16px;
            line-height: 1.3;
        }
        .booking-left p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.7;
            max-width: 480px;
        }
        .booking-form {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(200, 169, 106, 0.2);
            border-radius: var(--radius-lg);
            padding: 34px 30px;
            backdrop-filter: blur(6px);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 14px;
        }
        .form-control-custom {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.25);
            padding: 10px 4px;
            color: #fff;
            font-size: 14px;
            border-radius: 0;
            transition: border-color .25s ease;
        }
        .form-control-custom::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .form-control-custom:focus {
            outline: none;
            border-bottom-color: var(--gold);
        }
        .form-control-custom select {
            appearance: none;
            -webkit-appearance: none;
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
        }
        .form-control-custom option {
            color: var(--text-dark);
            background: #fff;
        }
        .booking-form .btn-gold {
            width: 100%;
            margin-top: 10px;
        }
        .form-tip {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            text-align: center;
            margin-top: 14px;
        }
        /* ===== Footer ===== */
        .site-footer {
            background: #0D1D19;
            padding: 56px 0 0;
            border-top: 2px solid var(--gold);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 40px;
            padding-bottom: 36px;
        }
        .footer-brand h2 {
            font-family: var(--font-serif);
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 10px;
        }
        .footer-brand p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 14px;
            line-height: 1.7;
            max-width: 320px;
            margin: 0;
        }
        .footer-links h3 {
            font-family: var(--font-serif);
            font-size: 15px;
            font-weight: 600;
            color: var(--gold-light);
            margin: 0 0 16px;
            letter-spacing: 1px;
        }
        .footer-links a {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            padding: 4px 0;
            transition: color .25s ease;
        }
        .footer-links a:hover {
            color: var(--gold-light);
        }
        .footer-links .region-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .footer-links .region-tags span {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(200, 169, 106, 0.15);
            color: rgba(255, 255, 255, 0.55);
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 12px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 18px 0;
            text-align: center;
        }
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
            margin: 0;
            letter-spacing: .5px;
        }
        .footer-bottom p a {
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-bottom p a:hover {
            color: var(--gold);
        }
        /* ===== Responsive ===== */
        @media (max-width: 992px) {
            .masthead-brand {
                font-size: 22px;
            }
            .masthead-nav ul li a {
                padding: 10px 14px;
                font-size: 13px;
            }
            .hero-title {
                font-size: 42px;
            }
            .time-card-grid,
            .pricing-grid {
                gap: 16px;
            }
            .time-card.featured,
            .pricing-card.featured {
                transform: scale(1.01);
            }
            .time-card.featured:hover,
            .pricing-card.featured:hover {
                transform: scale(1.01) translateY(-3px);
            }
            .scene-row {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .scene-row.reverse .scene-image {
                order: initial;
            }
            .scene-row.reverse .scene-text {
                order: initial;
            }
            .cases-grid {
                grid-template-columns: 1fr 1fr;
            }
            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .trust-item {
                border-right: none;
                border-bottom: 1px solid var(--border-line);
                padding-bottom: 14px;
            }
            .trust-item:nth-last-child(-n+2) {
                border-bottom: none;
                padding-bottom: 0;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 768px) {
            .masthead-top {
                padding: 14px 0 10px;
            }
            .masthead-toggler {
                display: inline-block;
            }
            .masthead-nav {
                display: none;
            }
            .masthead-nav.show {
                display: block;
            }
            .masthead-nav ul {
                flex-direction: column;
                padding-bottom: 8px;
            }
            .masthead-nav ul li:not(:first-child) a {
                border-left: none;
                border-top: 1px solid rgba(200, 169, 106, 0.08);
            }
            .masthead-nav ul li a {
                padding: 12px 14px;
                font-size: 15px;
            }
            .hero-bento {
                padding-top: 40px;
            }
            .hero-title {
                font-size: 34px;
            }
            .hero-desc {
                font-size: 14px;
            }
            .hero-stats-row {
                gap: 22px;
            }
            .hero-sub-card .sub-card-inner {
                flex-direction: column;
                gap: 8px;
            }
            .hero-cta-inner {
                flex-direction: column;
                align-items: flex-start;
            }
            .time-card-grid {
                grid-template-columns: 1fr;
            }
            .time-card.featured {
                transform: scale(1);
            }
            .time-card.featured:hover {
                transform: translateY(-3px);
            }
            .cases-grid {
                grid-template-columns: 1fr;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .pricing-card.featured {
                transform: scale(1);
            }
            .pricing-card.featured:hover {
                transform: translateY(-4px);
            }
            .news-list {
                margin-bottom: 30px;
            }
            .news-item {
                flex-wrap: wrap;
                gap: 10px;
            }
            .news-date {
                width: 100%;
                text-align: right;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-brand {
                grid-column: 1;
            }
            .section-head h2 {
                font-size: 28px;
            }
            .section-head p {
                font-size: 14px;
            }
            .booking-left h2 {
                font-size: 28px;
            }
            .service-row {
                padding: 16px 18px;
            }
            .service-num {
                width: 50px;
                font-size: 26px;
            }
            .service-body {
                padding: 0 12px;
            }
            .service-body h3 {
                font-size: 17px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .hero-title {
                font-size: 28px;
            }
            .hero-stats-row {
                gap: 16px;
            }
            .hero-stat-num {
                font-size: 22px;
            }
            .trust-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .trust-num {
                font-size: 28px;
            }
            .section-head h2 {
                font-size: 24px;
            }
            .section-head {
                gap: 12px;
            }
            .pricing-card {
                padding: 26px 20px;
            }
            .booking-form {
                padding: 24px 20px;
            }
            .case-card {
                padding: 24px 18px;
            }
            .service-arrow {
                display: none;
            }
            .service-row {
                flex-wrap: wrap;
            }
            .service-num {
                width: 100%;
                margin-bottom: 6px;
            }
            .service-body {
                border-left: none;
                padding: 0;
            }
        }
        /* ===== Reveal animation (progressive enhancement) ===== */
        .reveal {
            opacity: 1;
            transform: none;
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: .01ms !important;
                transition-duration: .01ms !important;
            }
        }

:root {
  --primary: #122A24;
  --primary-light: #1E3A33;
  --gold: #C8A96A;
  --gold-light: #D9BE8B;
  --bg-light: #F4F0E8;
  --bg-warm: #EAE5DC;
  --text-dark: #1F2D28;
  --text-gray: #65736C;
  --border-gold: rgba(200, 169, 106, 0.4);
  --border-line: rgba(18, 42, 36, 0.15);
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(18, 42, 36, 0.06);
  --shadow-hover: 0 12px 28px rgba(18, 42, 36, 0.12);
  --font-serif: "Noto Serif SC", "Source Han Serif SC", Georgia, "Songti SC", serif;
  --font-sans: -apple-system, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
}

/* ===== Reset / Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.7;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}
a:hover {
  color: var(--gold);
}
button {
  font-family: inherit;
}
.container {
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px;
}

/* ===== Section Head ===== */
.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}
.section-head .section-no {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.25;
}
.section-head p {
  width: 100%;
  margin: 6px 0 0 0;
  color: var(--text-gray);
  font-size: 15px;
  max-width: 680px;
}
.section-head .section-line {
  flex: 1;
  height: 1px;
  background: var(--border-gold);
  min-width: 60px;
  margin-top: 10px;
}
.section-head.light h2 {
  color: #fff;
}
.section-head.light p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Buttons ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--primary);
  border: none;
  padding: 13px 32px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s ease;
  letter-spacing: .5px;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 106, 0.35);
  color: var(--primary);
}
.btn-gold:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-gold);
  padding: 12px 28px;
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s ease;
}
.btn-outline-light:hover {
  background: rgba(200, 169, 106, 0.12);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline-light:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 12px 28px;
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s ease;
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--gold-light);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.btn-outline-dark:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

/* ===== Header / Masthead ===== */
.masthead-header {
  background: var(--primary);
  border-bottom: 1px solid rgba(200, 169, 106, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(18, 42, 36, 0.18);
}
.masthead-brand {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  line-height: 1.2;
}
.masthead-brand:hover {
  color: var(--gold-light);
}
.masthead-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 10px;
}
.masthead-toggler {
  display: none;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 20px;
  padding: 8px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  line-height: 1;
}
.masthead-toggler:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.masthead-nav {
  border-top: 1px solid rgba(200, 169, 106, 0.15);
  padding-top: 2px;
}
.masthead-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.masthead-nav ul li {
  position: relative;
}
.masthead-nav ul li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color .25s ease;
  border-bottom: 2px solid transparent;
}
.masthead-nav ul li:not(:first-child) a {
  border-left: 1px solid rgba(200, 169, 106, 0.12);
}
.masthead-nav ul li a:hover {
  color: var(--gold-light);
}
.masthead-nav ul li.active a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ===== Category Hero ===== */
.category-hero {
  position: relative;
  background: var(--primary);
  padding: 100px 0 90px;
  overflow: hidden;
}
.category-hero .hero-back {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .26;
}
.category-hero .hero-back::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(18,42,36,.95) 0%, rgba(18,42,36,.72) 55%, rgba(18,42,36,.35) 100%);
}
.category-hero .hero-inner {
  position: relative;
  z-index: 2;
}
.category-hero .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 22px;
}
.category-hero .hero-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.category-hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 22px;
  letter-spacing: 2px;
}
.category-hero .hero-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  max-width: 610px;
  line-height: 1.85;
  margin-bottom: 36px;
}
.category-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.category-hero .hero-meta {
  display: flex;
  gap: 34px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(200, 169, 106, 0.2);
  flex-wrap: wrap;
}
.category-hero .hero-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-hero .hero-meta .meta-num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.category-hero .hero-meta .meta-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

/* ===== Filter Bar / List ===== */
.category-list-section {
  background: var(--bg-light);
  padding: 70px 0 80px;
}
.filter-wrap {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
}
.filter-panel {
  background: #fff;
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.filter-panel h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 18px;
  letter-spacing: 1px;
}
.filter-panel h3::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
}
.filter-group {
  margin-bottom: 26px;
}
.filter-group:last-child {
  margin-bottom: 0;
}
.filter-group .filter-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}
.filter-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.filter-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  color: var(--text-gray);
  font-size: 14px;
  border-radius: var(--radius);
  transition: all .25s ease;
}
.filter-links li a .count {
  font-size: 12px;
  color: rgba(101, 115, 108, .7);
  background: var(--bg-warm);
  border-radius: 999px;
  padding: 1px 9px;
}
.filter-links li a:hover {
  color: var(--gold);
  background: rgba(200, 169, 106, 0.08);
  padding-left: 14px;
}
.filter-links li.active a {
  color: var(--gold);
  background: rgba(200, 169, 106, 0.12);
  font-weight: 600;
}
.works-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.works-card {
  display: flex;
  background: #fff;
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: var(--shadow);
  position: relative;
}
.works-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--border-gold);
}
.works-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.works-card .card-img {
  width: 190px;
  min-height: 160px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.works-card .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,42,36,.35) 0%, transparent 60%);
}
.works-card .card-body-works {
  flex: 1;
  padding: 24px 64px 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.works-card .works-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
  line-height: 1.3;
}
.works-card .works-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.works-card .works-tags .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
  background: rgba(200, 169, 106, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  padding: 1px 10px;
  letter-spacing: .5px;
}
.works-card .works-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin: 6px 0 0;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.works-card .card-actions {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}
.works-card .card-arrow {
  color: var(--gold);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .3s ease;
}
.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 38px;
}
.pagination-wrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--border-line);
  color: var(--text-gray);
  font-size: 14px;
  border-radius: var(--radius);
  transition: all .25s ease;
  background: #fff;
}
.pagination-wrap a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.pagination-wrap a.current {
  background: var(--primary);
  color: var(--gold);
  border-color: var(--primary);
  font-weight: 600;
}

/* ===== Advantages ===== */
.advantages-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.advantages-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(200,169,106,.09) 0%, transparent 70%);
  pointer-events: none;
}
.advan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.advan-item {
  position: relative;
  padding: 28px 22px 24px;
  border: 1px solid rgba(200, 169, 106, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: all .3s ease;
}
.advan-item:hover {
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}
.advan-item .advan-num {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.advan-item h3 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 1px;
}
.advan-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ===== Scenarios ===== */
.scenario-section {
  background: var(--bg-light);
  padding: 80px 0;
}
.scenario-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s ease;
}
.scenario-row:hover {
  box-shadow: var(--shadow-hover);
}
.scenario-img {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.scenario-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,42,36,.28) 0%, transparent 50%);
}
.scenario-body {
  padding: 40px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scenario-body .scenario-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.scenario-body h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 14px;
  line-height: 1.35;
}
.scenario-body p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 20px;
}
.scenario-body .scenario-feature {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scenario-body .scenario-feature li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}
.scenario-body .scenario-feature li i {
  color: var(--gold);
  font-size: 13px;
}

/* ===== Process ===== */
.process-section {
  background: var(--bg-warm);
  padding: 80px 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.process-item {
  position: relative;
  text-align: center;
  padding: 38px 20px 30px;
  background: #fff;
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  transition: all .3s ease;
}
.process-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-hover);
}
.process-item .process-no {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: rgba(200, 169, 106, 0.28);
  line-height: 1;
  margin-bottom: 16px;
}
.process-item h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
}
.process-item p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 0;
}
.process-item i {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ===== FAQ ===== */
.faq-section {
  background: #fff;
  padding: 80px 0;
}
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border-line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all .25s ease;
  background: #fff;
}
.faq-item:hover {
  border-color: var(--border-gold);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 20px 26px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  transition: color .25s ease;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 14px;
  transition: all .3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--gold);
  color: var(--primary);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 26px 22px;
  color: var(--text-gray);
  font-size: 14.5px;
  line-height: 1.75;
  border-left: 3px solid var(--gold);
}

/* ===== CTA ===== */
.cta-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,106,.5), transparent);
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 2px;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 34px;
  line-height: 1.8;
}
.cta-inner .cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.site-footer {
  background: #0C241F;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 34px;
}
.footer-brand h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin: 0 0 14px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  max-width: 360px;
}
.footer-links h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  margin: 0 0 16px;
}
.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  padding: 5px 0;
  transition: color .25s ease, padding-left .25s ease;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.region-tags span {
  display: inline-block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 4px 12px;
  transition: all .25s ease;
}
.region-tags span:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .masthead-brand {
    font-size: 23px;
  }
  .masthead-nav ul li a {
    padding: 10px 14px;
  }
  .category-hero {
    padding: 70px 0 65px;
  }
  .category-hero h1 {
    font-size: 38px;
  }
  .filter-wrap {
    grid-template-columns: 200px 1fr;
    gap: 26px;
  }
  .advan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .scenario-row {
    grid-template-columns: 1fr;
  }
  .scenario-body {
    padding: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 768px) {
  .masthead-toggler {
    display: inline-flex;
  }
  .masthead-nav {
    display: none;
  }
  .masthead-nav.show {
    display: block;
  }
  .masthead-nav ul {
    flex-direction: column;
    padding: 8px 0;
  }
  .masthead-nav ul li a {
    padding: 12px 6px;
    font-size: 15px;
  }
  .masthead-nav ul li:not(:first-child) a {
    border-left: none;
  }
  .category-hero {
    padding: 55px 0 55px;
  }
  .category-hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }
  .category-hero .hero-desc {
    font-size: 14.5px;
  }
  .category-hero .hero-meta {
    gap: 20px;
    margin-top: 34px;
  }
  .filter-wrap {
    grid-template-columns: 1fr;
  }
  .filter-panel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 18px 16px;
  }
  .filter-panel h3 {
    white-space: nowrap;
    margin: 0;
  }
  .filter-group {
    margin: 0;
    flex-shrink: 0;
  }
  .filter-links {
    display: flex;
    flex-direction: row;
    gap: 6px;
  }
  .filter-links li a {
    padding: 6px 12px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .filter-links li a:hover {
    padding-left: 12px;
  }
  .works-card {
    flex-direction: column;
  }
  .works-card .card-img {
    width: 100%;
    min-height: 160px;
  }
  .works-card .card-body-works {
    padding: 20px 22px 20px 22px;
  }
  .works-card .card-actions {
    position: static;
    transform: none;
    margin-top: 8px;
  }
  .works-card .card-arrow {
    display: none;
  }
  .advan-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .scenario-img {
    min-height: 220px;
  }
  .section-head h2 {
    font-size: 26px;
  }
  .cta-inner h2 {
    font-size: 27px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pagination-wrap {
    flex-wrap: wrap;
  }
  .btn-gold,
  .btn-outline-light,
  .btn-outline-dark {
    padding: 13px 36px;
    min-height: 44px;
  }
  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }
  .faq-answer {
    padding: 0 18px 18px;
  }
}

@media (max-width: 520px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .masthead-brand {
    font-size: 20px;
  }
  .category-hero h1 {
    font-size: 26px;
  }
  .category-hero .hero-meta .meta-num {
    font-size: 24px;
  }
  .category-hero .hero-meta .meta-label {
    font-size: 12px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-gold,
  .hero-actions .btn-outline-light {
    width: 100%;
  }
  .section-head {
    gap: 12px;
  }
  .section-head h2 {
    font-size: 23px;
  }
  .scenario-body {
    padding: 24px 20px;
  }
  .scenario-body h3 {
    font-size: 22px;
  }
  .advan-item {
    padding: 22px 18px;
  }
  .cta-inner .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-inner .cta-actions .btn-gold,
  .cta-inner .cta-actions .btn-outline-light {
    width: 100%;
    text-align: center;
  }
  .works-card .works-title {
    font-size: 17px;
  }
}

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
