/* Page: home */

:root {
            
            --primary-gold: #F5C745; 
            --secondary-green: #2A5F2E; 
            --bg-cream: #FAFAF8; 
            --text-dark: #1A1A1A; 
            --text-gray: #555555; 
            --font-main: 'Noto Sans SC', sans-serif; 
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
            --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
            --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
        }
        
        body {
            font-family: var(--font-main); 
            background-color: var(--bg-cream); 
            color: var(--text-dark); 
            overflow-x: hidden; 
            line-height: 1.6; 
        }
        ul { list-style: none; } 

        
        .site-header--home {
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100%; 
            z-index: 1000; 
            padding: 40px 5%; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            transition: var(--transition); 
            background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent); 
        }

        
        .site-header--home.is-scrolled {
            padding: 15px 5%; 
            background-color: var(--bg-cream); 
            box-shadow: 0 4px 20px rgba(0,0,0,0.05); 
        }

        .site-header__brand {
            font-size: 3.5rem; 
            font-weight:000; 
            color: #fff; 
            letter-spacing: 2px; 
            text-shadow: 0 2px 10px rgba(0,0,0,0.1); 
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.5s ease; 
            
            display: flex;
            align-items: center;
            gap: 10px; 
            position: relative;
            
            font-family: "青柳隶书", "Noto Sans SC", sans-serif; 
            
        }

        
        .site-header__seal {
            width: 40px; 
            height: 40px; 
            
            
            
            
            
            transition: var(--transition); 
        }

        
        .site-header--home.is-scrolled .site-header__brand {
            color: var(--secondary-green); 
            font-size: 2rem; 
            text-shadow: none;
            
            font-size: 2rem;
        }

        
        .site-header--home.is-scrolled .site-header__seal {
            width: 30px;
            height: 30px;
        }

        .site-header__menu {
            display: flex; 
            gap: 40px; 
        }

        .site-header__link {
            color: #fff; 
            font-size: 1.1rem; 
            font-weight: 500; 
            position: relative; 
        }

        
        .site-header__link::after {
            content: ''; 
            position: absolute; 
            bottom: -5px; 
            left: 0; 
            width: 0; 
            height: 2px; 
            background-color: var(--primary-gold); 
            transition: var(--transition); 
        }

        
        .site-header__link:hover::after { width: 100%; }

        
        .site-header--home.is-scrolled .site-header__link { color: var(--text-dark); }

        
        .home__hero {
            position: relative; 
            width: 100%; 
            height: 100vh; 
            overflow: hidden; 
            display: flex; 
            align-items: center;
            justify-content: center;
        }

        .home__slide {
            position: absolute; 
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0; 
            transition: opacity 1.5s ease-in-out; 
            background-size: cover; 
            background-position: center; 
        }

        .home__slide.is-active { opacity: 1; } 

        
        .home__overlay {
            position: absolute; 
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(42, 95, 46, 0.3); 
            mix-blend-mode: multiply; 
        }

        .home__hero-content {
            position: relative; 
            z-index: 10; 
            text-align: center; 
            color: #fff; 
            max-width: 800px; 
            padding: 0 20px; 
        }

        .home__hero-title {
            font-size: 4rem; 
            font-weight: 900; 
            margin-bottom: 20px; 
            letter-spacing: 5px; 
            text-shadow: 0 4px 20px rgba(0,0,0,0.5); 
        }

        .home__hero-subtitle {
            font-size: 1.2rem; 
            font-weight: 300; 
            letter-spacing: 2px; 
            border-top: 1px solid var(--primary-gold); 
            border-bottom: 1px solid var(--primary-gold); 
            padding: 10px 0; 
            display: inline-block; 
            color: var(--primary-gold); 
        }

        
        section {
            padding: 100px 10%; 
            min-height: 80vh; 
            display: flex; 
            flex-direction: column;
            justify-content: center; 
            position: relative; 
        }

        
        [data-aos] {
            transition-property: transform, opacity;
        }

        .aos-animate {
            transform: none !important;
            opacity: 1 !important;
        }

        .home__section-header {
            text-align: center; 
            margin-bottom: 40px; 
        }

        .home__section-header h2 {
            font-size: 2.5rem; 
            color: var(--secondary-green); 
            margin-bottom: 15px; 
            font-weight: 700; 
        }

        .home__section-header p {
            color: var(--text-gray); 
            font-size: 1rem; 
            letter-spacing: 1px; 
        }

        
        .home__history {
            background-color: #fff; 
        }

        .home__history-content {
            display: flex; 
            align-items: center; 
            gap: 60px; 
        }

        .home__history-image {
            flex: 1; 
            height: 500px; 
            border-radius: 4px; 
            overflow: hidden; 
            box-shadow: -20px 20px 0px var(--primary-gold); 
        }

        .home__history-image img {
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            filter: sepia(20%); 
        }

        .home__history-text {
            flex: 1; 
        }

        .home__history-text h3 {
            font-size: 2rem; 
            color: var(--secondary-green); 
            margin-bottom: 30px; 
        }

        .home__history-text p {
            font-size: 1.1rem; 
            color: var(--text-gray); 
            margin-bottom: 20px; 
            line-height: 1.8; 
        }

        .home__timeline {
            margin-top: 40px; 
            border-left: 2px solid var(--primary-gold); 
            padding-left: 30px; 
        }

        .home__timeline-item {
            position: relative; 
            margin-bottom: 25px; 
        }

        
        .home__timeline-item::before {
            content: ''; 
            position: absolute; 
            left: -36px; 
            top: 5px; 
            width: 12px; 
            height: 12px; 
            border-radius: 50%; 
            background-color: var(--secondary-green); 
            border: 2px solid var(--primary-gold); 
        }

        .home__timeline-item h4 {
            font-size: 1.2rem; 
            color: var(--secondary-green); 
            margin-bottom: 5px; 
        }

        .home__timeline-item p {
            font-size: 0.95rem; 
            color: var(--text-gray); 
        }

        
        .home__influence {
            background-color: var(--bg-cream); 
            text-align: center; 
        }

        .home__influence-grid {
            display: flex; 
            justify-content: center; 
            flex-wrap: wrap; 
            gap: 50px; 
            margin-top: 50px; 
        }

        .home__influence-item {
            display: flex; 
            flex-direction: column;
            align-items: center; 
            gap: 15px; 
            padding: 30px; 
            border: 2px solid #eee; 
            border-radius: 8px; 
            transition: transform 0.3s ease, box-shadow 0.3s ease; 
            width: 220px; 
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        
        .home__influence-item:hover {
            transform: translateY(-10px); 
            box-shadow: 0 10px 30px rgba(42, 95, 46, 0.1); 
            border-color: var(--primary-gold); 
            cursor: pointer;
        }



        .home__icon-placeholder {
            width: 60px; 
            height: 60px; 
            background-color: var(--bg-cream); 
            border-radius: 50%; 
            display: flex; 
            align-items: center;
            justify-content: center;
            color: var(--secondary-green); 
            font-weight: bold; 
            font-size: 1.5rem; 
        }

        .home__influence-item h4 {
            font-size: 1.2rem; 
            color: var(--secondary-green); 
            font-weight: 700; 
        }

        .home__influence-item p {
            font-size: 0.9rem; 
            color: var(--text-gray); 
        }

        
        .home__stats-banner {
            display: flex; 
            justify-content: center; 
            align-items: center; 
            gap: 80px; 
            margin-bottom: 60px; 
            padding: 40px 20px; 
            background: linear-gradient(135deg, rgba(245, 199, 69, 0.1), rgba(42, 95, 46, 0.05)); 
            border-radius: 12px; 
        }

        .home__stat-item {
            text-align: center; 
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.5s ease; 
        }

        
        .home__stat-item:hover {
            transform: translateY(-5px); 
        }

        .home__stat-number {
            font-size: 3.8rem; 
            font-weight: 900; 
            color: var(--primary-gold); 
            line-height: 1.1; 
            margin-bottom: 8px; 
            letter-spacing: -2px; 
            text-shadow: 0 2px 10px rgba(245, 199, 69, 0.3); 
        }

        .home__stat-label {
            font-size: 1.2rem; 
            color: var(--secondary-green); 
            font-weight: 600; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
        }

        
        .home__advantage {
            background-color: #fff; 
            display: flex; 
            flex-direction: row;
            align-items: center; 
            gap: 60px; 
        }

        .home__advantage-image {
            flex: 1; 
            height: 500px; 
            border-radius: 4px; 
            overflow: hidden; 
            box-shadow: 20px 20px 0px var(--primary-gold); 
        }

        .home__advantage-image img {
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            filter: sepia(20%); 
        }

        .home__advantage-text {
            flex: 1; 
        }

        .home__advantage-text h3 {
            font-size: 2rem; 
            color: var(--secondary-green); 
            margin-bottom: 30px; 
        }

        .home__data-grid {
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 30px; 
        }

        .home__data-item h4 {
            font-size: 1.5rem; 
            color: var(--secondary-green); 
            margin-bottom: 5px; 
        }

        .home__data-item span {
            font-size: 0.9rem; 
            color: var(--text-gray); 
            text-transform: uppercase; 
            letter-spacing: 1px; 
        }

        
        .home__products {
            background-color: var(--bg-cream); 
            text-align: center; 
        }

        .home__products-grid {
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            flex-wrap: nowrap; 
            overflow-x: auto; 
            padding: 20px 0; 
        }

        
        .home__products-grid::-webkit-scrollbar {
            display: none;
        }
        .home__products-grid {
            -ms-overflow-style: none;  
            scrollbar-width: none;  
        }

        .home__product-card {
            background: #fff; 
            padding: 30px; 
            width: 280px; 
            border-radius: 12px; 
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.5s ease; 
            box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
        }

        
        .home__product-card:hover {
            transform: translateY(-10px); 
            box-shadow: 0 15px 30px rgba(42, 95, 46, 0.1); 
        }

        .home__product-img {
            width: 100%; 
            height: 200px; 
            border-radius: 8px; 
            overflow: hidden; 
            margin-bottom: 20px; 
        }

        .home__product-img img {
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }

        .home__product-card h4 {
            font-size: 1.3rem; 
            color: var(--secondary-green); 
            margin-bottom: 10px; 
        }

        .home__product-card p {
            font-size: 0.95rem; 
            color: var(--text-gray); 
            line-height: 1.6; 
        }

        
        .home__culture {
            background-color: #fff; 
            text-align: center; 
        }

        .home__culture-cards {
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            flex-wrap: nowrap; 
            overflow-x: auto; 
            padding: 20px 0; 
        }

        
        .home__culture-cards::-webkit-scrollbar {
            display: none;
        }
        .home__culture-cards {
            -ms-overflow-style: none;  
            scrollbar-width: none;  
        }

        .home__culture-card {
            background: var(--bg-cream); 
            padding: 40px; 
            width: 300px; 
            border-radius: 12px; 
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.5s ease; 
        }

        
        .home__culture-card:hover {
            background: var(--secondary-green); 
            color: #fff; 
        }

        .home__culture-card h4 {
            font-size: 1.5rem; 
            margin-bottom: 15px; 
            color: var(--secondary-green); 
        }
        
        
        .home__culture-card:hover h4 { color: var(--primary-gold); }

        .home__culture-card p { 
            font-size: 0.95rem; 
            color: var(--text-gray); 
        }
        
        .home__culture-card:hover p { color: #ddd; }

        
        .home__culture-card.home__media-carousel {
            width: 400px; 
            height: 320px; 
            padding: 0; 
            overflow: hidden;
            position: relative;
        }

        .home__carousel-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .home__carousel-slides {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .home__carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .home__carousel-slide.is-active {
            opacity: 1;
        }

        .home__carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .carousel-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            z-index: 10;
        }

        .carousel-prev, .carousel-next {
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
            color: white;
            z-index: 100;
        }

        .carousel-prev i, .carousel-next i {
            font-size: 1.5rem;
            margin: 0;
            padding: 0;
        }

        .carousel-prev:hover, .carousel-next:hover {
            background: rgba(0, 0, 0, 0.7);
            transform: scale(1.1);
        }

        .home__carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 10;
        }

        .home__carousel-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .home__carousel-indicator.is-active {
            background: rgba(255, 255, 255, 0.9);
        }

        
        .home__contact {
            background-color: var(--secondary-green); 
            color: #fff; 
            text-align: center; 
            padding: 80px 20px; 
            min-height: auto; 
        }

        .home__contact h2 {
            font-size: 2.5rem; 
            margin-bottom: 20px; 
            color: var(--primary-gold); 
        }

        .home__contact-info {
            font-size: 1.0rem; 
            margin-top: 30px; 
            letter-spacing: 1px; 
        }

        
        @media (max-width: 768px) {
            
            .site-header--home { padding: 20px 5%; } 
            .site-header__brand { font-size: 1.5rem; } 
            nav { display: none; } 
            .home__hero-title { font-size: 2.5rem; } 
            .home__history-content, .home__advantage { flex-direction: column; } 
            .home__history-image, .home__advantage-image { width: 100%; height: 300px; } 
            section { padding: 60px 5%; min-height: auto; } 
            .home__data-grid { grid-template-columns: 1fr; } 
            
            
            .home__stats-banner { 
                gap: 40px; 
                padding: 30px 15px;
            }
            .home__stat-number { font-size: 2.8rem; }
            .home__stat-label { font-size: 1rem; }
        }
        .home__footer-note {
            margin-top: 50px;
            font-size: 0.82rem;
            line-height: 1.8;
            opacity: 0.78;
        }
        .home__footer-note .site-footer__secondary {
            display: block;
            margin-top: 0.25rem;
            font-size: 0.76rem;
        }
        .home__contact {
            padding-bottom: 40px;
        }

        @media (max-width: 768px) {
            .site-header--home nav,
            .site-header--home .site-header__nav {
                display: block;
            }

            .home__hero {
                min-height: 680px;
                height: 100svh;
            }

            .home__hero-content {
                padding: 92px 18px 0;
            }

            .home__hero-title {
                font-size: 2.35rem;
                line-height: 1.2;
                letter-spacing: 2px;
            }

            .home__hero-subtitle {
                max-width: 100%;
                font-size: 0.9rem;
                line-height: 1.6;
                letter-spacing: 1px;
            }

            section {
                padding: 56px 5%;
                min-height: auto;
            }

            .home__section-header {
                margin-bottom: 28px;
            }

            .home__section-header h2,
            .home__contact h2 {
                font-size: 2rem;
            }

            .home__history-content,
            .home__advantage {
                gap: 34px;
            }

            .home__history-image {
                box-shadow: -10px 10px 0 var(--primary-gold);
            }

            .home__advantage-image {
                box-shadow: 10px 10px 0 var(--primary-gold);
            }

            .home__history-text h3,
            .home__advantage-text h3 {
                font-size: 1.55rem;
                margin-bottom: 18px;
            }

            .home__history-text p {
                font-size: 1rem;
            }

            .home__stats-banner {
                flex-wrap: wrap;
                gap: 24px;
            }

            .home__stat-item {
                flex: 1 1 120px;
            }

            .home__products-grid,
            .home__culture-cards {
                justify-content: flex-start;
                padding: 16px 0 20px;
                scroll-snap-type: x proximity;
            }

            .home__product-card,
            .home__culture-card {
                flex: 0 0 78vw;
                width: 78vw;
                max-width: 340px;
                scroll-snap-align: start;
            }

            .home__culture-card.home__media-carousel {
                flex-basis: 82vw;
                width: 82vw;
                max-width: 400px;
                height: 260px;
            }

            .home__contact {
                padding: 56px 5% 30px;
            }

            .home__footer-note {
                margin-top: 34px;
            }
        }

        @media (max-width: 480px) {
            .home__hero {
                min-height: 620px;
            }

            .home__hero-title {
                font-size: 2rem;
            }

            .home__hero-subtitle {
                font-size: 0.82rem;
            }

            .home__section-header h2,
            .home__contact h2 {
                font-size: 1.75rem;
            }

            .home__history-image,
            .home__advantage-image {
                height: 240px;
            }

            .home__product-card,
            .home__culture-card {
                flex-basis: 84vw;
                width: 84vw;
                padding: 24px;
            }

            .home__culture-card.home__media-carousel {
                flex-basis: 86vw;
                width: 86vw;
                height: 230px;
                padding: 0;
            }
        }
