
        
        /* Navigation Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background: rgba(121, 106, 86, 0.70);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }
        .header-logo {
            display: table-cell;
            vertical-align: middle;
            color: #ffffff;
            font-size: 20px;
            letter-spacing: 2px;
            font-weight: 300;
        }
        .header-nav {
            display: table-cell;
            vertical-align: middle;
            text-align: right;
        }
        .header-nav a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 11px;
            letter-spacing: 1px;
            margin-left: 24px;
            text-transform: uppercase;
        }
        .header-nav a:hover {
            color: #ffffff;
        }

        /* 🟢 新增：手動版漢堡按鈕樣式 (預設在桌面版隱藏) */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }
        .menu-toggle span {
            width: 100%;
            height: 2px;
            background-color: #ffffff;
            transition: all 0.3s ease;
        }
        
        

    

    /* 「工藝」區塊 section 6 */
    .craftsmanship-section {
        background-color: #d8d0ca;
        padding: 60px 0;
        text-align: center;
    }
    .craftsmanship-title {
        font-size: 28px;
        font-weight: 300;
        color: #555;
        margin-bottom: 40px;
    }
    .craftsmanship-image-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .craftsmanship-image {
        width: 100%;
        height: auto;
    }
        .more-button {
            display: inline-block;
            padding: 10px 42px;
            border: 1px solid #8c857b;
            color: #2c2520;
            text-decoration: none;
            font-size: 11px;
            letter-spacing: 3px;
            transition: all 0.3s ease;
        }
        .more-button:hover {
            background-color: #2c2520;
            color: #ffffff;
            border-color: #2c2520;
        }
        
        
        
        /* 📱 Mobile RWD 調整 */
        @media (max-width: 768px) {
            .dot-navigation {
                display:none;
            }
            #hero_info_01{
                height:65vh;
                background-attachment: inherit;
            }
            .footer_big {
                width: 100%;
                display: grid;
            }

            header { 
                padding: 20px; 
            }
            
            /* 🟢 變更：手機版時，原本的橫排導覽列轉為滿版下拉選單 */
            .header-nav { 

                display: none; /* 預設先隱藏選單 */
                position: absolute;
                top: 100%; /* 從 Header 下方開始展延 */
                left: 0;
                width: 100%;
                background: rgba(51, 44, 34, 0.95);
                backdrop-filter: blur(10px);
                padding: 20px 0;
                padding-bottom: 400px;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            }
            
            /* 🟢 新增：當有 .active 類別時顯示手機選單 */
            .header-nav.active {
                display: block;
            }

            /* 🟢 變更：手機選單內的按鈕改為直排、置中、擴大點擊範圍 */
            .header-nav a {
                display: block;
                text-align: center;
                padding: 23px 0;
                margin-left: 0; /* 移除原本桌機版的左邊距 */
                font-size: 14px; /* 手機版稍微放大字體方便手指點擊 */
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            .header-nav a:last-child {
                border-bottom: none;
            }

            /* 🟢 新增：手機版顯示漢堡按鈕 */
            .menu-toggle {
                display: flex;
            }

            /* 🟢 新增：漢堡按鈕點擊後的 X 動效變形 */
            .menu-toggle.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .menu-toggle.active span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .split-cell { display: block; width: 100%; height: 360px; }
            .split-text-box { padding: 50px 20px; height: auto; }
            footer { display: block; text-align: center; }
            .footer-left, .footer-right { display: block; width: 100%; text-align: center; }
            .footer-right { margin-top: 30px; }
            .logo-group { margin: 0 15px; text-align: center; }
        }


    /* Footer styling */
        footer {
            background-color: #766A63;
            color: #dcd5cc;
            padding: 50px 60px;
            display: table;
            width: 100%;
            margin-top: 20px;
        }
        .footer_big{
            display: table-row-group;
        }
        .footer-left {
            display: table-cell;
            vertical-align: top;
            font-size: 14px;
            line-height: 1.5;
            letter-spacing: 1px;
        }
        .footer-left a {
            color: #ffffff;
            text-decoration: none;
        }
        .footer-right {
            display: table-cell;
            vertical-align: top;
            text-align: right;
        }
        .logo-group {
            display: inline-block;
            vertical-align: top;
            text-align: left;
            margin-left: 40px;
        }
        .logo-title {
            font-size: 14px;
            color: #FFF;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        .logo-name {
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 1px;
            color: #ffffff;
        }
        .logo-name-sub {
            font-size: 14px;
            color: #e6dfd5;
        }
        .logo-name-sub img{
            display:inline-block;
            width:152px;
            font-size: 11px;
            color: #e6dfd5;
        }
         .logo-name-sub2 img{
            display:inline-block;
            height:50px;
            font-size: 14px;
            color: #e6dfd5;
            margin-left: 20px;
        }

        @media (max-width:1111px) {
            .footer_big {
                display: inline-grid;
                width: 100%;
                display: grid;
            }
            .footer-left {
                text-align: center;
                width: 100%;
            }
            .footer-right {
                text-align: center;
                width: 100%;
                padding-top:20px;
            }
        }
        @media (max-width: 768px) {
            .footer-right {
                text-align: center;
                margin:0;
            }
            .logo-title {
                text-align: center;
            }
            .logo-group {
                padding-top: 40px;
                margin: 0;
            }

        }
        







        