/* ============================================
   全局/共用样式
   ============================================ */

/* 首页 Banner 轮播 & 共用动画 */
.hero-slider {
	height: 100vh;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.hero-slide {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	opacity: 0;
	position: absolute;
	transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
}

.hero-slide-bg {
	background-position: center;
	background-size: cover;
	inset: 0;
	position: absolute;
	transform: scale(1.08);
	transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
	transform: scale(1);
}

.slide-overlay {
	background: linear-gradient(180deg, rgba(20, 15, 10, 0.6) 0%, rgba(20, 15, 10, 0.25) 50%, rgba(20, 15, 10, 0.6) 100%);
	inset: 0;
	position: absolute;
}
.hero-slider .hero-slide:nth-child(3) .slide-overlay{background: none;}
.hero-slide-content {
	color: #fff;
	max-width: 800px;
	padding: 0 40px;
	position: relative;
	text-align: center;
	z-index: 10;
}

.hero-slide-content .slide-tag {
	animation: fadeInUp 0.8s 0.2s both;
	color: var(--color-gold-light);
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.35em;
	margin-bottom: 28px;
	text-transform: uppercase;
}

.hero-slide-content h2 {
	animation: fadeInUp 0.8s 0.4s both;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.5vw, 5rem);
	letter-spacing: 0.06em;
	line-height: 1.2;
	margin-bottom: 20px;
	text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero-slide-content h2 em {
	color: var(--color-gold-light);
	font-style: normal;
}

.hero-slide-content p {
	animation: fadeInUp 0.8s 0.6s both;
	font-size: 1.05rem;
	font-weight: 300;
	letter-spacing: 0.12em;
	opacity: 0.85;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.slider-dots {
	bottom: 48px;
	display: flex;
	gap: 14px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	z-index: 20;
}

.slider-dot {
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	height: 10px;
	transition: all 0.3s ease;
	width: 10px;
}

.slider-dot.active {
	background: var(--color-gold);
	border-color: var(--color-gold);
	box-shadow: 0 0 12px rgba(200, 164, 92, 0.6);
}

.slider-arrow {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 1.3rem;
	height: 48px;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
	width: 48px;
	z-index: 20;
}

.slider-arrow:hover {
	background: rgba(200, 164, 92, 0.35);
	border-color: var(--color-gold);
}

.slider-arrow.prev {
	left: 36px;
}

.slider-arrow.next {
	right: 36px;
}

/* ==================== 价值主张 ==================== */
.values-section {
	background: var(--color-white);
	position: relative;
}

.values-grid {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 72px;
}

.value-card {
	background: var(--color-soft-bg);
	border-radius: 6px;
	cursor: default;
	overflow: hidden;
	padding: 56px 32px;
	position: relative;
	text-align: center;
	transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.value-card::before {
	background: linear-gradient(90deg, var(--color-gold), var(--color-terracotta));
	content: '';
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
}

.value-card:hover {
	background: #fff;
	box-shadow: 0 20px 60px rgba(44, 31, 20, 0.12);
	transform: translateY(-12px);
}

.value-card:hover::before {
	transform: scaleX(1);
}

.value-icon-circle {
	align-items: center;
	background: linear-gradient(135deg, #fdf8f0, #f7ede0);
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(200, 164, 92, 0.1);
	color: var(--color-gold);
	display: flex;
	font-size: 2.4rem;
	height: 80px;
	justify-content: center;
	margin: 0 auto 24px;
	transition: all 0.5s ease;
	width: 80px;
}

.value-card:hover .value-icon-circle {
	background: linear-gradient(135deg, var(--color-gold), var(--color-terracotta));
	box-shadow: 0 8px 32px rgba(200, 164, 92, 0.35);
	color: #fff;
	transform: scale(1.1);
}

.value-card h3 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 3rem;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
}

.value-card p {
	color: var(--color-muted);
	font-size: 0.88rem;
	line-height: 1.9;
}

/* ==================== 品牌故事预告 ==================== */
.story-teaser {
	background: var(--color-deep);
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 600px;
	overflow: hidden;
	position: relative;
}

.story-teaser::before {
	background: radial-gradient(ellipse at 30% 50%, rgba(200, 164, 92, 0.08) 0%, transparent 70%);
	content: '';
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.story-image-col {
	align-items: center;
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.story-image-bg-animated {
	animation: gradientShift 12s ease infinite;
	background: linear-gradient(45deg, #4a3828, #2d1f14, #3a2518, #1a1008);
	background-size: 400% 400%;
	inset: -20px;
	position: absolute;
}

@keyframes gradientShift {

	0%,
	100% {
		background-position: 0% 50%;
	}

	25% {
		background-position: 100% 0%;
	}

	50% {
		background-position: 100% 100%;
	}

	75% {
		background-position: 0% 100%;
	}
}

.story-image-accent {
	border: 1px solid rgba(200, 164, 92, 0.25);
	padding: 60px 80px;
	position: relative;
	text-align: center;
	z-index: 5;
}

.story-image-accent .big-char {
	animation: floatText 3s ease-in-out infinite;
	color: rgba(200, 164, 92, 0.2);
	display: block;
	font-family: var(--font-display);
	font-size: 8rem;
	line-height: 1;
}

@keyframes floatText {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

.story-image-accent .small-text {
	color: rgba(200, 164, 92, 0.4);
	display: block;
	font-size: 0.85rem;
	letter-spacing: 0.35em;
	margin-top: 12px;
}

.story-text-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px;
	position: relative;
	z-index: 5;
}

/* ==================== 产品卡片 ==================== */
.works-section {
	background: var(--color-soft-bg);
}

.works-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 64px;
}

.work-card {
	aspect-ratio: 3/4;
	border-radius: 6px;
	box-shadow: var(--shadow-soft);
	cursor: pointer;
	overflow: hidden;
	perspective: 1000px;
	position: relative;
}

.work-card-inner {
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
	width: 100%;
}

.work-card:hover .work-card-inner {
	transform: rotateY(8deg) rotateX(-4deg) scale(1.04);
}

.work-card-bg {
	inset: 0;
	position: absolute;
	transition: transform 0.8s ease;
}

.work-card:nth-child(1) .work-card-bg {
	background: linear-gradient(160deg, #f5e0c3, #e8c98b, #d4a85c);
}

.work-card:nth-child(2) .work-card-bg {
	background: linear-gradient(160deg, #e8d5c4, #d4b896, #c49a6c);
}

.work-card:nth-child(3) .work-card-bg {
	background: linear-gradient(160deg, #f0e0d0, #dcc8a8, #c8a878);
}

.work-card:nth-child(4) .work-card-bg {
	background: linear-gradient(160deg, #f5e6d3, #e8d4a8, #d4b878);
}

.work-card:hover .work-card-bg {
	transform: scale(1.1);
}

.work-card-emoji {
	filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.2));
	font-size: 5rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s ease;
	z-index: 5;
}

.work-card:hover .work-card-emoji {
	filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.3));
	transform: translate(-50%, -50%) scale(1.2);
}

.work-card-label {
	background: linear-gradient(transparent, rgba(30, 20, 10, 0.75));
	bottom: 0;
	color: #fff;
	left: 0;
	padding: 36px 24px;
	position: absolute;
	right: 0;
	z-index: 10;
}

.work-card-label h4 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}

.work-card-label span {
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	opacity: 0.8;
}

/* ==================== 信任条 ==================== */
.trust-strip {
	background: var(--color-deep);
	border-top: 4px solid var(--color-gold);
	display: grid;
	gap: 0;
	grid-template-columns: repeat(4, 1fr);
}

.trust-item {
	color: #fdf8f0;
	cursor: default;
	overflow: hidden;
	padding: 64px 28px;
	position: relative;
	text-align: center;
	transition: all 0.4s ease;
}

.trust-item+.trust-item {
	border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item::after {
	background: var(--color-gold);
	bottom: 0;
	content: '';
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.trust-item:hover::after {
	transform: scaleX(1);
}

.trust-item:hover {
	background: #241a10;
}

.trust-icon-circle {
	align-items: center;
	border: 2px solid rgba(200, 164, 92, 0.35);
	border-radius: 50%;
	display: flex;
	font-size: 1.7rem;
	height: 68px;
	justify-content: center;
	margin: 0 auto 20px;
	transition: all 0.4s ease;
	width: 68px;
}

.trust-item:hover .trust-icon-circle {
	background: rgba(200, 164, 92, 0.12);
	border-color: var(--color-gold);
	box-shadow: 0 0 24px rgba(200, 164, 92, 0.2);
}

.trust-item h4 {
	color: var(--color-gold-light);
	font-family: var(--font-display);
	font-size: 1rem;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

.trust-item p {
	color: rgba(253, 248, 240, 0.45);
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
}

/* ==================== 共用页面顶部横幅 (合并重复) ==================== */
.page-hero {
	align-items: center;
	background: linear-gradient(160deg, #2c1f14 0%, #1a1008 50%, #2d1f14 100%);
	display: flex;
	justify-content: center;
	min-height: 360px;
	overflow: hidden;
	position: relative;
}

.page-hero::before {
	background: radial-gradient(ellipse at 50% 50%, rgba(200, 164, 92, 0.1) 0%, transparent 70%);
	content: '';
	inset: 0;
	position: absolute;
}

.page-hero-content {
	padding: 0 40px;
	text-align: center;
	z-index: 5;
}

.page-hero-content .hero-eyebrow {
	color: var(--color-gold);
	font-size: 0.75rem;
	letter-spacing: 0.35em;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.page-hero-content h1 {
	color: #fdf8f0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3.5rem);
	letter-spacing: 0.06em;
	line-height: 1.3;
}

/* ============================================
   about 页面
   ============================================ */

.story-detail {
	background: var(--color-white);
}

.story-detail-grid {
	align-items: center;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1fr;
	margin-top: 60px;
}

.story-detail-image {
	border-radius: 8px;
	box-shadow: var(--shadow-medium);
	overflow: hidden;
	position: relative;
}

.story-detail-image .img-placeholder {
	align-items: center;
	background: linear-gradient(160deg, #e8d5c4, #c8a878, #a08060);
	display: flex;
	font-size: 6rem;
	height: 100%;
	justify-content: center;
	transition: transform 0.6s ease;
	width: 100%;
}

.story-detail-image:hover .img-placeholder {
	transform: scale(1.05);
}

.story-detail-text h3 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 1.8rem;
	letter-spacing: 0.06em;
	margin-bottom: 20px;
}

.story-detail-text p {
	color: var(--color-muted);
	line-height: 2.1;
	margin-bottom: 16px;
}

.timeline-section {
	background: var(--color-soft-bg);
}

.timeline {
	margin: 60px auto 0;
	max-width: 760px;
	padding-left: 40px;
	position: relative;
}

.timeline::before {
	background: linear-gradient(to bottom, var(--color-gold), rgba(200, 164, 92, 0.2));
	bottom: 0;
	content: '';
	left: 18px;
	position: absolute;
	top: 0;
	width: 2px;
}

.timeline-item {
	margin-bottom: 48px;
	padding-left: 40px;
	position: relative;
}

.timeline-dot {
	background: var(--color-gold);
	border-radius: 50%;
	box-shadow: 0 0 16px rgba(200, 164, 92, 0.4);
	height: 16px;
	left: -3px;
	position: absolute;
	top: 4px;
	width: 16px;
	z-index: 5;
}

.timeline-year {
	color: var(--color-gold);
	font-family: var(--font-display);
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}

.timeline-item h4 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 1.1rem;
	margin-bottom: 6px;
}

.timeline-item p {
	color: var(--color-muted);
	font-size: 0.88rem;
	line-height: 1.8;
}

.family-section {
	background: var(--color-white);
}

.family-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 56px;
}

.family-card {
	background: var(--color-soft-bg);
	border-radius: 8px;
	overflow: hidden;
	padding: 48px 28px;
	position: relative;
	text-align: center;
	transition: all 0.4s ease;
}

.family-card.featured {
	border: 2px solid var(--color-gold);
	box-shadow: 0 0 0 8px rgba(200, 164, 92, 0.06);
}

.family-card.featured::before {
	background: rgba(200, 164, 92, 0.1);
	color: var(--color-gold);
	content: '主力品牌';
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	padding: 4px 12px;
	position: absolute;
	right: 16px;
	top: 16px;
}

.family-card:hover {
	box-shadow: var(--shadow-medium);
	transform: translateY(-8px);
}

.family-card .family-icon {
	font-size: 2.8rem;
	margin-bottom: 16px;
}

.family-card h4 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 1.1rem;
	margin-bottom: 6px;
}

.family-card p {
	color: var(--color-muted);
	font-size: 0.8rem;
	line-height: 1.7;
}

.team-section {
	background: var(--color-soft-bg);
}

.team-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 56px;
}
.team-grid4{grid-template-columns: repeat(4, 1fr);} 
.team-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	/* padding: 48px 28px; */
	line-height: initial;
	text-align: center;
	transition: all 0.4s ease;
}

.team-card:hover {
	box-shadow: var(--shadow-medium);
	transform: translateY(-6px);
}

.team-avatar {
	align-items: center;
	background: linear-gradient(135deg, var(--color-warm), var(--color-gold-light));
	border-radius: 50%;
	display: flex;
	font-size: 3rem;
	height: 100px;
	justify-content: center;
	margin: 0 auto 20px;
	transition: all 0.4s ease;
	width: 100px;
}

.team-card:hover .team-avatar {
	box-shadow: 0 8px 32px rgba(200, 164, 92, 0.3);
	transform: scale(1.05);
}

.team-card h4 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 1.15rem;
	margin-bottom: 4px;
}

.team-card .role {
	color: var(--color-gold);
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}

.team-card p {
	color: var(--color-muted);
	font-size: 0.88rem;
	line-height: 1.8;
}

/* ============================================
   productlist 页面
   ============================================ */

.product-detail {
	background: var(--color-white);
	padding: 100px 80px;
	position: relative;
	z-index: 1;
}

.product-detail:nth-child(even) {
	background: var(--color-soft-bg);
}

.product-detail-grid {
	align-items: center;
	display: grid;
	gap: 72px;
	grid-template-columns: 1fr 1fr;
	margin: 0 auto;
	max-width: 1200px;
}

.product-detail:nth-child(even) .product-detail-grid {
	direction: rtl;
}

.product-detail:nth-child(even) .product-detail-grid>* {
	direction: ltr;
}

.product-image {
	align-items: center;
	aspect-ratio: 1/1;
	border-radius: 12px;
	box-shadow: var(--shadow-medium);
	cursor: default;
	display: flex;
	font-size: 8rem;
	justify-content: center;
	overflow: hidden;
	transition: all 0.6s ease;
}

.product-image.img-butterfly {
	background: linear-gradient(160deg, #f5e0c3, #e8c98b, #d4a85c);
}

.product-image.img-almond {
	background: linear-gradient(160deg, #e8d5c4, #d4b896, #c49a6c);
}

.product-image.img-cookie {
	background: linear-gradient(160deg, #f0e0d0, #dcc8a8, #c8a878);
}

.product-image.img-eggroll {
	background: linear-gradient(160deg, #f5e6d3, #e8d4a8, #d4b878);
}

.product-image:hover {
	box-shadow: 0 20px 60px rgba(44, 31, 20, 0.18);
	transform: scale(1.03);
}

.product-info h3 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 2rem;
	letter-spacing: 0.06em;
	margin-bottom: 8px;
}

.product-info .product-tagline {
	color: var(--color-gold);
	font-size: 0.85rem;
	font-style: italic;
	letter-spacing: 0.15em;
	margin-bottom: 24px;
}

.product-info p {
	color: var(--color-muted);
	font-size: 0.93rem;
	line-height: 2;
	margin-bottom: 20px;
}

.product-features {
	list-style: none;
	margin-bottom: 28px;
}

.product-features li {
	align-items: center;
	color: var(--color-text);
	display: flex;
	font-size: 0.9rem;
	gap: 12px;
	padding: 10px 0;
}

.product-features li::before {
	color: var(--color-gold);
	content: '◆';
	font-size: 0.5rem;
}

.product-meta {
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	color: var(--color-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.8rem;
	gap: 28px;
	padding-top: 20px;
}

.product-meta span strong {
	color: var(--color-text);
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	margin-bottom: 2px;
}

/* ============================================
   newslist 页面
   ============================================ */

.news-page {
	background: var(--color-white);
}

.news-grid-large {
	display: grid;
	gap: 36px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 56px;
}

.news-card {
	background: var(--color-soft-bg);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	cursor: pointer;
	overflow: hidden;
	transition: all 0.4s ease;
}

.news-card:hover {
	box-shadow: var(--shadow-medium);
	transform: translateY(-8px);
}

.news-card-img {
	align-items: center;
	display: flex;
	justify-content: center;
	overflow: hidden;
	transition: transform 0.5s ease;
	width: 100%;
}

.news-card:hover .news-card-img {
	transform: scale(1.06);
}

.news-card:nth-child(1) .news-card-img {
	background: linear-gradient(135deg, #e8d5c4, #d4b896);
}

.news-card:nth-child(2) .news-card-img {
	background: linear-gradient(135deg, #f5e0c3, #e8c98b);
}

.news-card:nth-child(3) .news-card-img {
	background: linear-gradient(135deg, #e0d8c8, #c8b898);
}

.news-card:nth-child(4) .news-card-img {
	background: linear-gradient(135deg, #d8c8b8, #b8a080);
}

.news-card:nth-child(5) .news-card-img {
	background: linear-gradient(135deg, #f0e0d0, #dcc8a8);
}

.news-card:nth-child(6) .news-card-img {
	background: linear-gradient(135deg, #e8d8c0, #c8b888);
}

.news-card-body {
	padding: 28px;
}

.news-card-date {
	color: var(--color-gold);
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	margin-bottom: 10px;
}

.news-card-body h4 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 1.08rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-bottom: 8px;
}

.news-card-body p,.linshi {
	color: var(--color-muted);
	font-size: 0.85rem;
	line-height: 1.8;
	margin-bottom: 12px;
}

.news-card-body .read-more {
	border-bottom: 1px solid transparent;
	color: var(--color-gold);
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-decoration: none;
	transition: all 0.3s ease;
}

.news-card-body .read-more:hover {
	border-bottom-color: var(--color-gold);
}

.pagination {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 60px;
}

.pagination span {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 50%;
	color: var(--color-muted);
	cursor: pointer;
	display: flex;
	height: 40px;
	justify-content: center;
	transition: all 0.3s ease;
	width: 40px;
}

.pagination span.active {
	background: var(--color-gold);
	color: #fff;
}

.pagination span:hover {
	border-color: var(--color-gold);
	color: var(--color-gold);
}

.pagination span.active:hover {
	color: #fff;
}

/* ============================================
   新闻中心详情页
   ============================================ */

.news-hero {
	align-items: flex-end;
	display: flex;
	height: 35vh;
	min-height: 280px;
	overflow: hidden;
	position: relative;
}

.news-hero-bg {
	background-position: center;
	background-size: cover;
	inset: 0;
	position: absolute;
}

.news-hero-bg.default-bg {
	background: linear-gradient(160deg, #2c1f14 0%, #1a1008 50%, #3a2518 100%);
}

.news-hero-overlay {
	background: linear-gradient(180deg, transparent 0%, rgba(20, 15, 10, 0.7) 100%);
	inset: 0;
	position: absolute;
}

.news-hero-meta {
	max-width: 900px;
	padding: 0 80px 40px;
	position: relative;
	z-index: 5;
}

.news-hero-meta .back-link {
	color: var(--color-gold);
	display: inline-block;
	font-size: 0.9rem;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.news-hero-meta .back-link:hover {
	color: var(--color-gold-light);
}

.news-hero-meta .news-date {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	margin-bottom: 12px;
}

.news-hero-meta h1 {
	color: #fdf8f0;
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	letter-spacing: 0.06em;
	line-height: 1.4;
}

.article-section {
	background: var(--color-white);
	padding: 80px;
	position: relative;
	z-index: 1;
}

.article-container {
	margin: 0 auto;
	max-width: 80%;
}
.article-img{
	margin:0 auto;
	text-align: center;
}
.article-container .article-lead {
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 1.25rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-bottom: 48px;
	padding-bottom: 36px;
}

.article-container p {
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 2.2;
	margin-bottom: 24px;
}

.article-container h3 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	margin: 48px 0 20px;
}

.article-container .article-image {
	aspect-ratio: 16/9;
	background: var(--color-soft-bg);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	margin: 40px 0;
	overflow: hidden;
	width: 100%;
}

.article-container blockquote {
	background: var(--color-soft-bg);
	border-left: 3px solid var(--color-gold);
	border-radius: 0 6px 6px 0;
	margin: 36px 0;
	padding: 20px 28px;
}

.article-container blockquote p {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-style: italic;
	margin-bottom: 0;
}

.related-section {
	background: var(--color-soft-bg);
}

.related-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 48px;
}

.related-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	color: inherit;
	display: block;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.35s ease;
}

.related-card:hover {
	box-shadow: var(--shadow-medium);
	transform: translateY(-6px);
}

.related-card-img {
	align-items: center;
	aspect-ratio: 16/10;
	display: flex;
	font-size: 3rem;
	justify-content: center;
	width: 100%;
}

.related-card:nth-child(1) .related-card-img {
	background: linear-gradient(135deg, #e8d5c4, #d4b896);
}

.related-card:nth-child(2) .related-card-img {
	background: linear-gradient(135deg, #f5e0c3, #e8c98b);
}

.related-card:nth-child(3) .related-card-img {
	background: linear-gradient(135deg, #e0d8c8, #c8b898);
}

.related-card-body {
	padding: 20px 24px;
}

.related-card-body .related-date {
	color: var(--color-gold);
	font-size: 0.68rem;
	letter-spacing: 0.15em;
	margin-bottom: 8px;
}

.related-card-body h4 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 1rem;
	line-height: 1.5;
}

.back-to-top {
	align-items: center;
	background: var(--color-gold);
	border: none;
	border-radius: 50%;
	bottom: 40px;
	box-shadow: 0 4px 20px rgba(200, 164, 92, 0.35);
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 1.2rem;
	height: 48px;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	right: 40px;
	transition: all 0.3s ease;
	width: 48px;
	z-index: 100;
}

.back-to-top.visible {
	opacity: 1;
	pointer-events: all;
}

.back-to-top:hover {
	background: #b8943f;
	box-shadow: 0 8px 28px rgba(200, 164, 92, 0.45);
	transform: translateY(-3px);
}

/* ============================================
   联系我们 页面
   ============================================ */

.contact-section {
	background: var(--color-white);
}

.contact-grid {
	display: grid;
	gap: 36px;
	grid-template-columns: 1fr 1.2fr;
	margin-top: 56px;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-info h3 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 1.6rem;
	margin-bottom: 20px;
}

.contact-info-item {
	align-items: flex-start;
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}

.contact-info-item .ci-icon {
	align-items: center;
	background: var(--color-soft-bg);
	border-radius: 50%;
	display: flex;
	flex-shrink: 0;
	font-size: 1.3rem;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.contact-info-item .ci-text strong {
	color: var(--color-deep);
	display: block;
	font-size: 0.85rem;
	margin-bottom: 2px;
}

.contact-info-item .ci-text p {
	color: var(--color-muted);
	font-size: 0.85rem;
}

.contact-form {
	background: var(--color-soft-bg);
	border-radius: 12px;
	box-shadow: var(--shadow-soft);
	padding: 48px;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	color: var(--color-text);
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 0.9rem;
	padding: 14px 18px;
	transition: all 0.3s ease;
	width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	border-color: var(--color-gold);
	box-shadow: 0 0 0 4px rgba(200, 164, 92, 0.08);
	outline: none;
}

.form-group textarea {
	min-height: 140px;
	resize: vertical;
}

.btn-submit {
	background: var(--color-gold);
	border: none;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.85rem;
	letter-spacing: 0.15em;
	overflow: hidden;
	padding: 16px 52px;
	position: relative;
	transition: all 0.4s ease;
}

.btn-submit::after {
	background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
	content: '';
	inset: 0;
	position: absolute;
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}

.btn-submit:hover::after {
	transform: translateX(100%);
}

.btn-submit:hover {
	background: #b8943f;
	box-shadow: var(--shadow-gold);
	transform: translateY(-2px);
}

/* ============================================
   品质监控 页面
   ============================================ */

.cert-section {
	background: var(--color-white);
}

.cert-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 56px;
}

.cert-card {
	align-items: flex-start;
	background: var(--color-soft-bg);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	display: flex;
	gap: 28px;
	padding: 44px 36px;
	transition: all 0.4s ease;
}

.cert-card:hover {
	box-shadow: var(--shadow-medium);
	transform: translateY(-6px);
}

.cert-icon-large {
	align-items: center;
	background: linear-gradient(135deg, var(--color-warm), #fff);
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(200, 164, 92, 0.1);
	display: flex;
	flex-shrink: 0;
	font-size: 2rem;
	height: 80px;
	justify-content: center;
	width: 80px;
}

.cert-info h4 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 1.15rem;
	margin-bottom: 6px;
}

.cert-info .cert-id {
	color: var(--color-gold);
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	margin-bottom: 10px;
}

.cert-info p {
	color: var(--color-muted);
	font-size: 0.88rem;
	line-height: 1.8;
}

.transparency-section {
	background: white;
	color: #fdf8f0;
}

.transparency-grid {
	display: grid;
	gap: 36px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 56px;
}

.trans-card {
	background: var(--color-soft-bg);
	border: 1px solid var(--color-soft-bg);
	border-radius: 8px;
	padding: 44px 28px;
	text-align: center;
	transition: all 0.4s ease;
}

.trans-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(200, 164, 92, 0.3);
	transform: translateY(-4px);
}

.trans-card .trans-icon {
	font-size: 2.6rem;
	margin-bottom: 16px;
}

.trans-card h4 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.trans-card p {
	color: var(--color-muted);
	font-size: 0.88rem;
	line-height: 1.8;
}

.flow-section {
	background: var(--color-soft-bg);
}

.flow-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	margin-top: 56px;
}

.flow-step {
	flex: 1;
	max-width: 200px;
	min-width: 140px;
	position: relative;
	text-align: center;
}

.flow-step::after {
	color: var(--color-gold);
	content: '→';
	font-size: 1.5rem;
	position: absolute;
	right: -20px;
	top: 36px;
}

.flow-step:last-child::after {
	display: none;
}

.flow-step .step-circle {
	align-items: center;
	background: var(--color-gold);
	border-radius: 50%;
	box-shadow: 0 6px 24px rgba(200, 164, 92, 0.35);
	color: #fff;
	display: flex;
	font-size: 1.8rem;
	height: 72px;
	justify-content: center;
	margin: 0 auto 16px;
	width: 72px;
}

.flow-step h4 {
	color: var(--color-deep);
	font-family: var(--font-display);
	font-size: 0.95rem;
	margin-bottom: 4px;
}

.flow-step p {
	color: var(--color-muted);
	font-size: 0.75rem;
}

/* ============================================
   响应式设计 (全局)
   ============================================ */

@media (max-width: 1024px) {
	.values-grid {
		gap: 24px;
	}

	.works-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-strip {
		grid-template-columns: repeat(2, 1fr);
	}

	.story-teaser {
		grid-template-columns: 1fr;
	}

	.story-image-col {
		min-height: 320px;
	}

	.story-text-col {
		padding: 56px 40px;
	}

	.story-image-accent .big-char {
		font-size: 5rem;
	}

	.story-detail-grid {
		gap: 48px;
		grid-template-columns: 1fr;
	}

	.family-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.news-grid-large {
		grid-template-columns: repeat(2, 1fr);
	}

	.news-hero-meta {
		padding: 0 40px 32px;
	}

	.article-section {
		padding: 56px 40px;
	}

	.related-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-detail {
		padding: 72px 40px;
	}

	.product-detail-grid {
		gap: 40px;
		grid-template-columns: 1fr;
	}

	.product-detail:nth-child(even) .product-detail-grid {
		direction: ltr;
	}

	.product-image {
		aspect-ratio: 4/3;
		font-size: 5rem;
	}

	.cert-grid {
		grid-template-columns: 1fr;
	}

	.transparency-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.values-grid {
		gap: 16px;
		grid-template-columns: 1fr;
	}

	.works-grid {
		gap: 16px;
		grid-template-columns: 1fr 1fr;
	}

	.trust-strip {
		grid-template-columns: 1fr 1fr;
	}

	.trust-item+.trust-item {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.04);
	}

	.slider-arrow {
		font-size: 1rem;
		height: 36px;
		width: 36px;
	}

	.slider-arrow.prev {
		left: 12px;
	}

	.slider-arrow.next {
		right: 12px;
	}

	.hero-slide-content h2 {
		font-size: 1.9rem;
	}

	.story-image-accent {
		padding: 40px 50px;
	}

	.story-image-accent .big-char {
		font-size: 4rem;
	}

	.page-hero {
		min-height: 260px;
	}

	.family-grid {
		gap: 16px;
		grid-template-columns: 1fr 1fr;
	}

	.team-grid {
		margin-left: auto;
		margin-right: auto;
		max-width: 360px;
	}

	.timeline {
		padding-left: 20px;
	}

	.timeline-item {
		padding-left: 28px;
	}

	.news-grid-large {
		grid-template-columns: 1fr;
	}

	.news-hero {
		min-height: 220px;
	}

	.news-hero-meta {
		padding: 0 24px 24px;
	}

	.article-section {
		padding: 40px 24px;
	}
	.article-container{max-width: 100%;}
	.related-grid {
		grid-template-columns: 1fr;
	}

	.back-to-top {
		bottom: 24px;
		font-size: 1rem;
		height: 40px;
		right: 24px;
		width: 40px;
	}

	.product-detail {
		padding: 56px 24px;
	}

	.product-info h3 {
		font-size: 1.5rem;
	}

	.contact-grid {
		gap: 40px;
		grid-template-columns: 1fr;
	}

	.contact-form {
		padding: 32px 24px;
	}

	.transparency-grid {
		grid-template-columns: 1fr;
	}

	.flow-steps {
		align-items: center;
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.works-grid {
		grid-template-columns: 1fr;
		margin-left: auto;
		margin-right: auto;
		max-width: 280px;
	}

	.trust-strip {
		grid-template-columns: 1fr;
	}

	.hero-slider {
		height: 85vh;
	}

	.team-grid {
		grid-template-columns: 1fr;
	}
}