:root {
	--lingzhi-red: #d12422;
	--lingzhi-green: #155449;
	--lingzhi-cream: #f5efe6;
	--lingzhi-dark: #0a2f29;
	--lingzhi-light: #d1e29d;
	--lingzhi-border: rgba(21, 84, 73, 0.15);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background-color: var(--lingzhi-cream);
	color: var(--lingzhi-dark);
	line-height: 1.6;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Noto Serif SC', serif; font-weight: 600; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.grain-overlay {
	position: fixed; top: 0; left: 0; width: 100%; height: 100%;
	pointer-events: none; z-index: 9999; opacity: 0.03;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--lingzhi-cream); }
::-webkit-scrollbar-thumb { background: var(--lingzhi-green); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--lingzhi-dark); }
::selection { background: rgba(209, 36, 34, 0.2); color: var(--lingzhi-dark); }
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.animate-fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-bounce { animation: bounce 2s ease-in-out infinite; }

/* Navigation */
.nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
	transition: all 0.5s ease; padding: 1.5rem 0;
}
.nav.scrolled {
	background: rgba(245, 239, 230, 0.95); backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(21, 84, 73, 0.1); padding: 0.75rem 0;
}
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--lingzhi-red); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.nav-logo:hover .nav-logo-icon { transform: scale(1.1); }
.nav-logo-icon span { color: white; font-family: 'Noto Serif SC', serif; font-weight: 700; font-size: 1.125rem; }
.nav-logo-text { font-family: 'Noto Serif SC', serif; font-size: 1.25rem; font-weight: 600; color: white; transition: color 0.3s ease; }
.nav.scrolled .nav-logo-text { color: var(--lingzhi-dark); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link { position: relative; font-size: 0.875rem; color: rgba(255, 255, 255, 0.9); transition: color 0.3s ease; padding: 0.5rem 0; }
.nav.scrolled .nav-link { color: var(--lingzhi-dark); }
.nav-link:hover { color: var(--lingzhi-red); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--lingzhi-red); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }
.nav-cta { padding: 0.625rem 1.5rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; transition: all 0.3s ease; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); color: white; border: 1px solid rgba(255, 255, 255, 0.3); }
.nav-cta:hover { background: rgba(255, 255, 255, 0.2); }
.nav.scrolled .nav-cta { background: var(--lingzhi-red); border-color: var(--lingzhi-red); }
.nav.scrolled .nav-cta:hover { background: var(--lingzhi-dark); border-color: var(--lingzhi-dark); }
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: white; }
.nav.scrolled .nav-mobile-btn { color: var(--lingzhi-dark); }
.nav-mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10, 47, 41, 0.98); backdrop-filter: blur(10px); z-index: 999; padding: 6rem 2rem 2rem; flex-direction: column; gap: 1rem; }
.nav-mobile-menu.active { display: flex; }
.nav-mobile-link { font-family: 'Noto Serif SC', serif; font-size: 1.5rem; color: white; padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.nav-mobile-link:hover { color: var(--lingzhi-red); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10, 47, 41, 0.7), rgba(10, 47, 41, 0.4), rgba(10, 47, 41, 0.8)); z-index: 1; }
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 47, 41, 0.6) 100%); z-index: 2; }
.hero-particles { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; background: rgba(255, 255, 255, 0.3); border-radius: 50%; animation: float 4s ease-in-out infinite; }
.hero-content { position: relative; z-index: 10; width: 100%; max-width: 1400px; margin: 0 auto; padding: 8rem 2rem 4rem; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 9999px; margin-bottom: 2rem; opacity: 0; animation: fadeInUp 0.8s ease forwards; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--lingzhi-red); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.hero-badge-text { font-size: 0.875rem; color: rgba(255, 255, 255, 0.9); letter-spacing: 0.05em; }
.hero-title { font-size: 3rem; font-weight: 700; color: white; line-height: 1.2; margin-bottom: 1.5rem; opacity: 0; animation: fadeInUp 0.8s ease 0.2s forwards; }
@media (min-width: 768px) { .hero-title { font-size: 4rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 5rem; } }
.hero-title-accent { color: var(--lingzhi-red); }
.hero-subtitle { font-size: 1.125rem; color: rgba(255, 255, 255, 0.8); max-width: 500px; margin-bottom: 2.5rem; line-height: 1.8; opacity: 0; animation: fadeInUp 0.8s ease 0.4s forwards; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; opacity: 0; animation: fadeInUp 0.8s ease 0.6s forwards; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: 9999px; font-weight: 500; transition: all 0.3s ease; cursor: pointer; border: none; font-size: 1rem; }
.btn-primary { background: var(--lingzhi-red); color: white; box-shadow: 0 0 30px rgba(209, 36, 34, 0.4); }
.btn-primary:hover { background: #b51f1d; transform: translateY(-2px); box-shadow: 0 10px 40px rgba(209, 36, 34, 0.5); }
.btn-secondary { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); color: white; border: 1px solid rgba(255, 255, 255, 0.3); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; opacity: 0; animation: fadeInUp 0.8s ease 0.8s forwards; }
.hero-stat { text-align: center; }
.hero-stat-value { font-family: 'Noto Serif SC', serif; font-size: 2.5rem; font-weight: 700; color: var(--lingzhi-red); }
.hero-stat-value span { font-size: 1rem; color: rgba(255, 255, 255, 0.6); margin-left: 0.25rem; }
.hero-stat-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); margin-top: 0.25rem; }
.hero-stat-divider { width: 1px; height: 60px; background: rgba(255, 255, 255, 0.2); display: none; }
@media (min-width: 640px) { .hero-stat-divider { display: block; } }
.hero-image-container { display: none; justify-content: center; align-items: center; }
@media (min-width: 1024px) { .hero-image-container { display: flex; } }
.hero-image-wrapper { position: relative; width: 320px; height: 320px; opacity: 0; animation: fadeInUp 0.8s ease 0.5s forwards; transition: transform 0.1s ease-out; }
@media (min-width: 1280px) { .hero-image-wrapper { width: 384px; height: 384px; } }
.hero-image-glow { position: absolute; inset: 0; background: rgba(209, 36, 34, 0.3); border-radius: 1.5rem; filter: blur(40px); transform: scale(1.1); }
.hero-image { position: relative; width: 100%; height: 100%; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-ring { position: absolute; border: 2px solid rgba(209, 36, 34, 0.3); border-radius: 1.5rem; }
.hero-image-ring-1 { inset: -16px; }
.hero-image-ring-2 { inset: -32px; border-color: rgba(209, 36, 34, 0.1); }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10; text-align: center; }
.hero-scroll-text { font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.hero-scroll-indicator { width: 24px; height: 40px; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 9999px; margin: 0 auto; display: flex; justify-content: center; padding-top: 8px; }
.hero-scroll-dot { width: 6px; height: 10px; background: rgba(255, 255, 255, 0.6); border-radius: 9999px; animation: bounce 2s ease-in-out infinite; }

/* Section */
.section { position: relative; padding: 6rem 0; overflow: hidden; }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }
.section-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(21, 84, 73, 0.1); border-radius: 9999px; margin-bottom: 1.5rem; opacity: 0; transform: translateY(20px); transition: all 0.7s ease; }
.section-badge.visible { opacity: 1; transform: translateY(0); }
.section-badge-dot { width: 8px; height: 8px; background: var(--lingzhi-green); border-radius: 50%; }
.section-badge-text { font-size: 0.875rem; color: var(--lingzhi-green); letter-spacing: 0.05em; }
.section-title { font-size: 2.5rem; font-weight: 700; color: var(--lingzhi-dark); margin-bottom: 1rem; opacity: 0; transform: translateY(20px); transition: all 0.7s ease 0.1s; }
@media (min-width: 768px) { .section-title { font-size: 3.5rem; } }
.section-title.visible { opacity: 1; transform: translateY(0); }
.section-subtitle { font-size: 1.125rem; color: rgba(10, 47, 41, 0.7); max-width: 700px; margin: 0 auto; line-height: 1.8; opacity: 0; transform: translateY(20px); transition: all 0.7s ease 0.2s; }
.section-subtitle.visible { opacity: 1; transform: translateY(0); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-image-wrapper { position: relative; opacity: 0; transform: translateX(-30px); transition: all 1s ease 0.3s; }
.about-image-wrapper.visible { opacity: 1; transform: translateX(0); }
.about-image { position: relative; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
@media (min-width: 1024px) { .about-image img { height: 500px; } }
.about-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 47, 41, 0.4), transparent); }
.about-image-card { position: absolute; bottom: -24px; right: -24px; background: white; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); max-width: 280px; }
@media (max-width: 640px) { .about-image-card { right: 1rem; left: 1rem; max-width: none; } }
.about-image-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.about-image-card-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(209, 36, 34, 0.1); display: flex; align-items: center; justify-content: center; }
.about-image-card-icon svg { width: 24px; height: 24px; color: var(--lingzhi-red); }
.about-image-card-title { font-family: 'Noto Serif SC', serif; font-size: 1.5rem; font-weight: 700; color: var(--lingzhi-dark); }
.about-image-card-subtitle { font-size: 0.875rem; color: rgba(10, 47, 41, 0.6); }
.about-image-card-text { font-size: 0.875rem; color: rgba(10, 47, 41, 0.7); line-height: 1.6; }
.about-image-deco { position: absolute; border: 2px solid rgba(209, 36, 34, 0.2); border-radius: 1rem; }
.about-image-deco-1 { top: -16px; left: -16px; width: 96px; height: 96px; }
.about-content { opacity: 0; transform: translateX(30px); transition: all 1s ease 0.4s; }
.about-content.visible { opacity: 1; transform: translateX(0); }
.about-content-title { font-size: 2rem; font-weight: 700; color: var(--lingzhi-dark); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .about-content-title { font-size: 2.5rem; } }
.about-content-text { color: rgba(10, 47, 41, 0.7); line-height: 1.8; margin-bottom: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .about-features { grid-template-columns: 1fr 1fr; } }
.about-feature { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; background: rgba(255, 255, 255, 0.5); border-radius: 0.75rem; border: 1px solid var(--lingzhi-border); transition: all 0.3s ease; opacity: 0; transform: translateY(10px); }
.about-feature.visible { opacity: 1; transform: translateY(0); }
.about-feature:hover { background: white; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); border-color: rgba(21, 84, 73, 0.3); }
.about-feature-icon { width: 40px; height: 40px; border-radius: 0.5rem; background: rgba(21, 84, 73, 0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; }
.about-feature:hover .about-feature-icon { background: var(--lingzhi-green); }
.about-feature-icon svg { width: 20px; height: 20px; color: var(--lingzhi-green); transition: color 0.3s ease; }
.about-feature:hover .about-feature-icon svg { color: white; }
.about-feature-title { font-family: 'Noto Serif SC', serif; font-size: 1.125rem; font-weight: 600; color: var(--lingzhi-dark); margin-bottom: 0.25rem; }
.about-feature-text { font-size: 0.875rem; color: rgba(10, 47, 41, 0.6); line-height: 1.5; }

/* Products */
.products-section { background: linear-gradient(to bottom, var(--lingzhi-cream), white, var(--lingzhi-cream)); }
.products-header { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 4rem; }
@media (min-width: 1024px) { .products-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.products-header-content { margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .products-header-content { margin-bottom: 0; } }
.products-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--lingzhi-red); font-weight: 500; transition: gap 0.3s ease; }
.products-link:hover { gap: 1rem; }
.products-link svg { width: 20px; height: 20px; }
.products-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.product-card { position: relative; background: white; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 4px 20px rgba(21, 84, 73, 0.1); transition: all 0.5s ease; opacity: 0; transform: translateY(30px); }
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card:hover { transform: scale(1.02); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.products-grid:has(.product-card:hover) .product-card:not(:hover) { opacity: 0.6; transform: scale(0.98); }
.product-tag { position: absolute; top: 1rem; left: 1rem; padding: 0.25rem 0.75rem; background: var(--lingzhi-red); color: white; font-size: 0.75rem; font-weight: 500; border-radius: 9999px; z-index: 10; }
.product-image-wrapper { position: relative; height: 280px; background: linear-gradient(to bottom, var(--lingzhi-cream), white); overflow: hidden; }
.product-image { width: 100%; height: 100%; object-fit: contain; padding: 1.5rem; transition: all 0.7s ease; }
.product-card:hover .product-image { transform: scale(1.1) rotate(2deg); }
.product-overlay { position: absolute; inset: 0; background: rgba(10, 47, 41, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.5s ease; }
.product-card:hover .product-overlay { opacity: 1; }
.product-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: white; color: var(--lingzhi-dark); border-radius: 9999px; font-weight: 500; transition: all 0.3s ease; }
.product-btn:hover { background: var(--lingzhi-red); color: white; }
.product-content { padding: 1.5rem; }
.product-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0.5rem; }
.product-title-wrapper { flex: 1; }
.product-title { font-family: 'Noto Serif SC', serif; font-size: 1.25rem; font-weight: 700; color: var(--lingzhi-dark); margin-bottom: 0.25rem; }
.product-subtitle { font-size: 0.875rem; color: rgba(10, 47, 41, 0.5); }
.product-price { font-family: 'Noto Serif SC', serif; font-size: 1.25rem; font-weight: 700; color: var(--lingzhi-red); }
.product-description { font-size: 0.875rem; color: rgba(10, 47, 41, 0.6); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.products-cta { margin-top: 4rem; text-align: center; opacity: 0; transform: translateY(20px); transition: all 0.7s ease 0.7s; }
.products-cta.visible { opacity: 1; transform: translateY(0); }
.products-cta-inner { display: inline-flex; align-items: center; gap: 1rem; padding: 0.5rem; padding-right: 1.5rem; background: white; border-radius: 9999px; box-shadow: 0 4px 20px rgba(21, 84, 73, 0.1); }
.products-cta-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(21, 84, 73, 0.1); display: flex; align-items: center; justify-content: center; }
.products-cta-icon svg { width: 24px; height: 24px; color: var(--lingzhi-green); }
.products-cta-text { color: var(--lingzhi-dark); }
.products-cta-btn { padding: 0.625rem 1.5rem; background: var(--lingzhi-red); color: white; border-radius: 9999px; font-weight: 500; transition: background 0.3s ease; }
.products-cta-btn:hover { background: var(--lingzhi-dark); }
.ba-police {
	display: inline;
    margin: 4px 0px -2px 4px;
    width: 16px;
}