/* 往台 · 首页 · 全屏轮播 */

body.wt-page-home #page > .wt-hero,
body.wt-page-home #page > .intro-slider-wrap {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.wt-hero.intro-slider-wrap {
  --wt-hero-h: clamp(480px, 78vh, 820px);
  --wt-hero-dock-space: 76px;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: var(--wt-hero-h);
  min-height: var(--wt-hero-h);
  margin: 0;
  padding: 0;
  float: none !important;
  overflow: hidden;
  background: var(--wt-night);
}

.wt-hero .intro-slider,
.wt-hero .intro-slider.swiper-container {
  position: absolute;
  inset: 0;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.wt-hero .intro-slider .swiper-wrapper {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
}

.wt-hero .intro-slider .swiper-slide {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--wt-night);
}

.wt-hero .intro-slider .swiper-slide > .intro-section {
  width: 100%;
  height: 100% !important;
  min-height: 100% !important;
}

.wt-hero .intro-section {
  position: relative;
  width: 100%;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 !important;
}

.wt-hero .intro-section.overlay::before,
.wt-hero .overlay::before {
  display: none !important;
}

.wt-hero__media {
  position: absolute;
  top: -3%;
  right: -1%;
  bottom: -3%;
  left: -1%;
  z-index: 0;
  overflow: hidden;
  background: var(--wt-night);
}

.wt-hero__img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%) scale(1.06);
  transform-origin: center center;
  transition: transform 12s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.wt-hero .swiper-slide-active .wt-hero__img {
  transform: translate(-50%, -50%) scale(1.1);
}

.wt-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(74, 18, 25, 0.82) 0%, rgba(74, 18, 25, 0.45) 30%, rgba(16, 20, 24, 0.08) 55%, rgba(16, 20, 24, 0.25) 100%),
    linear-gradient(0deg, rgba(16, 20, 24, 0.55) 0%, rgba(16, 20, 24, 0.12) 14%, transparent 38%);
}

.wt-hero__shade::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(16, 20, 24, 0.35);
  pointer-events: none;
}

.wt-hero .intro-section::before {
  display: none;
}

.wt-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(1320px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-top: calc(var(--wt-header-h, 76px) + clamp(0.75rem, 2vh, 1.25rem));
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

.wt-hero .intro-content {
  max-width: 680px;
  padding: 0 0 0 clamp(1.25rem, 3vw, 2.5rem);
  border-left: 4px solid var(--wt-brass);
  margin: 0;
}

.wt-hero .intro-content .title {
  margin-bottom: 1rem;
  font-family: var(--wt-font-display);
  font-size: clamp(2.35rem, 6.8vw, 4.25rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.1;
  color: var(--wt-white);
  text-shadow: 0 8px 40px rgba(16, 20, 24, 0.5);
}

.wt-hero .intro-content .desc {
  margin-bottom: 2.25rem;
  max-width: 580px;
  font-size: clamp(1.02rem, 2.2vw, 1.25rem);
  line-height: 1.85;
  color: rgba(255, 252, 248, 0.9);
  text-shadow: 0 2px 16px rgba(16, 20, 24, 0.35);
}

.wt-hero .intro-content .desc p { margin: 0; }

.wt-hero .intro-content > * {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.wt-hero .swiper-slide-active .intro-content > * {
  animation: wt-hero-fade-up 0.9s ease both !important;
}

.wt-hero .swiper-slide-active .intro-content > *:nth-child(1) { animation-delay: 0.1s !important; }
.wt-hero .swiper-slide-active .intro-content > *:nth-child(2) { animation-delay: 0.22s !important; }
.wt-hero .swiper-slide-active .intro-content > *:nth-child(3) { animation-delay: 0.34s !important; }
.wt-hero .swiper-slide-active .intro-content > *:nth-child(4) { animation-delay: 0.46s !important; }

@keyframes wt-hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wt-btn--hero {
  padding: 0.85rem 2rem !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.14em !important;
}

.wt-hero__slide-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35em 0.85em;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wt-brass-light);
  border: 1px solid rgba(196, 165, 116, 0.5);
  background: rgba(16, 20, 24, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* 轮播 · 控制区 */
.wt-hero__chrome {
  position: absolute;
  inset: 0;
  z-index: 12;
  height: 100%;
  pointer-events: none;
}

.wt-hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: auto;
}

.wt-hero__bottom-progress {
  height: 3px;
  background: rgba(255, 252, 248, 0.12);
}

.wt-hero__bottom-progress .wt-hero__progress-bar {
  display: block;
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, var(--wt-wine), var(--wt-brass-light));
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.wt-hero__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem max(24px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  background: linear-gradient(0deg, rgba(16, 20, 24, 0.72) 0%, rgba(16, 20, 24, 0.35) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wt-hero__counter {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  color: rgba(255, 252, 248, 0.45);
  flex-shrink: 0;
}

.wt-hero__counter-current {
  font-size: 1.35rem;
  color: var(--wt-brass-light);
  font-variant-numeric: tabular-nums;
}

.wt-hero__counter-sep {
  width: auto;
  height: auto;
  background: none;
  font-size: 1rem;
  opacity: 0.5;
}

.wt-hero__counter-total {
  font-size: 0.95rem;
}

.wt-hero__dock-dots {
  position: static !important;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  flex: 1;
  width: auto !important;
}

.wt-hero__dock-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  opacity: 1;
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.3);
  border: 1px solid rgba(255, 252, 248, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.wt-hero__dock-dots .swiper-pagination-bullet-active {
  width: 8px;
  background: var(--wt-brass-light);
  border-color: var(--wt-brass-light);
  transform: scale(1.25);
}

.wt-hero__nav-group {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.wt-hero__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 252, 248, 0.25);
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.06);
  color: var(--wt-white);
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.wt-hero__nav-btn:hover {
  background: var(--wt-wine);
  border-color: var(--wt-wine);
}

/* 向下滚动提示 */
.wt-hero__scroll-hint {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: max(88px, calc(env(safe-area-inset-bottom) + 72px));
  left: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
  text-decoration: none;
  color: rgba(255, 252, 248, 0.5);
  transition: color 0.25s ease;
}

.wt-hero__scroll-hint:hover {
  color: var(--wt-brass-light);
}

.wt-hero__scroll-hint-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.wt-hero__scroll-hint-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--wt-brass-light), transparent);
  animation: wt-hero-scroll-pulse 2s ease-in-out infinite;
}

@keyframes wt-hero-scroll-pulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.wt-hero .main-slider-nav,
.wt-hero__dock {
  display: none !important;
}

.wt-home-brand {
  position: relative;
  overflow: hidden;
}

.wt-home-brand__deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  background: radial-gradient(circle, var(--wt-wine) 0%, transparent 70%);
}

.wt-home-brand__deco--left {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -120px;
}

.wt-home-brand__deco--right {
  width: 320px;
  height: 320px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle, var(--wt-brass) 0%, transparent 70%);
}

.wt-home-brand__visual {
  position: relative;
}

.wt-home-brand__seal {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-family: var(--wt-font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--wt-brass-light);
  border: 2px solid rgba(196, 165, 116, 0.55);
  border-radius: 50%;
  background: rgba(74, 18, 25, 0.88);
  box-shadow: 0 8px 32px rgba(74, 18, 25, 0.25);
}

.wt-home-brand__visual-main {
  border-radius: var(--wt-radius-lg);
  overflow: hidden;
  box-shadow: var(--wt-shadow);
  border: 1px solid var(--wt-fog);
}

.wt-home-brand__visual-main img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wt-home-brand__visual-badge {
  position: absolute;
  right: -12px;
  bottom: -12px;
  max-width: 45%;
  padding: 0.5rem;
  background: var(--wt-white);
  border: 3px solid var(--wt-wine);
  border-radius: var(--wt-radius);
  box-shadow: var(--wt-shadow);
}

.wt-home-brand__visual-badge img {
  display: block;
  width: 100%;
}

.wt-home-brand__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin: 1.75rem 0 0;
  padding: 1.25rem 0 0;
  list-style: none;
  border-top: 1px solid var(--wt-fog);
}

.wt-home-brand__stats li {
  flex: 1 1 100px;
}

.wt-home-brand__stats strong {
  display: block;
  font-family: var(--wt-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--wt-wine);
}

.wt-home-brand__stats span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--wt-muted);
}

.wt-home-brand__quote {
  margin: 1.5rem 0 0;
  padding: 1rem 0 0 1.25rem;
  border-left: 3px solid var(--wt-brass);
  font-family: var(--wt-font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.14em;
  color: var(--wt-wine);
}

/* 酱酒工艺带 */
.wt-home-brew {
  position: relative;
  background: linear-gradient(135deg, var(--wt-wine-deep) 0%, #2a0a10 50%, var(--wt-night) 100%);
  border-top: 3px solid var(--wt-brass);
  border-bottom: 3px solid var(--wt-brass);
  overflow: hidden;
}

.wt-home-brew::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(196, 165, 116, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
}

.wt-home-brew__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) 0;
}

.wt-home-brew__lead {
  flex: 0 1 320px;
  color: rgba(255, 252, 248, 0.88);
}

.wt-home-brew__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wt-brass-light);
}

.wt-home-brew__lead p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.wt-home-brew__lead strong {
  color: var(--wt-brass-light);
  font-weight: 600;
}

.wt-home-brew__steps {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 520px;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wt-home-brew__steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 88px;
  text-align: center;
}

.wt-home-brew__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.45rem;
  border: 1px solid rgba(196, 165, 116, 0.35);
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.06);
  color: var(--wt-brass-light);
  font-size: 1rem;
}

.wt-home-brew__steps strong {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--wt-white);
}

.wt-home-brew__steps em {
  margin-top: 0.2rem;
  font-style: normal;
  font-size: 0.68rem;
  color: rgba(255, 252, 248, 0.5);
}

/* 服务区块 */
.wt-home-offer {
  position: relative;
  overflow: hidden;
}

.wt-home-offer__grain,
.wt-home-products__grain,
.wt-home-news__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(166, 137, 83, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, transparent 0%, rgba(107, 29, 40, 0.02) 100%);
  background-size: 28px 28px, 100% 100%;
  opacity: 0.65;
}

.wt-home-offer__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.wt-home-offer__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.35rem 1.5rem;
  background: var(--wt-white);
  border: 1px solid var(--wt-fog);
  border-radius: var(--wt-radius-lg);
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(16, 20, 24, 0.04);
  transition: background 0.3s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.3s ease;
}

.wt-home-offer__item:hover {
  background: linear-gradient(180deg, var(--wt-wine-soft) 0%, var(--wt-white) 100%);
  border-color: rgba(107, 29, 40, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--wt-shadow);
  color: inherit;
}

.wt-home-offer__num {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(166, 137, 83, 0.45);
}

.wt-home-offer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(107, 29, 40, 0.08), rgba(166, 137, 83, 0.12));
  border: 1px solid rgba(107, 29, 40, 0.12);
  color: var(--wt-wine);
  font-size: 1.5rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.wt-home-offer__item:hover .wt-home-offer__icon {
  background: var(--wt-wine);
  border-color: var(--wt-wine);
  color: var(--wt-white);
  transform: scale(1.05);
}

.wt-home-offer__tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2em 0.55em;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--wt-brass);
  border: 1px solid rgba(166, 137, 83, 0.35);
  background: rgba(240, 235, 227, 0.6);
}

.wt-home-offer__item .title {
  margin: 0 0 0.45rem;
  font-family: var(--wt-font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--wt-ink);
}

.wt-home-offer__item .desc p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--wt-muted);
}

.wt-home-offer__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--wt-wine);
}

.wt-home-offer__item:hover .wt-home-offer__more {
  color: var(--wt-wine-deep);
}

/* 酿造车间实景 */
.wt-home-craft {
  background: var(--wt-white);
}

.wt-home-craft .wt-section-head {
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}

.wt-home-craft__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(200px, 240px));
  gap: 1.125rem;
}

.wt-home-craft__item {
  position: relative;
  min-height: 200px;
  border-radius: var(--wt-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(229, 223, 214, 0.9);
  box-shadow: 0 8px 28px rgba(16, 20, 24, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.wt-home-craft__item:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 165, 116, 0.45);
  box-shadow: 0 16px 40px rgba(16, 20, 24, 0.1);
}

.wt-home-craft__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.wt-home-craft__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.wt-home-craft__item:hover img {
  transform: scale(1.06);
}

.wt-home-craft__cap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.5rem, 2.8vw, 2rem);
  background: linear-gradient(
    0deg,
    rgba(16, 20, 24, 0.92) 0%,
    rgba(16, 20, 24, 0.55) 42%,
    rgba(16, 20, 24, 0.08) 72%,
    transparent 100%
  );
  color: var(--wt-white);
  transition: background 0.35s ease;
}

.wt-home-craft__item--wide .wt-home-craft__cap {
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.25rem) clamp(1.75rem, 3.2vw, 2.35rem);
}

.wt-home-craft__item:hover .wt-home-craft__cap {
  background: linear-gradient(
    0deg,
    rgba(74, 18, 25, 0.94) 0%,
    rgba(16, 20, 24, 0.62) 45%,
    rgba(16, 20, 24, 0.12) 75%,
    transparent 100%
  );
}

.wt-home-craft__cap-inner {
  width: 100%;
  max-width: 100%;
  padding-left: 0.85rem;
  border-left: 3px solid var(--wt-brass);
}

.wt-home-craft__item--wide .wt-home-craft__cap-inner {
  max-width: 420px;
  padding-left: 1rem;
}

.wt-home-craft__step {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wt-brass-light);
  border: 1px solid rgba(196, 165, 116, 0.45);
  border-radius: 2px;
  background: rgba(16, 20, 24, 0.35);
}

.wt-home-craft__cap h3 {
  margin: 0 0 0.35rem;
  font-family: var(--wt-font-display);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--wt-white) !important;
  text-shadow: 0 2px 12px rgba(16, 20, 24, 0.35);
}

.wt-home-craft__item--wide .wt-home-craft__cap h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.wt-home-craft__cap p {
  margin: 0;
  font-size: clamp(0.78rem, 1.1vw, 0.86rem);
  line-height: 1.6;
  color: rgba(255, 252, 248, 0.82);
  text-shadow: 0 1px 8px rgba(16, 20, 24, 0.3);
}

.wt-home-craft .text-center.mt-4 {
  margin-top: clamp(2rem, 4vw, 2.75rem) !important;
}

/* 定制 CTA — 清爽版 */
.wt-home-cta {
  position: relative;
  padding: clamp(2.75rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.wt-home-cta--fresh {
  background: linear-gradient(180deg, var(--wt-white) 0%, var(--wt-paper) 100%);
  border-top: 1px solid var(--wt-fog);
  border-bottom: 1px solid var(--wt-fog);
}

.wt-home-cta--fresh::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--wt-wine) 0%, var(--wt-brass) 100%);
}

.wt-home-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--wt-white);
  border: 1px solid rgba(229, 223, 214, 0.85);
  border-radius: var(--wt-radius-lg);
  box-shadow: 0 12px 40px rgba(16, 20, 24, 0.04);
}

.wt-home-cta--fresh .wt-heading {
  color: var(--wt-ink);
}

.wt-home-cta--fresh .wt-lead {
  max-width: 520px;
  color: var(--wt-muted);
}

.wt-home-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.wt-home-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--wt-font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--wt-wine);
  text-decoration: none;
  transition: color 0.2s ease;
}

.wt-home-cta__phone:hover {
  color: var(--wt-wine-deep);
}

.wt-home-cta__phone i {
  color: var(--wt-brass);
}

/* 产品区块 */
.wt-home-products {
  position: relative;
  background: linear-gradient(180deg, var(--wt-white) 0%, var(--wt-paper) 100%);
  overflow: hidden;
}

.wt-home-products__sub {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--wt-brass);
}

.wt-home-products__head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--wt-wine);
}

.wt-home-products__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.wt-home-products__card {
  position: relative;
  background: var(--wt-white);
  border: 1px solid var(--wt-fog);
  border-radius: var(--wt-radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.wt-home-products__card:hover {
  border-color: rgba(107, 29, 40, 0.28);
  box-shadow: 0 20px 48px rgba(16, 20, 24, 0.1);
  transform: translateY(-4px);
}

.wt-home-products__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 0.25em 0.55em;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--wt-white);
  background: var(--wt-wine);
  border-radius: var(--wt-radius);
}

.wt-home-products__card-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1;
  padding: 1.5rem 1.25rem 1rem;
  background:
    radial-gradient(ellipse 70% 45% at 50% 88%, rgba(166, 137, 83, 0.18) 0%, transparent 70%),
    linear-gradient(165deg, #faf7f2 0%, var(--wt-paper) 100%);
  overflow: hidden;
}

.wt-home-products__pedestal {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 55%;
  height: 12%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(16, 20, 24, 0.12) 0%, transparent 70%);
}

.wt-home-products__card-thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.wt-home-products__card:hover .wt-home-products__card-thumb img {
  transform: scale(1.06) translateY(-4px);
}

.wt-home-products__card-body {
  padding: 1.1rem 1.2rem 1.35rem;
  border-top: 3px solid var(--wt-wine);
  background: var(--wt-white);
}

.wt-home-products__card-title {
  display: block;
  font-family: var(--wt-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--wt-ink);
  text-decoration: none;
}

.wt-home-products__card-title:hover { color: var(--wt-wine); }

.wt-home-products__slogan {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--wt-muted);
}

.wt-home-products__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--wt-wine);
  text-decoration: none;
}

.wt-home-products__link:hover { color: var(--wt-wine-deep); }

/* 新闻区块 */
.wt-home-news {
  position: relative;
  overflow: hidden;
}

.wt-home-news__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.wt-home-news__card:first-child {
  grid-column: span 1;
}

.wt-home-news__card:first-child .wt-home-news__card-thumb img {
  aspect-ratio: 16 / 11;
}

.wt-home-news__card {
  display: flex;
  flex-direction: column;
  background: var(--wt-white);
  border: 1px solid var(--wt-fog);
  border-radius: var(--wt-radius-lg);
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wt-home-news__card:hover {
  box-shadow: var(--wt-shadow);
  transform: translateY(-3px);
}

.wt-home-news__card-thumb {
  position: relative;
  display: block;
  overflow: hidden;
}

.wt-home-news__card-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.wt-home-news__card:hover .wt-home-news__card-thumb img {
  transform: scale(1.04);
}

.wt-home-news__card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(74, 18, 25, 0.35) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wt-home-news__card:hover .wt-home-news__card-thumb::after {
  opacity: 1;
}

.wt-home-news__thumb-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3em 0.6em;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--wt-white);
  background: rgba(74, 18, 25, 0.82);
  border-radius: var(--wt-radius);
}

.wt-home-news__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
}

.wt-home-news__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 0 0 0.55rem;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  color: var(--wt-brass);
  letter-spacing: 0.04em;
}

.wt-home-news__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.wt-home-news__card-title {
  margin: 0 0 0.5rem;
  font-family: var(--wt-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

.wt-home-news__card-title a {
  color: var(--wt-ink);
  text-decoration: none;
}

.wt-home-news__card-title a:hover { color: var(--wt-wine); }

.wt-home-news__excerpt {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--wt-muted);
}

.wt-home-news__more {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--wt-wine);
  text-decoration: none;
}

/* 茅台镇文化 — 清爽版 */
.wt-home-heritage--fresh {
  position: relative;
  min-height: 0;
  overflow: visible;
  background: var(--wt-white);
}

.wt-home-heritage--fresh .wt-home-heritage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.wt-home-heritage--fresh .wt-heading {
  color: var(--wt-ink);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  letter-spacing: 0.06em;
}

.wt-home-heritage--fresh .wt-lead {
  max-width: none;
  color: var(--wt-muted);
}

.wt-home-heritage__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wt-home-heritage__figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--wt-radius-lg);
  border: 1px solid var(--wt-fog);
  box-shadow: 0 16px 48px rgba(16, 20, 24, 0.08);
}

.wt-home-heritage__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 20, 24, 0.12) 100%);
  pointer-events: none;
}

.wt-home-heritage__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.wt-home-heritage--fresh .wt-home-heritage__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wt-home-heritage--fresh .wt-home-heritage__pillars li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 0.9rem;
  background: var(--wt-paper);
  border: 1px solid var(--wt-fog);
  border-radius: var(--wt-radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.wt-home-heritage--fresh .wt-home-heritage__pillars li:hover {
  border-color: rgba(107, 29, 40, 0.22);
  box-shadow: 0 8px 24px rgba(16, 20, 24, 0.06);
  transform: translateY(-2px);
}

.wt-home-heritage--fresh .wt-home-heritage__pillar-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wt-white);
  border: 1px solid rgba(107, 29, 40, 0.12);
  color: var(--wt-wine);
  font-size: 0.95rem;
}

.wt-home-heritage__pillar-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.wt-home-heritage--fresh .wt-home-heritage__pillars strong {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--wt-ink);
}

.wt-home-heritage--fresh .wt-home-heritage__pillars .wt-home-heritage__pillar-text > span {
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--wt-muted);
}

/* 旧版深色 heritage 保留兼容（内页若引用） */
.wt-home-heritage:not(.wt-home-heritage--fresh) {
  position: relative;
  min-height: clamp(360px, 50vh, 480px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.wt-home-heritage__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.wt-home-heritage__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(74, 18, 25, 0.88) 0%, rgba(16, 20, 24, 0.72) 48%, rgba(16, 20, 24, 0.85) 100%);
}

.wt-home-heritage__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: radial-gradient(rgba(196, 165, 116, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.wt-home-heritage:not(.wt-home-heritage--fresh) .container {
  position: relative;
  z-index: 3;
}

.wt-home-heritage:not(.wt-home-heritage--fresh) .wt-home-heritage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.wt-home-heritage__eyebrow {
  color: var(--wt-brass-light) !important;
}

.wt-home-heritage__eyebrow::before {
  color: rgba(255, 252, 248, 0.45) !important;
}

.wt-home-heritage:not(.wt-home-heritage--fresh) .wt-heading {
  color: var(--wt-white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.1em;
}

.wt-home-heritage:not(.wt-home-heritage--fresh) .wt-lead {
  max-width: 520px;
  color: rgba(255, 252, 248, 0.82);
}

.wt-home-heritage:not(.wt-home-heritage--fresh) .wt-home-heritage__pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wt-home-heritage:not(.wt-home-heritage--fresh) .wt-home-heritage__pillars li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.15rem 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 252, 248, 0.06);
  border: 1px solid rgba(255, 252, 248, 0.12);
  border-left: 3px solid var(--wt-brass);
  border-radius: var(--wt-radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wt-home-heritage:not(.wt-home-heritage--fresh) .wt-home-heritage__pillar-icon {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(107, 29, 40, 0.45);
  color: var(--wt-brass-light);
  font-size: 1rem;
}

.wt-home-heritage:not(.wt-home-heritage--fresh) .wt-home-heritage__pillars strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--wt-white);
}

.wt-home-heritage:not(.wt-home-heritage--fresh) .wt-home-heritage__pillars li > span:last-child {
  font-size: 0.78rem;
  color: rgba(255, 252, 248, 0.58);
}

@media (max-width: 991px) {
  .wt-hero.intro-slider-wrap {
    --wt-hero-h: clamp(440px, 72vh, 720px);
    --wt-hero-dock-space: 88px;
  }

  .wt-hero .intro-section {
    padding-bottom: calc(var(--wt-hero-dock-space) + 0.5rem) !important;
  }

  .wt-hero__bottom-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .wt-hero__dock-dots {
    order: 3;
    flex: 1 1 100%;
    padding-top: 0.25rem;
  }

  .wt-hero__scroll-hint {
    display: none;
  }

  .wt-home-brew__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .wt-home-brew__steps {
    justify-content: flex-start;
  }

  .wt-home-heritage--fresh .wt-home-heritage__grid,
  .wt-home-heritage:not(.wt-home-heritage--fresh) .wt-home-heritage__grid {
    grid-template-columns: 1fr;
  }

  .wt-home-heritage--fresh .wt-home-heritage__pillars {
    grid-template-columns: 1fr;
  }

  .wt-home-offer__grid,
  .wt-home-products__grid,
  .wt-home-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wt-home-craft__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .wt-home-craft__item--wide {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 240px;
  }

  .wt-home-craft__item {
    min-height: 200px;
  }

  .wt-home-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .wt-home-offer__grid,
  .wt-home-products__grid,
  .wt-home-news__grid {
    grid-template-columns: 1fr;
  }

  .wt-home-craft__grid {
    grid-template-columns: 1fr;
  }

  .wt-home-craft__item--wide {
    grid-column: span 1;
    min-height: 220px;
  }

  .wt-home-brand__visual-badge {
    position: static;
    max-width: 100%;
    margin-top: 1rem;
  }

  .wt-home-brand__seal {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    top: -8px;
    left: -4px;
  }

  .wt-home-brew__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .wt-home-brew__steps li {
    min-width: 0;
  }
}
