/* ==================== 基础变量 ==================== */
:root {
  /* 品牌色彩 */
  --wine-red: #78141e;
  --wine-red-dark: #500a12;
  --wine-red-light: #a02837;
  --gold: #b49450;
  --gold-light: #dcc38c;
  --gold-dark: #8c6e32;
  --cream: #faf6ee;
  --cream-dark: #f0e4cd;
  --ink: #1c120c;
  --ink-light: #463223;
  
  /* 功能色彩 */
  --background: #faf6ee;
  --foreground: #1c120c;
  --card: #fffcf5;
  --card-foreground: #1c120c;
  --muted: #f0eadc;
  --muted-foreground: #6e5a46;
  --border: rgba(200, 175, 130, 0.4);
  --shadow-color: rgba(120, 20, 30, 0.12);
  
  /* 字体 */
  --font-serif: "Noto Serif SC", "Source Han Serif CN", Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* 尺寸 */
  --radius: 0.25rem;
  --header-height: 80px;
}

/* ==================== 重置样式 ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-serif);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ==================== 工具类 ==================== */
.page-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  margin-top: 1%;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

/* 按钮样式 */
.btn-wine {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wine-red);
  color: var(--cream);
  border: 1px solid var(--gold);
  padding: 12px 32px;
  font-size: 14px;
  letter-spacing: 0.15em;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-wine:hover {
  background: var(--wine-red-dark);
  border-color: var(--gold-light);
}

.btn-wine .arrow {
  transition: transform 0.3s ease;
}

.btn-wine:hover .arrow {
  transform: translateX(4px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 32px;
  font-size: 14px;
  letter-spacing: 0.15em;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 40px;
  font-size: 14px;
  letter-spacing: 0.15em;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(180, 148, 80, 0.1);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}

/* 章节标题 */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header.light {
  color: var(--cream);
}

.section-subtitle {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-subtitle.light {
  color: rgba(180, 148, 80, 0.7);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--wine-red);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--cream);
}

.section-title-left {
  font-size: 32px;
  font-weight: 700;
  color: var(--wine-red);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* 分隔线 */
.divider-gold {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

.divider-gold.light {
  background: linear-gradient(90deg, transparent, rgba(180, 148, 80, 0.6), transparent);
}

.divider-gold-short {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px 0;
}

.divider-short {
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* 链接样式 */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wine-red);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.link-more:hover {
  color: var(--gold);
}

.link-more span {
  transition: transform 0.3s ease;
}

.link-more:hover span {
  transform: translateX(4px);
}

/* 渐变背景 */
.gradient-1 {
  background: linear-gradient(135deg, var(--ink) 0%, var(--wine-red-dark) 50%, var(--ink) 100%);
}

.gradient-2 {
  background: linear-gradient(135deg, var(--wine-red-dark) 0%, var(--wine-red) 50%, var(--ink) 100%);
}

.gradient-3 {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 50%, var(--wine-red-dark) 100%);
}

.gradient-4 {
  background: linear-gradient(135deg, var(--wine-red-dark) 0%, var(--ink) 50%, var(--wine-red) 100%);
}

.gradient-wine {
  background: linear-gradient(160deg, var(--wine-red-dark) 0%, var(--wine-red) 60%, var(--wine-red-light) 100%);
}

/* 图片背景 */
.banner-bg-img {
  position: absolute;
  top: 0;
  left: 4%;
  width: 92%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.95;
}

.banner-bg-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(28, 18, 12, 0.4) 0%, rgba(28, 18, 12, 0.6) 100%);
}

/* banner-slide背景填充 */
.banner-slide {
  background: linear-gradient(135deg, var(--ink) 0%, var(--wine-red-dark) 50%, var(--ink) 100%);
}

.banner-slide .banner-content {
  position: relative;
  z-index: 10;
}

/* ==================== 导航栏 ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all 0.5s ease;
  background: linear-gradient(to bottom, rgba(28, 18, 12, 0.9), transparent);
}

.navbar.scrolled {
  background: var(--ink);
  box-shadow: 0 4px 24px var(--shadow-color);
  border-bottom: 1px solid rgba(180, 148, 80, 0.2);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background-image: url('../img/logo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.logo-icon::after {
  content: '';
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  color: var(--gold-light);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.logo-subtitle {
  color: rgba(180, 148, 80, 0.6);
  font-size: 11px;
  letter-spacing: 0.3em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 20px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(250, 246, 238, 0.8);
  border-radius: var(--radius);
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  min-width: 144px;
  background: var(--ink-light);
  border: 1px solid rgba(180, 148, 80, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(250, 246, 238, 0.8);
  letter-spacing: 0.05em;
  transition: all 0.15s ease;
}

.dropdown-item:hover {
  color: var(--gold);
  background: rgba(120, 20, 30, 0.3);
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: rgba(250, 246, 238, 0.9);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--ink);
  border-top: 1px solid rgba(180, 148, 80, 0.2);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 16px 24px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(250, 246, 238, 0.8);
  border-bottom: 1px solid rgba(180, 148, 80, 0.1);
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--gold);
  background: rgba(120, 20, 30, 0.2);
}

/* ==================== 主内容区 ==================== */
.main-content {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

/* ==================== Banner轮播 ==================== */
.banner-slider {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 600px;
  overflow: hidden;
}

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

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s ease;
}

.banner-slide.active {
  opacity: 1;
  visibility: visible;
}

.banner-bg {
  position: absolute;
  inset: 0;
}

/* 装饰圆环 */
.banner-decoration {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.banner-decoration .c1 {
  width: 256px;
  height: 256px;
  top: 80px;
  left: 80px;
}

.banner-decoration .c2 {
  width: 160px;
  height: 160px;
  top: 128px;
  left: 128px;
}

.banner-decoration .c3 {
  width: 320px;
  height: 320px;
  bottom: 160px;
  right: 80px;
}

.banner-decoration .c4 {
  width: 192px;
  height: 192px;
  bottom: 224px;
  right: 144px;
}

.banner-decoration .c5 {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(180, 148, 80, 0.3);
}

/* 侧边装饰文字 */
.banner-side-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--gold);
  opacity: 0.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.banner-side-text::before,
.banner-side-text::after {
  content: '';
  width: 1px;
  height: 64px;
  background: var(--gold);
}

.banner-side-text.left {
  left: 32px;
}

.banner-side-text.right {
  right: 32px;
}

/* Banner内容 */
.banner-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-text {
  max-width: 600px;
  animation: fadeSlide 0.7s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.banner-tag span {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.banner-title {
  font-size: 72px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.banner-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(250, 246, 238, 0.7);
  margin-bottom: 40px;
  max-width: 480px;
}

.banner-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.banner-badge .star {
  color: var(--gold);
  font-size: 14px;
}

.badge-text {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid rgba(180, 148, 80, 0.4);
  padding: 4px 12px;
  border-radius: var(--radius);
}

.banner-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Banner控制 */
.banner-controls {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 20;
}

.banner-controls .page-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-indicators {
  display: flex;
  align-items: center;
  gap: 12px;
}

.indicator {
  width: 16px;
  height: 4px;
  background: rgba(250, 246, 238, 0.3);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.indicator.active {
  width: 32px;
  background: var(--gold);
}

.indicator:hover {
  background: rgba(250, 246, 238, 0.6);
}

.banner-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250, 246, 238, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 246, 238, 0.6);
  font-size: 20px;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ==================== 数据统计条 ==================== */
.stats-bar {
  background: linear-gradient(160deg, var(--wine-red-dark) 0%, var(--wine-red) 60%, var(--wine-red-light) 100%);
  border-top: 1px solid rgba(180, 148, 80, 0.2);
  border-bottom: 1px solid rgba(180, 148, 80, 0.2);
  padding: 32px 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(250, 246, 238, 0.6);
}

/* ==================== 品牌简介 ==================== */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 320px;
}

.about-desc {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.tag {
  font-size: 12px;
  color: var(--gold);
  border: 1px solid rgba(180, 148, 80, 0.4);
  padding: 6px 12px;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
}

.about-cards {
  flex: 1;
  min-width: 320px;
  display: flex;
  gap: 16px;
}

.card-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-col:first-child {
  padding-top: 32px;
}

.info-card {
  border-radius: var(--radius);
  padding: 16px;
}

.info-card.wine {
  width: 176px;
  height: 208px;
  background: linear-gradient(160deg, var(--wine-red-dark) 0%, var(--wine-red) 60%, var(--wine-red-light) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 24px var(--shadow-color);
}

.info-card.ink {
  width: 176px;
  height: 208px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-light) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 24px var(--shadow-color);
}

.info-card.cream {
  width: 176px;
  height: 128px;
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 4px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
}

.card-sub {
  font-size: 12px;
  color: rgba(250, 246, 238, 0.5);
  margin-top: 4px;
}

.card-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.card-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--wine-red);
  margin-bottom: 4px;
}

.card-small {
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: 0.05em;
}

/* ==================== 产品展示 ==================== */
.products-section {
  background: var(--cream-dark);
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.product-card {
  width: 256px;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-color);
}

.product-image {
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-bottle {
  width: 64px;
  height: 128px;
  border: 2px solid rgba(180, 148, 80, 0.4);
  border-radius: var(--radius);
  background: rgba(250, 246, 238, 0.1);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
}

.product-bottle span {
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(180, 148, 80, 0.8);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  background: rgba(180, 148, 80, 0.9);
  color: var(--ink);
  padding: 2px 8px;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
}

.product-info {
  padding: 20px;
}

.product-series {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 4px;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.product-age {
  font-size: 12px;
  color: var(--wine-red);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.product-tag {
  font-size: 11px;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: var(--radius);
}

.product-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--wine-red);
  transition: color 0.3s ease;
}

.product-card:hover .product-link {
  color: var(--gold);
}

/* ==================== 文化亮点 ==================== */
.culture-section {
  background: linear-gradient(160deg, var(--wine-red-dark) 0%, var(--wine-red) 60%, var(--wine-red-light) 100%);
  position: relative;
  overflow: hidden;
}

.deco-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  border: 1px solid rgba(180, 148, 80, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.deco-bg::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 256px;
  height: 256px;
  border: 1px solid rgba(180, 148, 80, 0.1);
  border-radius: 50%;
}

.culture-section .page-container {
  position: relative;
  z-index: 1;
}

.culture-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.culture-card {
  flex: 1;
  min-width: 224px;
  max-width: 288px;
  background: rgba(250, 246, 238, 0.05);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.culture-card:hover {
  background: rgba(250, 246, 238, 0.1);
  border-color: rgba(180, 148, 80, 0.4);
}

.culture-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(180, 148, 80, 0.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.culture-card:hover .culture-icon {
  border-color: var(--gold);
}

.culture-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.culture-desc {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.6);
  line-height: 1.6;
}

/* ==================== 新闻中心 ==================== */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.news-card {
  flex: 1;
  min-width: 280px;
  cursor: pointer;
}

.news-card.featured {
  min-width: 320px;
}

.news-image {
  width: 100%;
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.news-card.featured .news-image {
  height: 208px;
}

.news-card:not(.featured) .news-image {
  height: 160px;
}

.news-date-box {
  text-align: center;
}

.news-date-day {
  font-size: 30px;
  font-weight: 700;
  color: rgba(120, 20, 30, 0.3);
  line-height: 1;
}

.news-date-year {
  font-size: 12px;
  color: var(--muted-foreground);
  opacity: 0.5;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.news-category {
  font-size: 11px;
  color: var(--wine-red);
  border: 1px solid rgba(120, 20, 30, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius);
}

.news-date {
  font-size: 12px;
  color: var(--muted-foreground);
}

.news-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card:hover .news-title {
  color: var(--wine-red);
}

.news-summary {
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.news-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--wine-red);
  transition: color 0.3s ease;
}

.news-card:hover .news-link {
  color: var(--gold);
}

/* ==================== 品质承诺 ==================== */
.promise-section {
  background: var(--cream-dark);
  border-top: 1px solid rgba(180, 148, 80, 0.2);
  border-bottom: 1px solid rgba(180, 148, 80, 0.2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.promise-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(180, 148, 80, 0.03) 20px, rgba(180, 148, 80, 0.03) 21px);
}

.promise-section .page-container {
  position: relative;
  z-index: 1;
}

.promise-desc {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.promise-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.promise-item .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.promise-item span:last-child {
  font-size: 14px;
  color: var(--ink-light);
  letter-spacing: 0.05em;
}

/* ==================== 页面通用样式 ==================== */
.page-hero {
  height: 288px;
  background: linear-gradient(160deg, var(--wine-red-dark) 0%, var(--wine-red) 60%, var(--wine-red-light) 100%);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 48px;
}

.hero-decoration {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-decoration .c1 {
  width: 192px;
  height: 192px;
  top: 40px;
  right: 40px;
}

.hero-decoration .c2 {
  width: 128px;
  height: 128px;
  bottom: 20px;
  left: 80px;
}

.page-hero .page-container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(250, 246, 238, 0.5);
  margin-bottom: 12px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .current {
  color: var(--gold);
}

.page-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.15em;
}

/* ==================== 筛选栏 ==================== */
.filter-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(180, 148, 80, 0.2);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
}

.filter-tab {
  padding: 8px 20px;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-tab:hover {
  color: var(--wine-red);
  border-color: rgba(180, 148, 80, 0.2);
}

.filter-tab.active {
  background: var(--wine-red);
  color: var(--cream);
  border-color: rgba(180, 148, 80, 0.3);
}

/* ==================== 关于我们页面 ==================== */
.about-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

.intro-text {
  flex: 1;
  min-width: 320px;
}

.intro-desc {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 16px;
}

.intro-stats {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-card {
  flex: 1;
  min-width: 144px;
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.stat-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--wine-red);
  margin-bottom: 8px;
}

.stat-text {
  font-size: 12px;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
}

/* 时间轴 */
.timeline-section {
  background: var(--cream-dark);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 96px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(180, 148, 80, 0.3);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
}

.timeline-year {
  width: 80px;
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border: 2px solid var(--background);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: var(--card);
  border: 1px solid rgba(180, 148, 80, 0.15);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 24px var(--shadow-color);
}

.timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--wine-red);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* 企业文化 */
.values-section {
  background: linear-gradient(160deg, var(--wine-red-dark) 0%, var(--wine-red) 60%, var(--wine-red-light) 100%);
  position: relative;
  overflow: hidden;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.value-card {
  flex: 1;
  min-width: 224px;
  max-width: 320px;
  background: rgba(250, 246, 238, 0.05);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(250, 246, 238, 0.1);
}

.value-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(180, 148, 80, 0.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.value-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.6);
  line-height: 1.6;
}

.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.vm-card {
  flex: 1;
  min-width: 224px;
  border: 1px solid rgba(180, 148, 80, 0.3);
  border-radius: var(--radius);
  padding: 24px;
}

.vm-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}

.vm-content {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.8);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* 荣誉资质 */
.honors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.honor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  transition: all 0.3s ease;
}

.honor-item:hover {
  border-color: rgba(180, 148, 80, 0.5);
}

.honor-icon {
  font-size: 16px;
  color: var(--gold);
}

.honor-text {
  font-size: 14px;
  color: var(--ink-light);
  letter-spacing: 0.05em;
}

/* 酿造工艺 */
.craft-section {
  background: var(--cream-dark);
}

.craft-subtitle {
  max-width: 600px;
  margin: -32px auto 48px;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 14px;
}

.craft-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.craft-card {
  flex: 1;
  min-width: 192px;
  max-width: 256px;
  background: var(--card);
  border: 1px solid rgba(180, 148, 80, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 24px var(--shadow-color);
  transition: all 0.3s ease;
}

.craft-card:hover {
  border-color: rgba(180, 148, 80, 0.4);
}

.craft-num {
  font-size: 40px;
  font-weight: 700;
  color: rgba(120, 20, 30, 0.15);
  margin-bottom: 12px;
  line-height: 1;
}

.craft-card:hover .craft-num {
  color: rgba(120, 20, 30, 0.25);
}

.craft-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--wine-red);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.craft-divider {
  width: 32px;
  height: 1px;
  background: rgba(180, 148, 80, 0.4);
  margin-bottom: 12px;
}

.craft-desc {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.stat-text {
  font-size: 12px;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
}

/* 时间轴 */
.timeline-section {
  background: var(--cream-dark);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 96px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(180, 148, 80, 0.3);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
}

.timeline-year {
  width: 80px;
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border: 2px solid var(--background);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: var(--card);
  border: 1px solid rgba(180, 148, 80, 0.15);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 24px var(--shadow-color);
}

.timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--wine-red);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* 企业文化 */
.values-section {
  background: linear-gradient(160deg, var(--wine-red-dark) 0%, var(--wine-red) 60%, var(--wine-red-light) 100%);
  position: relative;
  overflow: hidden;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.value-card {
  flex: 1;
  min-width: 224px;
  max-width: 320px;
  background: rgba(250, 246, 238, 0.05);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(250, 246, 238, 0.1);
}

.value-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(180, 148, 80, 0.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.value-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.6);
  line-height: 1.6;
}

.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.vm-card {
  flex: 1;
  min-width: 224px;
  border: 1px solid rgba(180, 148, 80, 0.3);
  border-radius: var(--radius);
  padding: 24px;
}

.vm-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}

.vm-content {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.8);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* 荣誉资质 */
.honors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.honor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  transition: all 0.3s ease;
}

.honor-item:hover {
  border-color: rgba(180, 148, 80, 0.5);
}

.honor-icon {
  font-size: 16px;
  color: var(--gold);
}

.honor-text {
  font-size: 14px;
  color: var(--ink-light);
  letter-spacing: 0.05em;
}

/* 酿造工艺 */
.craft-section {
  background: var(--cream-dark);
}

.craft-subtitle {
  max-width: 600px;
  margin: -32px auto 48px;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 14px;
}

.craft-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.craft-card {
  flex: 1;
  min-width: 192px;
  max-width: 256px;
  background: var(--card);
  border: 1px solid rgba(180, 148, 80, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 24px var(--shadow-color);
  transition: all 0.3s ease;
}

.craft-card:hover {
  border-color: rgba(180, 148, 80, 0.4);
}

.craft-num {
  font-size: 40px;
  font-weight: 700;
  color: rgba(120, 20, 30, 0.15);
  margin-bottom: 12px;
  line-height: 1;
}

.craft-card:hover .craft-num {
  color: rgba(120, 20, 30, 0.25);
}

.craft-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--wine-red);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.craft-divider {
  width: 32px;
  height: 1px;
  background: rgba(180, 148, 80, 0.4);
  margin-bottom: 12px;
}

.craft-desc {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ==================== 产品中心页面 ==================== */
.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* 产品详情弹窗 */
.product-modal,
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.product-modal.active,
.news-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 18, 12, 0.8);
}

.modal-content {
  position: relative;
  background: var(--background);
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.news-modal-content {
  max-width: 800px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--muted-foreground);
  z-index: 10;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--wine-red);
}

.modal-body {
  padding: 48px;
}

.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.product-detail-image {
  width: 320px;
  flex-shrink: 0;
}

.detail-image {
  width: 100%;
  height: 384px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px var(--shadow-color);
}

.detail-bottle {
  width: 96px;
  height: 192px;
  border: 2px solid rgba(180, 148, 80, 0.5);
  border-radius: var(--radius);
  background: rgba(250, 246, 238, 0.1);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
}

.detail-bottle span {
  writing-mode: vertical-rl;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.btn-share {
  width: 100%;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-detail-info {
  flex: 1;
  min-width: 320px;
}

.detail-badge {
  display: inline-block;
  font-size: 12px;
  color: var(--gold);
  border: 1px solid rgba(180, 148, 80, 0.4);
  padding: 4px 12px;
  border-radius: var(--radius);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.detail-series {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}

.detail-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.detail-age {
  font-size: 14px;
  color: var(--wine-red);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.spec-item {
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 8px 16px;
  text-align: center;
  min-width: 80px;
}

.spec-label {
  font-size: 11px;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}

.spec-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
}

.detail-section {
  margin-bottom: 24px;
}

.detail-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--wine-red);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.detail-section p {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-light);
}

.feature-star {
  color: var(--gold);
  font-size: 12px;
}

.detail-story {
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 24px;
}

/* ==================== 新闻中心页面 ==================== */
.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.news-detail-header {
  margin-bottom: 24px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.4;
  margin-bottom: 16px;
}

.news-detail-summary {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.8;
  padding-left: 16px;
  border-left: 2px solid var(--wine-red);
  margin-bottom: 24px;
}

.news-detail-content {
  font-size: 15px;
  color: var(--foreground);
  line-height: 1.8;
  white-space: pre-line;
}

.news-detail-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(180, 148, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==================== 九华文化页面 ==================== */
.facts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
}

.fact-card {
  flex: 1;
  min-width: 192px;
  max-width: 256px;
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.fact-card:hover {
  border-color: rgba(180, 148, 80, 0.5);
}

.fact-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(180, 148, 80, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}

.fact-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--wine-red);
  margin-bottom: 4px;
}

.fact-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.fact-desc {
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.jiuhua-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.intro-image {
  flex: 1;
  min-width: 288px;
}

.placeholder-img {
  height: 288px;
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.placeholder-big {
  font-size: 72px;
  font-weight: 700;
  color: rgba(120, 20, 30, 0.2);
  line-height: 1;
}

.placeholder-small {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-top: 8px;
}

.jiuhua-intro .intro-text {
  flex: 1;
  min-width: 288px;
}

.jiuhua-intro .intro-text p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* 酒文化文章 */
.wine-culture-section {
  background: var(--cream-dark);
}

.culture-articles {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.culture-article {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.culture-article.reverse {
  flex-direction: row-reverse;
}

.article-image {
  flex: 1;
  min-width: 288px;
  height: 256px;
  background: linear-gradient(160deg, var(--wine-red-dark) 0%, var(--wine-red) 60%, var(--wine-red-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px var(--shadow-color);
}

.article-image-placeholder {
  text-align: center;
}

.article-image-placeholder p {
  color: rgba(250, 246, 238, 0.3);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.article-image-placeholder p:last-child {
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.5;
}

.article-content {
  flex: 1;
  min-width: 288px;
}

.article-subtitle {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 8px;
}

.article-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.article-content .divider-gold-short {
  margin-bottom: 20px;
}

.article-text {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.8;
  white-space: pre-line;
}

/* 品牌故事 */
.brand-story-section {
  background: linear-gradient(160deg, var(--wine-red-dark) 0%, var(--wine-red) 60%, var(--wine-red-light) 100%);
  position: relative;
  overflow: hidden;
}

.brand-timeline {
  max-width: 700px;
  margin: 0 auto;
}

.brand-timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.brand-timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-circle {
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline-line {
  width: 1px;
  flex: 1;
  background: rgba(180, 148, 80, 0.3);
  margin-top: 4px;
}

.brand-timeline-content {
  flex: 1;
  padding-bottom: 8px;
}

.brand-timeline-year {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.brand-timeline-text {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.7);
  line-height: 1.6;
}

/* ==================== 人才招聘页面 ==================== */
.philosophy-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
}

.ph-card {
  flex: 1;
  min-width: 224px;
  max-width: 320px;
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.ph-card:hover {
  border-color: rgba(180, 148, 80, 0.5);
}

.ph-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--wine-red);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.ph-card .divider-short {
  margin: 0 auto 16px;
}

.ph-card p {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.benefits-box {
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 32px;
}

.benefits-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--wine-red);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-item {
  flex: 1;
  min-width: 176px;
  max-width: 224px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-icon {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.benefit-desc {
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* 岗位列表 */
.jobs-section {
  background: var(--cream-dark);
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  background: var(--card);
  border: 1px solid rgba(180, 148, 80, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px var(--shadow-color);
  overflow: hidden;
}

.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.job-header:hover {
  background: var(--cream-dark);
}

.job-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.job-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.05em;
}

.job-category {
  font-size: 11px;
  color: var(--wine-red);
  border: 1px solid rgba(120, 20, 30, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius);
}

.job-location,
.job-type {
  font-size: 12px;
  color: var(--muted-foreground);
}

.job-type {
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: var(--radius);
}

.job-toggle {
  font-size: 18px;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.job-card.active .job-toggle {
  color: var(--wine-red);
}

.job-detail {
  display: none;
  padding: 0 28px 28px;
  border-top: 1px solid rgba(180, 148, 80, 0.1);
}

.job-card.active .job-detail {
  display: block;
}

.job-section {
  margin-top: 20px;
}

.job-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--wine-red);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.job-list {
  list-style: disc;
  padding-left: 20px;
}

.job-list li {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 4px;
}

/* 简历投递 */
.apply-section {
  background: var(--background);
}

.apply-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--foreground);
  margin-bottom: 8px;
}

.form-group .required {
  color: var(--wine-red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

/* ==================== 页脚 ==================== */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(180, 148, 80, 0.2);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding: 64px 0;
}

.footer-brand {
  flex: 1;
  min-width: 256px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.5);
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(250, 246, 238, 0.5);
  margin-bottom: 8px;
}

.footer-contact .icon {
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 48px;
}

.link-group h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(180, 148, 80, 0.2);
}

.link-group li {
  margin-bottom: 12px;
}

.link-group a {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.5);
  transition: color 0.3s ease;
}

.link-group a:hover {
  color: var(--gold);
}

.footer-qr {
  min-width: 160px;
}

.footer-qr h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(180, 148, 80, 0.2);
}

.qr-codes {
  display: flex;
  gap: 16px;
}

.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.qr-placeholder {
  width: 80px;
  height: 80px;
  background: rgba(250, 246, 238, 0.1);
  border: 1px solid rgba(180, 148, 80, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(180, 148, 80, 0.6);
}

.qr-item span {
  font-size: 12px;
  color: rgba(250, 246, 238, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(180, 148, 80, 0.3);
}

.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
}

.footer-copyright p {
  font-size: 12px;
  color: rgba(250, 246, 238, 0.3);
  letter-spacing: 0.05em;
}

/* ==================== 返回顶部 ==================== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  background: var(--wine-red);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cream);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--wine-red-dark);
  transform: translateY(-4px);
}

/* ==================== 响应式 ==================== */
@media (max-width: 1024px) {
  .page-container {
    padding: 0 24px;
  }
  
  .banner-title {
    font-size: 56px;
  }
  
  .banner-subtitle {
    font-size: 28px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 468px) {
  :root {
    --header-height: 64px;
  }
  
  .page-container {
    padding: 0 16px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .banner-slider {
    min-height: 500px;
  }
  
  .banner-title {
    font-size: 40px;
  }
  
  .banner-subtitle {
    font-size: 22px;
  }
  
  .banner-side-text {
    display: none;
  }
  
  .section-padding {
    padding: 48px 0;
  }
  
  .section-title,
  .section-title-left {
    font-size: 24px;
  }
  
  .about-cards {
    justify-content: center;
  }
  
  .card-col:first-child {
    padding-top: 0;
  }
  
  .timeline::before {
    left: 16px;
  }
  
  .timeline-year {
    display: none;
  }
  
  .timeline-dot {
    margin-left: 10px;
  }
  
  .page-hero {
    height: 200px;
    padding-bottom: 32px;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .modal-content {
    max-height: 95vh;
    margin: 16px;
  }
  
  .modal-body {
    padding: 24px;
  }
  
  .product-detail-image {
    width: 100%;
  }
  
  .detail-image {
    height: 280px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-row .form-group {
    margin-bottom: 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    gap: 32px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 32px;
  }
  
  .banner-subtitle {
    font-size: 18px;
  }
  
  .banner-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .stats-grid {
    gap: 16px;
  }
  
  .stat-value {
    font-size: 28px;
  }
  
  .info-card.wine,
  .info-card.ink,
  .info-card.cream {
    width: 140px;
  }
  
  .info-card.wine,
  .info-card.ink {
    height: 180px;
  }
  
  .info-card.cream {
    height: 110px;
  }
  
  .product-card {
    width: 100%;
  }
  
  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  
  .filter-tab {
    white-space: nowrap;
  }
  
  .job-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .news-list {
    grid-template-columns: 1fr;
  }
}

/* ==================== 动画 ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease;
}

.animate-slideUp {
  animation: slideUp 0.5s ease;
}

/* Toast提示 */
.toast {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 16px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px var(--shadow-color);
  z-index: 3000;
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-left: 4px solid #22c55e;
}

.toast.error {
  border-left: 4px solid var(--wine-red);
}

.toast-message {
  font-size: 14px;
  color: var(--foreground);
}

/* ==================== 移动端增强适配 ==================== */
@media (max-width: 468px) {
  /* 导航栏优化 */
  .navbar {
    height: 56px;
  }
  
  .navbar-inner {
    height: 56px;
  }
  
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .logo-title {
    font-size: 16px;
  }
  
  .logo-subtitle {
    font-size: 9px;
  }
  
  /* Banner优化 - 图片背景移动端适配 */
  .banner-slider {
    min-height: 300px;
    height: 55vh;
    max-height: 350px;
  }

  .banner-slides {
    height: 100%;
  }

  .banner-slide {
    min-height: 300px;
    height: 100%;
  }
  
  .banner-bg-img {
    left: 4%;
    width: 92%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  
  .banner-bg-img::after {
    background: linear-gradient(to bottom, rgba(28, 18, 12, 0.5) 0%, rgba(28, 18, 12, 0.7) 100%);
  }
  
  .banner-content {
    padding: 0 20px;
  }
  
  .banner-title {
    font-size: 36px;
    line-height: 1.2;
  }
  
  .banner-subtitle {
    font-size: 20px;
  }
  
  .banner-tagline {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  .banner-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .banner-btns .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* 轮播指示器 */
  .banner-indicators {
    bottom: 80px;
    gap: 8px;
  }
  
  .indicator {
    width: 32px;
    height: 3px;
  }
  
  /* 区块标题 */
  .section-header {
    margin-bottom: 32px;
  }
  
  .section-title,
  .section-title-left {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 13px;
  }
  
  /* 产品卡片 */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-card {
    width: 100%;
  }
  
  .product-image {
    height: 200px;
  }
  
  .product-info {
    padding: 16px;
  }
  
  .product-name {
    font-size: 18px;
  }
  
  /* 文化卡片 */
  .culture-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .culture-card {
    padding: 24px;
  }
  
  /* 新闻卡片 */
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-card {
    padding: 16px;
  }
  
  .news-card.featured {
    grid-column: span 1;
  }
  
  .news-title {
    font-size: 16px;
  }
  
  /* 关于我们页面 */
  .about-hero {
    padding: 60px 0;
  }
  
  .about-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .info-card {
    width: 100% !important;
    max-width: 280px;
  }
  
  /* 时间轴 */
  .timeline {
    padding-left: 0;
  }
  
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 40px;
  }
  
  .timeline-content {
    text-align: left;
    padding: 0;
    margin-top: 12px;
  }
  
  .timeline-title {
    font-size: 16px;
  }
  
  /* 价值观 */
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  /* 荣誉 */
  .honors-grid {
    grid-template-columns: 1fr;
  }
  
  /* 酿造工艺 */
  .craft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .craft-card {
    padding: 20px;
  }
  
  .craft-num {
    font-size: 28px;
  }
  
  /* 产品详情弹窗 */
  .product-detail {
    flex-direction: column;
  }
  
  .product-detail-image {
    width: 100%;
  }
  
  .detail-image {
    height: 240px;
  }
  
  .detail-name {
    font-size: 22px;
  }
  
  .detail-specs {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .spec-item {
    min-width: 80px;
  }
  
  /* 新闻详情 */
  .news-detail-title {
    font-size: 20px;
  }
  
  /* 文化页面 */
  .culture-article {
    flex-direction: column;
    gap: 24px;
  }
  
  .culture-article.reverse {
    flex-direction: column;
  }
  
  .article-image,
  .article-content {
    width: 100%;
  }
  
  .article-image-placeholder {
    height: 200px;
  }
  
  /* 品牌时间轴 */
  .brand-timeline-item {
    padding-left: 32px;
  }
  
  .brand-timeline-year {
    font-size: 13px;
  }
  
  /* 招聘页面 */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .benefit-card {
    padding: 20px 16px;
  }
  
  .job-header {
    padding: 16px 20px;
  }
  
  .job-title {
    font-size: 16px;
  }
  
  .job-detail {
    padding: 0 20px 20px;
  }
  
  /* 申请表单 */
  .apply-section {
    padding: 32px 20px;
  }
  
  .apply-title {
    font-size: 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input,
  .form-textarea,
  .form-select {
    padding: 12px 14px;
    font-size: 16px; /* 防止iOS缩放 */
  }
  
  /* 页脚 */
  .footer {
    padding: 48px 0 24px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  /* 返回顶部 */
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  /* 筛选标签 */
  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 8px;
  }
  
  .filter-tab {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 13px;
  }
  
  /* Toast提示 */
  .toast {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 80px;
    transform: translateY(120%);
  }
  
  .toast.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  /* 超小屏幕优化 */
  .banner-title {
    font-size: 28px;
  }
  
  .banner-subtitle {
    font-size: 16px;
  }
  
  .section-title,
  .section-title-left {
    font-size: 20px;
  }
  
  /* 酿造工艺改为单列 */
  .craft-grid {
    grid-template-columns: 1fr;
  }
  
  /* 福利网格改为单列 */
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  /* 产品规格 */
  .detail-specs {
    flex-direction: column;
    gap: 12px;
  }
  
  .spec-item {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  /* 模态框 */
  .modal-content {
    margin: 8px;
    max-height: 98vh;
  }
  
  .modal-body {
    padding: 16px;
  }
  
  .modal-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

/* iPhone安全区域适配 */
@supports (padding-top: env(safe-area-inset-top)) {
  .navbar {
    padding-top: env(safe-area-inset-top);
  }
  
  .mobile-menu {
    padding-top: calc(env(safe-area-inset-top) + 60px);
  }
  
  .banner-slider {
    min-height: calc(62vh - env(safe-area-inset-top));
  }
}

/* 横屏模式优化 */
@media (max-height: 500px) and (orientation: landscape) {
  .banner-slider {
    min-height: auto;
    height: auto;
    padding: 100px 0 60px;
  }
  
  .banner-title {
    font-size: 32px;
  }
  
  .banner-btns {
    flex-direction: row;
  }
  
  .mobile-menu {
    padding-top: 60px;
  }
}

/* 触摸设备优化 */
@media (hover: none) {
  .product-card:hover,
  .news-card:hover,
  .culture-card:hover,
  .craft-card:hover,
  .value-card:hover,
  .benefit-card:hover {
    transform: none;
  }
  
  .nav-link:hover::after {
    width: 0;
  }
  
  .btn-primary:hover,
  .btn-outline:hover,
  .btn-gold:hover {
    transform: none;
  }
}

/* 减少动画（尊重用户偏好） */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.news-modal-content {
  max-width: 800px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--muted-foreground);
  z-index: 10;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--wine-red);
}

.modal-body {
  padding: 48px;
}

.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.product-detail-image {
  width: 320px;
  flex-shrink: 0;
}

.detail-image {
  width: 100%;
  height: 384px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px var(--shadow-color);
}

.detail-bottle {
  width: 96px;
  height: 192px;
  border: 2px solid rgba(180, 148, 80, 0.5);
  border-radius: var(--radius);
  background: rgba(250, 246, 238, 0.1);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
}

.detail-bottle span {
  writing-mode: vertical-rl;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.btn-share {
  width: 100%;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-detail-info {
  flex: 1;
  min-width: 320px;
}

.detail-badge {
  display: inline-block;
  font-size: 12px;
  color: var(--gold);
  border: 1px solid rgba(180, 148, 80, 0.4);
  padding: 4px 12px;
  border-radius: var(--radius);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.detail-series {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}

.detail-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.detail-age {
  font-size: 14px;
  color: var(--wine-red);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.spec-item {
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 8px 16px;
  text-align: center;
  min-width: 80px;
}

.spec-label {
  font-size: 11px;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}

.spec-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
}

.detail-section {
  margin-bottom: 24px;
}

.detail-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--wine-red);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.detail-section p {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-light);
}

.feature-star {
  color: var(--gold);
  font-size: 12px;
}

.detail-story {
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 24px;
}

/* ==================== 新闻中心页面 ==================== */
.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.news-detail-header {
  margin-bottom: 24px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.4;
  margin-bottom: 16px;
}

.news-detail-summary {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.8;
  padding-left: 16px;
  border-left: 2px solid var(--wine-red);
  margin-bottom: 24px;
}

.news-detail-content {
  font-size: 15px;
  color: var(--foreground);
  line-height: 1.8;
  white-space: pre-line;
}

.news-detail-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(180, 148, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==================== 九华文化页面 ==================== */
.facts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
}

.fact-card {
  flex: 1;
  min-width: 192px;
  max-width: 256px;
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.fact-card:hover {
  border-color: rgba(180, 148, 80, 0.5);
}

.fact-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(180, 148, 80, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}

.fact-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--wine-red);
  margin-bottom: 4px;
}

.fact-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.fact-desc {
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.jiuhua-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.intro-image {
  flex: 1;
  min-width: 288px;
}

.placeholder-img {
  height: 288px;
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.placeholder-big {
  font-size: 72px;
  font-weight: 700;
  color: rgba(120, 20, 30, 0.2);
  line-height: 1;
}

.placeholder-small {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-top: 8px;
}

.jiuhua-intro .intro-text {
  flex: 1;
  min-width: 288px;
}

.jiuhua-intro .intro-text p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* 酒文化文章 */
.wine-culture-section {
  background: var(--cream-dark);
}

.culture-articles {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.culture-article {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.culture-article.reverse {
  flex-direction: row-reverse;
}

.article-image {
  flex: 1;
  min-width: 288px;
  height: 256px;
  background: linear-gradient(160deg, var(--wine-red-dark) 0%, var(--wine-red) 60%, var(--wine-red-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px var(--shadow-color);
}

.article-image-placeholder {
  text-align: center;
}

.article-image-placeholder p {
  color: rgba(250, 246, 238, 0.3);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.article-image-placeholder p:last-child {
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.5;
}

.article-content {
  flex: 1;
  min-width: 288px;
}

.article-subtitle {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 8px;
}

.article-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.article-content .divider-gold-short {
  margin-bottom: 20px;
}

.article-text {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.8;
  white-space: pre-line;
}

/* 品牌故事 */
.brand-story-section {
  background: linear-gradient(160deg, var(--wine-red-dark) 0%, var(--wine-red) 60%, var(--wine-red-light) 100%);
  position: relative;
  overflow: hidden;
}

.brand-timeline {
  max-width: 700px;
  margin: 0 auto;
}

.brand-timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.brand-timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-circle {
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline-line {
  width: 1px;
  flex: 1;
  background: rgba(180, 148, 80, 0.3);
  margin-top: 4px;
}

.brand-timeline-content {
  flex: 1;
  padding-bottom: 8px;
}

.brand-timeline-year {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.brand-timeline-text {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.7);
  line-height: 1.6;
}

/* ==================== 人才招聘页面 ==================== */
.philosophy-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
}

.ph-card {
  flex: 1;
  min-width: 224px;
  max-width: 320px;
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.ph-card:hover {
  border-color: rgba(180, 148, 80, 0.5);
}

.ph-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--wine-red);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.ph-card .divider-short {
  margin: 0 auto 16px;
}

.ph-card p {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.benefits-box {
  background: var(--cream-dark);
  border: 1px solid rgba(180, 148, 80, 0.2);
  border-radius: var(--radius);
  padding: 32px;
}

.benefits-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--wine-red);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-item {
  flex: 1;
  min-width: 176px;
  max-width: 224px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-icon {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.benefit-desc {
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* 岗位列表 */
.jobs-section {
  background: var(--cream-dark);
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  background: var(--card);
  border: 1px solid rgba(180, 148, 80, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px var(--shadow-color);
  overflow: hidden;
}

.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.job-header:hover {
  background: var(--cream-dark);
}

.job-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

