:root {
            --bg: #f8f5f0;
            --surface: #f2ede4;
            --surface-strong: #e6dece;
            --text: #2c2414;
            --muted: #6f6558;
            --line: rgba(44, 36, 20, 0.12);
            --accent: #c9b176;
            --accent-deep: #9b895c;
            --shadow: 0 18px 48px rgba(41, 32, 17, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans", Arial, Helvetica, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        button {
            border: none;
            background: transparent;
            cursor: pointer;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .hidden {
            display: none !important;
        }

        #navbar,
        .index-footer-main,
        .index-footer-bg {
            font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans", Arial, Helvetica, sans-serif;
        }

        #navbar {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 999;
            transition: all 0.3s ease;
            padding: 0;
        }

        #navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            flex: 0 0 auto;
            padding: 8px 0;
        }

        .logo img {
            width: auto;
            height: clamp(54px, 5.5vw, 72px);
            object-fit: contain;
            filter: invert(1);
            transition: filter 0.3s ease;
        }

        .desktop-nav {
            display: none;
            align-items: center;
            gap: 32px;
            color: #fff;
        }

        .desktop-nav a {
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        #navbar .desktop-nav a.active,
        #navbar .mobile-nav a.active,
        #navbar.navbar-scroll .desktop-nav a.active,
        #navbar.navbar-scroll .mobile-nav a.active {
            color: #D4B989;
            font-weight: 700;
        }


        .desktop-nav a.active,
        .mobile-nav a.active {
            font-weight: 700;
        }

        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: var(--accent);
        }

        .lang-switch {
            display: none;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #fff;
        }

        .lang-switch a:hover {
            color: var(--accent);
        }
        .product-nav {
            position: relative;
            display: flex;
            align-items: center;
        }

        .product-nav > a {
            font-size: 16px;
            font-weight: 400;
        }

        .product-nav-panel,
        .product-nav-submenu {
            color: #2c2414;
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(44, 36, 20, 0.1);
            box-shadow: 0 24px 64px rgba(26, 20, 11, 0.18);
        }

        .product-nav-panel {
            position: absolute;
            top: 100%;
            left: 50%;
            z-index: 1000;
            width: 280px;
            padding: 10px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translate(-50%, 10px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        }

        .product-nav:hover .product-nav-panel,
        .product-nav:focus-within .product-nav-panel {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translate(-50%, 0);
        }

        .product-nav-group,
        .product-nav-subitem {
            position: relative;
        }

        .product-nav-title,
        .product-nav-submenu a,
        .product-nav-subitem > a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            color: #403728;
            line-height: 1.35;
            letter-spacing: 0;
            text-transform: none;
        }

        .product-nav-title {
            padding: 14px 16px;
            font-size: 18px;
            font-weight: 800;
            min-height: 48px;
        }

        .product-nav-title::after,
        .product-nav-subitem.has-submenu > a::after {
            content: "+";
            color: #9b895c;
            font-size: 20px;
            line-height: 1;
        }
        .product-nav-group:hover > .product-nav-title::after,
        .product-nav-group:focus-within > .product-nav-title::after,
        .product-nav-subitem.has-submenu:hover > a::after,
        .product-nav-subitem.has-submenu:focus-within > a::after {
            content: "-";
        }

        .product-nav-submenu {
            position: absolute;
            top: 0;
            left: 100%;
            z-index: 1001;
            width: 300px;
            padding: 10px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateX(4px);
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
        }

        .product-nav-group:hover > .product-nav-submenu,
        .product-nav-group:focus-within > .product-nav-submenu,
        .product-nav-subitem:hover > .product-nav-third,
        .product-nav-subitem:focus-within > .product-nav-third {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(0);
        }

        .product-nav-submenu a,
        .product-nav-subitem > a {
            padding: 13px 16px;
            font-size: 16px;
            font-weight: 600;
            min-height: 46px;
        }

        .product-nav-title:hover,
        .product-nav-title:focus,
        .product-nav-submenu a:hover,
        .product-nav-submenu a:focus,
        .product-nav-subitem > a:hover,
        .product-nav-subitem > a:focus {
            color: #9b895c;
            background: rgba(201, 177, 118, 0.1);
        }

        .product-nav-third {
            left: 100%;
            top: 0;
        }

        .mobile-product-links {
            display: grid;
            gap: 8px;
            padding: 0 0 10px 16px;
            border-bottom: 1px solid #f5f5f5;
        }

        #mobileMenu .mobile-product-links details {
            display: grid;
            gap: 6px;
        }

        #mobileMenu .mobile-product-links summary {
            cursor: pointer;
            color: #343434;
            font-size: 17px;
            font-weight: 800;
            line-height: 1.35;
            list-style: none;
        }

        #mobileMenu .mobile-product-links summary::-webkit-details-marker {
            display: none;
        }

        #mobileMenu .mobile-product-links summary::after {
            content: " +";
            color: #9b895c;
        }

        #mobileMenu .mobile-product-links details[open] > summary::after {
            content: " -";
        }

        #mobileMenu .mobile-product-links a {
            padding: 3px 0 3px 14px;
            border-bottom: 0;
            color: #666;
            font-size: 15px;
            line-height: 1.35;
            text-transform: none;
        }

        #mobileMenu .mobile-product-nested {
            padding-left: 14px;
        }
        #menuBtn {
            display: block;
            color: #fff;
        }

        #menuBtn::before {
            content: none;
        }

        #menuBtn i {
            display: inline-block;
        }

        .menu-fallback {
            display: none;
            width: 24px;
            height: 2px;
            background: #fff;
            box-shadow: 0 -7px 0 #fff, 0 7px 0 #fff;
        }

        #mobileMenu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 16px;
        }

        .mobile-nav a {
            padding: 8px 0;
            border-bottom: 1px solid #f0ede8;
            text-transform: uppercase;
            font-size: 15px;
        }

        .mobile-lang {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            padding-top: 8px;
        }

        .navbar-scroll {
            background: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-scroll .logo img {
            filter: none;
        }

        .navbar-scroll .desktop-nav,
        .navbar-scroll .lang-switch {
            color: #232323;
        }

        .navbar-scroll #menuBtn {
            color: #232323;
        }

        .navbar-scroll .menu-fallback {
            background: #232323;
            box-shadow: 0 -7px 0 #232323, 0 7px 0 #232323;
        }

        /* Contact replica page styles */
.contact-replica {
            --ink: #090909;
            --olive: #0d1b00;
            --paper: #fff;
            --cream: #f8f5ef;
            --line: #dedbd6;
            --muted: #9d9a96;
            --gold: #b7aa85;
            --gold-deep: #6e5e32;
            --field-text: #8d8782;
            --font-sans: "Microsoft YaHei", "PingFang SC", "Noto Sans", Arial, Helvetica, sans-serif;
        }

        .contact-replica * {
            box-sizing: border-box;
        }
.contact-replica {
            margin: 0;
            background: var(--paper);
            color: var(--ink);
            font-family: var(--font-sans);
        }

        .contact-replica img {
            display: block;
            width: 100%;
        }

        .contact-replica a {
            color: inherit;
            text-decoration: none;
        }

        .contact-replica button,
        .contact-replica input,
        .contact-replica select,
        .contact-replica textarea {
            font-family: var(--font-sans);
        }

        .contact-replica.page {
            min-height: 100vh;
            overflow: hidden;
        }

        .contact-replica .hero {
            position: relative; 
            background: var(--olive);
            color: var(--paper);
            width: 100%;
            aspect-ratio: 1280 / 533;
            min-height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 140px 20px;
        }

        .contact-replica .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(12, 8, 3, 0.62), rgba(12, 8, 3, 0.62));
            opacity: 1;
            pointer-events: none;
        }

        .contact-replica .hero-video {
            position: absolute;
            inset: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            pointer-events: none;
        }

        .contact-replica .hero-inner {
            position: relative;
            z-index: 2;
            width: min(1200px, 100%); 
            transform: translateY(90px);
        }

        .contact-replica .hero h1 {
            max-width: 1180px;
            margin: 0 auto;
            color: #f5f2ed;
            font-family: var(--font-sans);
            font-size: clamp(34px, 3.4vw, 54px);
            font-weight: 800;
            letter-spacing: 0.05em;
            line-height: 1.15;
            text-transform: uppercase;
        }

        .contact-replica .hero p {
            width: min(610px, 100%);
            margin: 36px auto 0;
            color: rgba(245, 242, 237, 0.38);
            font-family: var(--font-sans);
            font-size: clamp(12px, 1.05vw, 17px);
            font-weight: 700;
            letter-spacing: 0.08em;
            line-height: 1.35;
        }

        .contact-replica .hero-actions {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 58px;
        }

        .contact-replica .hero-button {
            min-width: 172px;
            padding: 19px 30px 18px;
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 999px;
            color: #f7f3ec;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .contact-replica .hero-button.primary {
            background: #fff;
            color: #2d2317;
            border-color: #fff;
            --button-hover-text: #2d2317;
        }

        .contact-replica .hero-button:not(.primary) {
            --button-hover-text: #2d2317;
        }

        .contact-replica .submit-button,
        .contact-replica .reach-cta {
            --button-hover-text: #2d2317;
        }

        .contact-replica .hero-button,
        .contact-replica .submit-button,
        .contact-replica .reach-cta {
            --button-glow: rgba(201, 177, 118, 0.42);
            --button-fill: rgba(255, 250, 236, 0.78);
            --button-hover-text: currentColor;
            isolation: isolate;
            overflow: hidden;
            position: relative;
            transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
        }

        .contact-replica .hero-button::before,
        .contact-replica .submit-button::before,
        .contact-replica .reach-cta::before {
            content: "";
            position: absolute;
            top: -40%;
            bottom: -40%;
            left: -75%;
            width: 56%;
            z-index: 0;
            background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.38) 48%, rgba(201, 177, 118, 0.18) 72%, transparent 100%);
            opacity: 0.55;
            pointer-events: none;
            transform: translateX(0) skewX(-18deg);
            transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
        }

        .contact-replica .hero-button::after,
        .contact-replica .submit-button::after,
        .contact-replica .reach-cta::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            border-radius: inherit;
            background:
                linear-gradient(135deg, var(--button-fill), rgba(201, 177, 118, 0.2)),
                linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
            opacity: 0;
            pointer-events: none;
            transform: scaleX(0);
            transform-origin: left center;
            transition: opacity 0.3s ease, transform 0.42s ease;
        }

        .button-label {
            position: relative;
            z-index: 2;
        }

        .contact-replica .hero-button:hover,
        .contact-replica .submit-button:hover,
        .contact-replica .reach-cta:hover {
            color: var(--button-hover-text);
            border-color: rgba(201, 177, 118, 0.88);
            box-shadow: 0 10px 28px var(--button-glow), inset 0 0 0 1px rgba(255, 255, 255, 0.56);
            transform: translateY(-2px);
        }

        .contact-replica .hero-button:hover::before,
        .contact-replica .submit-button:hover::before,
        .contact-replica .reach-cta:hover::before {
            opacity: 1;
            transform: translateX(360%) skewX(-18deg);
        }

        .contact-replica .hero-button:hover::after,
        .contact-replica .submit-button:hover::after,
        .contact-replica .reach-cta:hover::after {
            opacity: 1;
            transform: scaleX(1);
        }

        .contact-replica .submit-button:hover,
        .contact-replica .reach-cta:hover {
            background-color: #fffaf0;
        }

        .contact-replica .section {
            width: min(1600px, calc(100% - 96px));
            margin: 0 auto;
        }

        .contact-replica .inquiry {
            padding: 72px 0 0 0;
        }

        .contact-replica .inquiry-head {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 82px;
            align-items: start;
            width: min(1420px, 100%);
            margin: 0 auto 28px;
            padding: 0 22px;
        }

        .contact-replica .inquiry-head h2 {
            margin: 0;
            max-width: 590px;
            font-size: clamp(33px, 2.7vw, 49px);
            line-height: 0.95;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .contact-replica .inquiry-head p {
            margin: 16px 0 0;
            max-width: 560px;
            color: #8d8782;
            font-size: 12px; 
            line-height: 1.45;
        }

        .contact-replica .contact-form {
            width: min(1420px, 100%);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px 82px; 
            padding: 0 22px;
        }

        .contact-replica .field-full {
            grid-column: 1 / -1;
        }

        .contact-replica .contact-form input,
        .contact-replica .contact-form select,
        .contact-replica .contact-form textarea {
            width: 100%;
            min-height: 78px;
            border: 1px solid #e2ded8;
            border-radius: 24px;
            background: #fff;
            color: var(--field-text);
            font-size: 20px;
            font-weight: 400;
            letter-spacing: 0.02em;
            outline: none;
            padding: 0 44px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
        }

        .contact-replica .contact-form input::placeholder,
        .contact-replica .contact-form textarea::placeholder {
            color: var(--field-text);
            opacity: 1;
        }

        .contact-replica .contact-form textarea {
            min-height: 194px;
            resize: vertical;
            padding-top: 26px;
        }

        .contact-replica .contact-form select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.25L7 7.25L13 1.25' stroke='%238d8782' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-position: right 38px center;
            background-repeat: no-repeat;
            background-size: 14px 9px;
            padding-right: 82px;
        }

        .contact-replica .contact-form select option {
            color: var(--field-text);
        }

        .contact-replica .submit-wrap {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        .contact-replica .submit-button {
            min-width: 220px;
            border: 0;
            border-radius: 999px;
            background: var(--olive);
            color: #fff;
            cursor: pointer;
            font-family: var(--font-sans);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.08em;
            padding: 18px 34px;
            text-transform: uppercase;
        }

        .contact-replica .success {
                padding: 40px 0 76px 0;
        }

        .contact-replica .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-replica .section-title h2 {
            margin: 0;
            font-family: var(--font-sans);
            font-size: clamp(40px, 4vw, 76px);
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .contact-replica .section-title p {
            max-width: 720px;
            margin: 26px auto 0;
            color: #717171;
            font-family: var(--font-sans);
            font-size: clamp(16px, 1.3vw, 23px);
            font-weight: 500;
            line-height: 1.38;
        }

        .contact-replica .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 44px;
        }

        .contact-replica .service-card {
            min-height: 250px;
            border: 1px solid #e5e5e5;
            border-radius: 24px;
            overflow: hidden;
            background: #fff;
            padding: 30px 30px 28px;
            position: relative;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .contact-replica .service-card:hover {
            border-color: rgba(183, 170, 133, 0.55);
            transform: translateY(-9px);
            box-shadow: 0 24px 54px rgba(0, 0, 0, 0.1);
        }

        .contact-replica .service-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.86) 50%, transparent 62%, transparent 100%);
            opacity: 0;
            pointer-events: none;
            transform: translateX(-120%);
            transition: transform 0.7s ease, opacity 0.7s ease;
        }

        .contact-replica .service-card:hover::after {
            opacity: 1;
            transform: translateX(120%);
        }

        .contact-replica .service-number {
            position: absolute;
            top: 18px;
            right: 22px;
            color: #f3f3f3;
            font-family: var(--font-sans);
            font-size: clamp(52px, 4.5vw, 76px);
            font-weight: 900;
            line-height: 1;
        }

        .contact-replica .service-info {
            position: relative;
            z-index: 1;
        }

        .contact-replica .icon-bubble {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: #f4f4f4;
            color: #111;
            font-family: var(--font-sans);
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 34px;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .contact-replica .service-card:hover .icon-bubble {
            background: #ece4d1;
            transform: rotate(-6deg) scale(1.06);
        }

        .contact-replica .service-info h3 {
            margin: 0 0 20px;
            font-family: var(--font-sans);
            font-size: clamp(25px, 2vw, 36px);
            font-weight: 800;
            line-height: 1.1;
        }

        .contact-replica .service-info p {
            margin: 0;
            color: #777;
            font-family: var(--font-sans);
            font-size: clamp(14px, 1.05vw, 18px);
            font-weight: 500;
            line-height: 1.45;
        }

        .contact-replica .service-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 24px;
            color: #111;
            font-family: var(--font-sans);
            font-size: 16px;
            font-weight: 800;
        }

        .contact-replica .reach {
            background:
                linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.24)),
                url("/skin/static/image/contact-direct-bg.jpg") center/cover;
            color: #fff;
            overflow: hidden;
            padding: 96px 0 100px;
            position: relative;
        }

        .contact-replica .reach::before {
            content: "";
            position: absolute;
            top: -220px;
            right: -180px;
            width: 620px;
            height: 620px;
            background: radial-gradient(circle, rgba(183, 170, 133, 0.28), rgba(183, 170, 133, 0.06) 42%, transparent 70%);
            animation: glowDrift 8s ease-in-out infinite alternate;
            pointer-events: none;
        }

        .contact-replica .reach .section {
            width: min(1700px, calc(100% - 110px));
            position: relative;
            z-index: 1;
        }

        .contact-replica .reach-layout {
            display: grid;
            grid-template-columns: 0.9fr 1.35fr;
            gap: 64px;
            align-items: stretch;
        }

        .contact-replica .reach-intro {
            min-height: 470px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 32px;
            background: rgba(255, 255, 255, 0.025);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 48px;
            backdrop-filter: blur(8px);
        }

        .contact-replica .reach-label {
            color: var(--gold);
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .contact-replica .reach h2 {
            margin: 24px 0 26px;
            font-family: var(--font-sans);
            font-size: clamp(42px, 4.4vw, 82px);
            font-weight: 900;
            line-height: 0.96;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .contact-replica .reach-intro p {
            max-width: 560px;
            margin: 0;
            color: #cacaca;
            font-family: var(--font-sans);
            font-size: 18px;
            line-height: 1.55;
        }

        .contact-replica .reach-cta {
            display: inline-flex;
            width: fit-content;
            align-items: center;
            gap: 12px;
            border-radius: 999px;
            background: #fff;
            color: #111;
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: 900;
            letter-spacing: 0.08em;
            padding: 18px 28px;
            text-transform: uppercase;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .contact-replica .reach-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .contact-replica .reach-card {
            min-height: 220px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 26px;
            background: rgba(255, 255, 255, 0.04);
            padding: 34px;
            backdrop-filter: blur(8px);
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
        }

        .contact-replica .reach-card::before {
            content: "";
            position: absolute;
            inset: -1px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 38%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .contact-replica .reach-card:hover {
            border-color: rgba(183, 170, 133, 0.5);
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-6px);
        }

        .contact-replica .reach-card:hover::before {
            opacity: 1;
        }

        .contact-replica .reach-card.wide {
            grid-column: 1 / -1;
        }

        .contact-replica .reach-icon {
            width: 52px;
            height: 52px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: var(--gold);
            font-family: var(--font-sans);
            font-size: 20px;
            font-weight: 900;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }

        .contact-replica .reach-icon svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
        }

        .contact-replica .reach-icon i {
            font-size: 24px;
            line-height: 1;
        }

        .contact-replica .reach-card h3 {
            margin: 0 0 18px;
            font-family: var(--font-sans);
            font-size: 28px;
            font-weight: 900;
            position: relative;
            z-index: 1;
        }

        .contact-replica .reach-card p {
            margin: 0;
            color: #d2d2d2;
            font-family: var(--font-sans);
            font-size: 17px;
            line-height: 1.45;
            position: relative;
            z-index: 1;
        }

        .contact-replica .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity 0.7s ease, transform 0.7s ease;
            transition-delay: var(--delay, 0s);
        }

        .contact-replica .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes glowDrift {
            from {
                transform: translate3d(0, 0, 0) scale(1);
            }
            to {
                transform: translate3d(-90px, 80px, 0) scale(1.12);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .contact-replica *,
            .contact-replica *::before,
            .contact-replica *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }

            .contact-replica .reveal {
                opacity: 1;
                transform: none;
            }
        }

        .contact-replica .process {
            padding: 86px 0 42px;
        }

        .contact-replica .process-head {
            display: grid;
            grid-template-columns: 1.04fr 1fr;
            align-items: end;
            gap: 90px;
            margin-bottom: 58px;
        }

        .contact-replica .process-head h2 {
            margin: 0;
            font-family: var(--font-sans);
            font-size: clamp(42px, 4.1vw, 72px);
            font-weight: 900;
            line-height: 0.92;
            letter-spacing: -0.05em;
            text-transform: uppercase;
        }

        .contact-replica .process-head p {
            margin: 0 0 14px;
            max-width: 640px;
            color: #b6b0aa;
            font-family: var(--font-sans);
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.08em;
            line-height: 1.35;
        }

        .contact-replica .process-body {
            display: grid;
            grid-template-columns: 1fr 1.55fr;
            gap: 92px;
            align-items: center;
        }

        .contact-replica .process-image {
            position: relative;
            min-height: 523px;
            border-radius: 44px;
            overflow: hidden;
            background: #e7e2da;
            border: 1px solid #e0d8cd;
        }

        .contact-replica .process-image iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .contact-replica .process-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 70px 78px;
        }

        .contact-replica .process-item h3 {
            margin: 0 0 24px;
            font-family: var(--font-sans);
            font-size: 29px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .contact-replica .process-item p {
            min-height: 50px;
            margin: 0 0 42px;
            color: #b0aba5;
            font-family: var(--font-sans);
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.06em;
            line-height: 1.4;
        }

        .contact-replica .process-line {
            display: block;
            width: min(286px, 100%);
            height: 5px;
            background: #000;
        }

        .contact-replica .faq {
            padding: 54px 0 104px;
        }

        .contact-replica .faq h2 {
            max-width: 730px;
            margin: 0 0 58px;
            font-family: var(--font-sans);
            font-size: clamp(42px, 4.2vw, 72px);
            font-weight: 900;
            line-height: 0.96;
            letter-spacing: -0.05em;
            text-transform: uppercase;
        }

        .contact-replica .faq-list {
            width: min(1580px, calc(100% - 64px));
            margin: 0 auto;
        }

        .contact-replica .faq-item {
            border-bottom: 1px solid #d6d4d1;
        }

        .contact-replica .faq-question {
            width: 100%;
            border: 0;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 22px 0 21px;
            color: #312b25;
            cursor: pointer;
            font-size: 16px;
            font-weight: 700;
            text-align: left;
        }

        .contact-replica .faq-chevron {
            width: 12px;
            height: 12px;
            border-right: 2px solid #222;
            border-bottom: 2px solid #222;
            transform: rotate(45deg);
            transition: transform 0.2s ease;
            flex: 0 0 auto;
        }

        .contact-replica .faq-item.active .faq-chevron {
            transform: rotate(-135deg);
        }

        .contact-replica .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.25s ease;
        }

        .contact-replica .faq-answer > div {
            overflow: hidden;
        }

        .contact-replica .faq-answer p {
            margin: 0;
            padding: 0 0 22px;
            color: #817b75;
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.5;
        }

        .contact-replica .faq-item.active .faq-answer {
            grid-template-rows: 1fr;
        }

        .contact-replica .footer {
            min-height: 790px;
            background:
                linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)),
                url("/skin/static/image/footer-bg.jpg") center/cover;
            color: #fff;
            padding: 190px 0 120px;
        }

        .contact-replica .footer-text {
            width: min(1660px, calc(100% - 120px));
            margin: 0 auto;
            font-family: var(--font-sans);
            font-size: clamp(28px, 2.5vw, 46px);
            line-height: 1.25;
            letter-spacing: -0.02em;
        }

        @media (max-width: 1100px) {
            .contact-replica .section,
            .contact-replica .reach .section,
            .contact-replica .footer-text {
                width: min(100% - 40px, 900px);
            }

            .contact-replica .inquiry-head,
        .contact-replica .process-head,
        .contact-replica .process-body {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .contact-replica .contact-form,
        .contact-replica .service-grid,
        .contact-replica .reach-layout,
        .contact-replica .reach-grid,
        .contact-replica .process-grid {
                grid-template-columns: 1fr;
            }

            .contact-replica .contact-form {
                gap: 18px;
                padding: 0;
                background: transparent;
            }

            .contact-replica .inquiry-head {
                padding: 0;
            }

            .contact-replica .service-card {
                min-height: 240px;
            }

            .contact-replica .reach {
                padding: 76px 0 82px;
            }

            .contact-replica .reach-intro {
                min-height: 380px;
                padding: 34px;
            }

            .contact-replica .process-image {
                min-height: 340px;
            }
        }

        @media (max-width: 620px) {
            .contact-replica {
                overflow-x: hidden;
            }

            .contact-replica .hero {
                min-height: 500px;
                padding: 52px 16px 48px;
            }

            .contact-replica .hero-inner {
                width: min(100%, 330px);
                max-width: 100%;
                min-width: 0;
                transform: translateY(24px);
            }

            .contact-replica .hero h1 {
                max-width: 100%;
                min-width: 0;
                font-size: clamp(31px, 8.2vw, 36px);
                letter-spacing: 0;
                overflow-wrap: break-word;
            }

            .contact-replica .hero p {
                width: min(100%, 340px);
                letter-spacing: 0;
                overflow-wrap: break-word;
            }

            .contact-replica .hero-actions {
                flex-direction: column;
                align-items: center;
                margin-top: 64px;
            }

            .contact-replica .hero-button {
                min-width: 0;
                width: min(100%, 174px);
            }

            .contact-replica .hero::before {
                inset: 0;
                width: 100%;
                height: 100%;
                background-position: center;
            }

            .contact-replica .section {
                width: calc(100% - 32px);
                max-width: 100%;
                padding-inline: 0;
            }

            .contact-replica .inquiry {
                padding: 48px 0 0 0;
            }

            .contact-replica .success {
                padding: 54px 0;
            }

            .contact-replica .reach {
                padding: 62px 0;
            }

            .contact-replica .process {
                padding: 58px 0 ;
            }

            .contact-replica .faq {
                padding: 38px 0;
            }

            .contact-replica .inquiry-head,
            .contact-replica .contact-form {
                width: 100%;
                min-width: 0;
            }

            .contact-replica .inquiry-head {
                display: block;
            }

            .contact-replica .inquiry-head h2 {
                width: min(100%, 330px);
                max-width: 330px;
                min-width: 0;
                font-size: clamp(27px, 7.4vw, 32px);
                line-height: 1.05;
                letter-spacing: 0;
                overflow-wrap: anywhere;
                text-wrap: balance;
            }

            .contact-replica .inquiry-head p {
                width: min(100%, 340px);
                max-width: 340px;
                overflow-wrap: anywhere;
            }

            .contact-replica .contact-form input,
            .contact-replica .contact-form select,
            .contact-replica .contact-form textarea {
                min-width: 0;
                min-height: 64px;
                border-radius: 18px;
                font-size: 16px;
                padding-inline: 22px;
            }

            .contact-replica .contact-form select {
                background-position: right 24px center;
                padding-right: 56px;
            }

            .contact-replica .section-title {
                margin-bottom: 40px;
            }

            .contact-replica .process-head,
            .contact-replica .faq h2 {
                margin-bottom: 40px;
            }

            .contact-replica .reach-card p {
                font-size: 16px;
            }

            .contact-replica .process-grid {
                gap: 42px;
            }

            .contact-replica .faq-list {
                width: min(100%, calc(100% - 40px));
            }

            .contact-replica .footer {
                min-height: 520px;
                padding-top: 120px;
            }
        }

        .contact-replica #contact-form {
            scroll-margin-top: 110px;
        }

        .index-footer-main {
            width: 100%;
            background-color: #1a1a1a;
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                              url('/skin/static/image/footer-main-bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .footer-banner {
            margin: 0 auto;
            max-width: 1400px;
            width: 100%;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 50px;
            color: #fff;
        }

        .footer-banners {
            margin: 0 auto;
            max-width: 1400px;
            width: 100%;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 50px;
            color: #fff;
        }

        .banner-title {
            font-size: 2.5rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 30px;
            width: 100%;
        }

        .banner-button-wrap {
            width: 100%;
            text-align: right;
        }

        .banner-link {
            padding: 12px 25px;
            border: 1px solid #d4b06a;
            background: transparent;
            color: #fff;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: inline-block;
        }

        .banner-link:hover {
            background-color: #d4b06a;
            color: #1a1a1a;
        }

        .index-footer {
            max-width: 1400px;
            margin: 0 auto;
            color: #fff;
            padding: 40px 50px;
        }

        .index-footer-bg {
            width: 100%;
            background-color: #1a1a1a;
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                              url('/skin/static/image/footer-bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .inquiry-title {
            font-size: 2rem;
            font-weight: bold;
            text-align: left;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .inquiry-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .footer-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-form-group label {
            font-size: 0.9rem;
            text-transform: uppercase;
            opacity: 0.9;
        }

        .footer-form-group input,
        .footer-form-group select,
        .footer-form-group textarea {
            font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans", Arial, Helvetica, sans-serif;
            padding: 12px 15px;
            border: none;
            border-radius: 0;
            font-size: 1rem;
            width: 100%;
            background: #fff;
            color: #8d8782;
        }

        .footer-form-group input::placeholder,
        .footer-form-group textarea::placeholder {
            color: #8d8782;
            opacity: 1;
        }

        .footer-form-group select option {
            color: #8d8782;
        }

        .footer-form-group.message {
            grid-column: 1 / 3;
        }

        .footer-form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .submit-btn {
            grid-column: 2 / 3;
            text-align: right;
        }

        .submit-btn button {
            font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans", Arial, Helvetica, sans-serif;
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 12px 40px;
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            transition: background 0.3s ease;
        }

        .submit-btn button:hover {
            background: var(--accent-deep);
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            align-items: center;
        }

        .social-icons a {
            color: #fff;
            font-size: 1.5rem;
        }

        .social-icons a:hover {
            color: #ff8c00;
        }

        .banner-link,
        .submit-btn button {
            position: relative;
            overflow: hidden;
            transition: transform 0.35s ease, background 0.35s ease, background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
        }

        .banner-link::before,
        .submit-btn button::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.28) 48%, transparent 100%);
            transform: translateX(-120%);
            transition: transform 0.65s ease;
            pointer-events: none;
        }

        .banner-link:hover {
            box-shadow: 0 12px 26px rgba(212, 176, 106, 0.24);
            transform: translateY(-3px);
        }

        .banner-link:hover::before,
        .submit-btn button:hover::before {
            transform: translateX(120%);
        }

        .footer-form-group input,
        .footer-form-group select,
        .footer-form-group textarea {
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .footer-form-group input:focus,
        .footer-form-group select:focus,
        .footer-form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(212, 176, 106, 0.72), 0 10px 22px rgba(0,0,0,0.16);
            transform: translateY(-1px);
        }

        .submit-btn button:hover {
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
            transform: translateY(-3px);
        }

        .social-icons a {
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
        }

        .footer-fx {
            opacity: 0;
            transform: translateY(34px);
            transition: opacity 0.78s ease, transform 0.78s ease;
        }

        .footer-fx.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            .footer-fx {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        .copyright {
            font-size: 0.8rem;
            opacity: 0.8;
            text-align: left;
        }

        @media (min-width: 1024px) {
            .desktop-nav {
                display: flex;
            }

            .lang-switch {
                display: flex;
            }

            #menuBtn {
                display: none;
            }

            #mobileMenu {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .banner-title {
                font-size: 1.8rem;
            }

            .banner-button-wrap {
                text-align: center;
            }

            .inquiry-form {
                grid-template-columns: 1fr;
            }

            .footer-form-group.message,
            .submit-btn {
                grid-column: 1 / 2;
            }

            .submit-btn {
                text-align: center;
            }

            .inquiry-title,
            .copyright {
                text-align: center;
            }

            .social-icons {
                justify-content: center;
            }

            .footer-banner,
            .footer-banners,
            .index-footer {
                padding-left: 24px;
                padding-right: 24px;
            }
        }
        /* Unified homepage navigation */
        #navbar {
            background: transparent;
            box-shadow: none;
        }

        #navbar .logo img {
            filter: invert(1);
        }

        #navbar .desktop-nav,
        #navbar .lang-switch,
        #navbar #menuBtn {
            color: #fff;
        }

        #navbar .menu-fallback {
            background: #fff;
            box-shadow: 0 -7px 0 #fff, 0 7px 0 #fff;
        }

        #navbar.navbar-scroll {
            background: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        #navbar.navbar-scroll .logo img {
            filter: none;
        }

        #navbar.navbar-scroll .desktop-nav,
        #navbar.navbar-scroll .lang-switch,
        #navbar.navbar-scroll #menuBtn {
            color: #232323;
        }

        #navbar.navbar-scroll .menu-fallback {
            background: #232323;
            box-shadow: 0 -7px 0 #232323, 0 7px 0 #232323;
        }

        #navbar .desktop-nav > a.active,
        #navbar .desktop-nav > .product-nav > a.active,
        #navbar .mobile-nav a.active,
        #navbar.navbar-scroll .desktop-nav > a.active,
        #navbar.navbar-scroll .desktop-nav > .product-nav > a.active,
        #navbar.navbar-scroll .mobile-nav a.active {
            color: #D4B989;
            font-weight: 700;
        }

        #navbar .desktop-nav > a:hover,
        #navbar .desktop-nav > .product-nav > a:hover,
        #navbar .lang-switch a:hover {
            color: #D4B989;
        }

        .product-nav-panel > .product-nav-direct {
            min-height: 44px;
            font-size: 15px;
            font-weight: 700;
        }

        .product-nav-direct::after {
            content: none !important;
        }

.contact-delay-000 { --delay: 0s; }
.contact-delay-012 { --delay: 0.12s; }
.contact-delay-024 { --delay: 0.24s; }
.contact-delay-001 { --delay: 0.1s; }
.contact-delay-002 { --delay: 0.2s; }
.contact-delay-003 { --delay: 0.3s; }

.contact-replica .form-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-replica .form-captcha {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-replica .form-captcha label {
    color: #8d8782;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-replica .captcha-control {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-replica .captcha-image {
    flex: 0 0 auto;
    width: 86px;
    height: 34px;
    border: 1px solid #d8cda8;
    background: #f8efda;
    object-fit: cover;
}

.contact-replica .contact-form .captcha-control input {
    min-height: 54px;
    max-width: 220px;
    border-radius: 18px;
    padding: 0 22px;
    font-size: 16px;
}

.contact-replica .captcha-refresh {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #c9b176;
    border-radius: 999px;
    background: #fff;
    color: #4c463d;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}

.contact-replica .captcha-refresh:hover {
    background: #c9b176;
    color: #fff;
}

.contact-replica .inquiry-feedback {
    min-height: 20px;
    margin: -4px 0 0;
    color: #746c61;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.contact-replica .inquiry-feedback.is-success {
    color: #8a7436;
}

.contact-replica .inquiry-feedback.is-error {
    color: #b54735;
}

@media (max-width: 768px) {
    .contact-replica .captcha-control {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .contact-replica .contact-form .captcha-control input {
        max-width: none;
        flex: 1 1 170px;
    }
}
