/* ============================================================
   事事顺酒 · 品牌官网 V2
   电影感影像叙事 · 中国红 + 鎏金 + 米白 + 墨黑
   ============================================================ */

:root {
  --red: #A6192E;
  --red-dark: #7A0E1E;
  --red-deep: #4A0810;
  --red-bright: #C8102E;
  --gold: #C9A45C;
  --gold-light: #E8D5A8;
  --gold-deep: #A8843E;
  --ink: #17100C;
  --ink-soft: #4A3E36;
  --cream: #F8F3EA;
  --cream-dark: #F0E7D5;
  --blue: #1E3A5F;
  --white: #FFFFFF;
  --serif: "Noto Serif SC", "STSong", "SimSun", serif;
  --sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --shadow-lg: 0 30px 70px rgba(23, 16, 12, 0.22);
  --shadow-md: 0 14px 36px rgba(23, 16, 12, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container { max-width: 1220px; margin: 0 auto; padding: 0 30px; }

.section { padding: 120px 0; }

/* ---------- 通用标题 ---------- */

.section-head { text-align: center; margin-bottom: 70px; }

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 7px;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.8vw, 50px);
  font-weight: 900;
  letter-spacing: 5px;
}

.section-sub { margin-top: 20px; color: var(--ink-soft); font-size: 16px; }

.section-head-dark .section-title, .section-head-dark .section-sub { color: var(--cream); }
.section-head-dark .section-sub { opacity: 0.7; }
.section-head-dark .section-eyebrow { color: var(--gold); }

.gold-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 22px; }
.gold-divider i { width: 76px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.gold-divider i:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.gold-divider span { color: var(--gold); font-size: 14px; }

/* ---------- 按钮 ---------- */

.btn {
  display: inline-block;
  padding: 16px 42px;
  font-size: 15px;
  letter-spacing: 4px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(201, 164, 92, 0.4);
}

.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(201, 164, 92, 0.55); }

.btn-outline { border-color: rgba(248, 243, 234, 0.55); color: var(--cream); }
.btn-outline:hover { background: rgba(248, 243, 234, 0.12); border-color: var(--cream); }

.btn-ghost { border-color: rgba(23, 16, 12, 0.25); color: var(--ink-soft); background: transparent; }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

/* ---------- 滚动显现 ---------- */

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.in { opacity: 1; transform: none; }

/* ---------- 年龄门禁 ---------- */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.age-gate-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(23, 16, 12, 0.82), rgba(74, 8, 16, 0.88)),
    url("../images/gen/hero-cinematic.jpg") center/cover;
  filter: blur(6px);
  transform: scale(1.06);
}

.age-gate-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--gold);
  outline: 6px double rgba(201, 164, 92, 0.35);
  max-width: 470px;
  width: 100%;
  padding: 54px 46px 42px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: gateIn 0.8s var(--ease);
}

@keyframes gateIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.age-gate-seal {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(166, 25, 46, 0.4), inset 0 0 0 3px rgba(232, 213, 168, 0.4);
}

.age-gate-card h2 {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: 10px;
  color: var(--red-dark);
}

.age-gate-sub { font-size: 13px; letter-spacing: 3px; color: var(--gold-deep); margin: 10px 0 26px; }
.age-gate-tip { font-size: 15px; color: var(--ink-soft); margin-bottom: 32px; }
.age-gate-tip strong { color: var(--red); font-size: 21px; }
.age-gate-btns { display: flex; flex-direction: column; gap: 12px; }
.age-gate-note { margin-top: 28px; font-size: 12px; letter-spacing: 2px; color: rgba(74, 62, 54, 0.65); }

/* ---------- 导航 ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: transform 0.45s var(--ease), background 0.45s, padding 0.45s, box-shadow 0.45s;
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(23, 16, 12, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.nav.hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  gap: 16px;
}

/* 官方图形标与字标以留白相连，形成克制、完整的品牌锁定组合。 */
.nav-logo-mark {
  height: 58px;
  display: flex;
  align-items: center;
}

.nav-logo-seal-img {
  height: 58px;
  width: auto;
  display: block;
  flex: none;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 900;
  color: #E4B85A;
  letter-spacing: 7px;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.26);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-logo-text em {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 4px;
  color: #D4A94C;
  width: 100%;
  display: block;
  text-align: justify;
  text-align-last: justify;
}

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

.nav-menu a {
  color: rgba(248, 243, 234, 0.82);
  font-size: 15px;
  letter-spacing: 2.5px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav-menu a:hover { color: var(--gold-light); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 9px 24px !important;
  border-radius: 2px;
  transition: all 0.35s !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: all 0.3s var(--ease); }

/* ---------- 首屏 · 电影感 ---------- */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  animation: kenburns 26s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}

.hero-bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 10, 8, 0.88) 0%, rgba(74, 8, 16, 0.62) 42%, rgba(23, 10, 8, 0.18) 75%, rgba(23, 10, 8, 0.42) 100%),
    linear-gradient(0deg, rgba(23, 16, 12, 0.75) 0%, transparent 32%);
}

.hero-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 150px 32px 110px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text { max-width: 640px; }

.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--gold-light);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-eyebrow::before { content: ""; width: 48px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--serif);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 8px;
  font-size: clamp(48px, 7.2vw, 92px);
  text-shadow: 0 4px 30px rgba(201, 164, 92, 0.35), 0 8px 50px rgba(0, 0, 0, 0.45);
}

.hero-line {
  display: block;
  overflow: hidden;
  background: linear-gradient(115deg, #F5E6B8 0%, #E8D5A8 20%, #D4AF55 45%, #F2E4BC 65%, #C9A45C 85%, #B8923D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-line-gold {
  background: linear-gradient(115deg, #F5E6B8 0%, #E8D5A8 20%, #D4AF55 45%, #F2E4BC 65%, #C9A45C 85%, #B8923D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  margin: 34px 0 46px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(248, 243, 234, 0.88);
  letter-spacing: 1.5px;
  line-height: 2.1;
}

.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-vertical {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 12px;
  color: rgba(232, 213, 168, 0.6);
  z-index: 2;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 2px solid rgba(232, 213, 168, 0.5);
  border-radius: 14px;
  z-index: 2;
}

.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--gold-light);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

/* ---------- 流动标语 ---------- */

.marquee {
  background: linear-gradient(90deg, var(--red-deep), var(--red-dark), var(--red-deep));
  border-top: 1px solid rgba(201, 164, 92, 0.45);
  border-bottom: 1px solid rgba(201, 164, 92, 0.45);
  overflow: hidden;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 6px;
  color: var(--gold-light);
  white-space: nowrap;
}

.marquee-track i { color: var(--gold); font-size: 12px; font-style: normal; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 品牌引言 ---------- */

.intro {
  background: var(--cream);
  padding: 130px 0 110px;
  text-align: center;
}

.intro-eyebrow {
  font-size: 13px;
  letter-spacing: 7px;
  color: var(--gold-deep);
  margin-bottom: 34px;
}

.intro-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(30px, 4.6vw, 54px);
  letter-spacing: 3px;
  line-height: 1.75;
  color: var(--ink);
}

.intro-title em {
  font-style: normal;
  color: var(--red);
  position: relative;
}

.intro-line { display: block; }

.intro-stats {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat { position: relative; padding: 0 12px; }

.stat + .stat::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 14%;
  height: 72%;
  width: 1px;
  background: rgba(201, 164, 92, 0.5);
}

.stat-num, .stat-text {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 900;
  color: var(--red);
  letter-spacing: 2px;
  display: inline-block;
}

.stat-unit {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  margin-left: 3px;
}

.stat p { margin-top: 14px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.8; }

/* ---------- 品牌故事 ---------- */

.story { background: var(--cream); padding-top: 40px; }

.story-lead {
  max-width: 880px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 2.1;
}

.timeline { max-width: 860px; margin: 0 auto; position: relative; padding-left: 36px; }

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--red));
}

.timeline-item { position: relative; padding: 0 0 52px 40px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--red);
  box-shadow: 0 0 0 5px rgba(166, 25, 46, 0.12);
}

.timeline-year {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.timeline-body h3 { font-family: var(--serif); font-size: 20px; letter-spacing: 1px; margin-bottom: 8px; }
.timeline-body p { color: var(--ink-soft); font-size: 15px; }

.story-quote {
  max-width: 820px;
  margin: 90px auto 0;
  text-align: center;
  padding: 60px 30px 50px;
  position: relative;
  border-top: 1px solid rgba(201, 164, 92, 0.55);
}

.story-quote::before {
  content: "「";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 60px;
  color: var(--gold);
  background: var(--cream);
  padding: 0 22px;
  line-height: 1;
}

.story-quote p {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red-dark);
  line-height: 1.9;
}

.story-quote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold-deep);
}

/* ---------- 吉祥文化 · 图腾 ---------- */

.culture {
  background:
    radial-gradient(ellipse 70% 55% at 85% 8%, rgba(166, 25, 46, 0.28), transparent 60%),
    linear-gradient(170deg, #1D130E 0%, var(--ink) 100%);
  color: var(--cream);
  padding: 120px 0;
}

.culture-grid {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.culture-visual { position: relative; }

.culture-img {
  border-radius: 4px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(201, 164, 92, 0.4);
}

.culture-visual-note {
  position: absolute;
  right: -22px;
  bottom: 40px;
  background: var(--red-dark);
  border: 1px solid var(--gold);
  padding: 20px 26px;
  box-shadow: var(--shadow-lg);
}

.culture-visual-note p {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 3px;
  color: var(--gold-light);
}

.culture-visual-note span { font-size: 12px; letter-spacing: 2px; color: rgba(248, 243, 234, 0.7); }

.culture-content .section-eyebrow { color: var(--gold); }

.culture-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 900;
  letter-spacing: 5px;
  line-height: 1.5;
  margin: 14px 0 24px;
}

.culture-desc {
  color: rgba(248, 243, 234, 0.72);
  font-size: 15.5px;
  line-height: 2.1;
  margin-bottom: 44px;
}

.culture-items { display: flex; flex-direction: column; gap: 4px; }

.culture-item {
  display: flex;
  gap: 26px;
  padding: 26px 10px;
  border-top: 1px solid rgba(201, 164, 92, 0.28);
  transition: background 0.4s, padding 0.4s var(--ease);
}

.culture-item:last-child { border-bottom: 1px solid rgba(201, 164, 92, 0.28); }
.culture-item:hover { background: rgba(201, 164, 92, 0.06); padding-left: 22px; }

.culture-item-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.7;
  flex: none;
  padding-top: 2px;
}

.culture-item h3 {
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: 5px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.culture-item p { font-size: 14.5px; color: rgba(248, 243, 234, 0.68); line-height: 1.9; }

/* ---------- 产品中心 ---------- */

.products { background: var(--cream); }

.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }

.product-card {
  background: var(--white);
  border: 1px solid rgba(201, 164, 92, 0.4);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover { transform: translateY(-14px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.product-img {
  position: relative;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 380px;
}

.product-img-red { background: linear-gradient(170deg, #FDF3E8, #F4DFC8 60%, #EFD3B4); }
.product-img-blue { background: linear-gradient(170deg, #EDF1F6, #D9E2EC 60%, #C4D2E0); }
.product-img-gold { background: linear-gradient(170deg, #FBF4E4, #F1E2C0 60%, #E6CF9E); }

.product-img img {
  max-height: 320px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.7s var(--ease);
  filter: drop-shadow(0 18px 24px rgba(23, 16, 12, 0.22));
}

.product-card:hover .product-img img { transform: scale(1.07) translateY(-4px); }

.product-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 12px;
  letter-spacing: 2.5px;
  padding: 7px 15px;
  color: var(--cream);
  background: var(--red);
  border-radius: 2px;
}

.product-img-blue .product-tag { background: var(--blue); }
.product-img-gold .product-tag { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink); }

.product-body { padding: 32px 30px 36px; flex: 1; display: flex; flex-direction: column; }

.product-body h3 {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 2px;
  color: var(--red-dark);
}

.product-spec { font-size: 13px; letter-spacing: 2px; color: var(--gold-deep); margin: 10px 0 14px; }
.product-desc { font-size: 14.5px; color: var(--ink-soft); flex: 1; }

.product-meta {
  list-style: none;
  margin-top: 20px;
  border-top: 1px dashed rgba(201, 164, 92, 0.6);
  padding-top: 15px;
}

.product-meta li {
  font-size: 13px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  line-height: 2;
}

.product-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.custom-banner {
  margin-top: 52px;
  padding: 46px 52px;
  background:
    radial-gradient(ellipse 70% 130% at 100% 0%, rgba(200, 16, 46, 0.4), transparent 60%),
    linear-gradient(120deg, var(--red-dark), var(--red-deep));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  border: 1px solid rgba(201, 164, 92, 0.5);
  box-shadow: var(--shadow-md);
}

.custom-banner h3 {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 4px;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.custom-banner p { font-size: 15px; color: rgba(248, 243, 234, 0.85); }

/* ---------- 匠心酿造 · 全幅影像 ---------- */

.craft { background: var(--ink); padding: 120px 0 0; }

.craft-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 70px;
}

.craft-panel {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.craft-panel-imgwrap { position: absolute; inset: 0; }

.craft-panel-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
  filter: brightness(0.82);
}

.craft-panel:hover .craft-panel-imgwrap img { transform: scale(1.08); filter: brightness(0.95); }

.craft-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 16, 12, 0.15) 30%, rgba(23, 16, 12, 0.9) 92%);
}

.craft-panel-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 36px 42px;
  z-index: 2;
  color: var(--cream);
}

.craft-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.75;
  display: block;
  margin-bottom: 12px;
}

.craft-panel-body h3 {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 5px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.craft-panel-body p {
  font-size: 14px;
  color: rgba(248, 243, 234, 0.78);
  line-height: 1.9;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), opacity 0.6s;
}

.craft-panel:hover .craft-panel-body p { max-height: 130px; opacity: 1; }

/* ---------- 场景体验 ---------- */

.scenes { background: var(--cream); }

.scenes-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.scene-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  min-height: 640px;
}

.scene-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.scene-card:hover img { transform: scale(1.05); }

.scene-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 70px 36px 32px;
  background: linear-gradient(180deg, transparent, rgba(23, 16, 12, 0.9));
  color: var(--cream);
}

.scene-card figcaption h3 {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 4px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.scene-card figcaption p { font-size: 14.5px; color: rgba(248, 243, 234, 0.85); }

.scenes-side { display: flex; flex-direction: column; gap: 28px; }

.scene-text-card {
  flex: 1;
  padding: 34px 32px;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
  transition: transform 0.45s var(--ease);
}

.scene-text-card:hover { transform: translateX(8px); }

.scene-text-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 5px;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.scene-text-card p { font-size: 14.5px; color: rgba(248, 243, 234, 0.75); }

.scene-text-red { background: linear-gradient(135deg, var(--red), var(--red-dark)); border-left-color: var(--gold-light); }

.scene-text-gold { background: linear-gradient(135deg, #3A2C14, #241A0C); border-left-color: var(--gold); }

/* ---------- 品牌动态 ---------- */

.section-cream { background: var(--cream-dark); }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.news-card {
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  border: 1px solid rgba(201, 164, 92, 0.3);
}

.news-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }

.news-img { height: 220px; overflow: hidden; }

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.news-card:hover .news-img img { transform: scale(1.08); }

.news-body { padding: 28px 28px 34px; }
.news-body time { font-size: 12px; letter-spacing: 3px; color: var(--gold-deep); }

.news-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 1px;
  margin: 12px 0 12px;
  color: var(--red-dark);
}

.news-body p { font-size: 14px; color: var(--ink-soft); }

/* ---------- 招商合作 ---------- */

.partner { background: var(--cream); }

.partner-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 42px; align-items: start; }

.partner-channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.channel-item {
  background: var(--white);
  border: 1px solid rgba(201, 164, 92, 0.4);
  padding: 28px 26px;
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 20px rgba(23, 16, 12, 0.06);
}

.channel-item:hover { border-color: var(--red); transform: translateY(-6px); box-shadow: var(--shadow-md); }

.channel-item strong {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--red-dark);
  display: block;
  margin-bottom: 8px;
}

.channel-item span { font-size: 13px; color: var(--ink-soft); letter-spacing: 1px; }

.partner-card {
  background:
    radial-gradient(ellipse 90% 80% at 100% 0%, rgba(201, 164, 92, 0.16), transparent 60%),
    var(--ink);
  color: var(--cream);
  padding: 48px 44px;
  border: 1px solid rgba(201, 164, 92, 0.5);
  box-shadow: var(--shadow-lg);
}

.partner-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 164, 92, 0.4);
}

.partner-card ul { list-style: none; }

.partner-card li {
  display: flex;
  gap: 18px;
  font-size: 14.5px;
  padding: 11px 0;
  color: rgba(248, 243, 234, 0.85);
  line-height: 1.7;
}

.partner-card li span {
  flex: none;
  width: 46px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  padding-top: 2px;
}

.partner-note {
  margin-top: 24px;
  font-size: 12.5px;
  color: rgba(248, 243, 234, 0.55);
  border-top: 1px dashed rgba(201, 164, 92, 0.4);
  padding-top: 18px;
}

/* ---------- 页脚 ---------- */

.footer {
  background: #100B08;
  color: rgba(248, 243, 234, 0.7);
  padding: 76px 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 56px;
}

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

.footer-seal-img {
  height: 80px;
  width: auto;
  display: block;
  flex: none;
}

.footer-logo-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 4px;
}

.footer-brand p { font-size: 14px; line-height: 2; }

.footer-col h4 {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a { display: block; font-size: 14px; padding: 5px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col p { font-size: 14px; line-height: 2; }

.footer-bottom {
  border-top: 1px solid rgba(201, 164, 92, 0.2);
  padding: 24px 0;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 1px;
  color: rgba(248, 243, 234, 0.45);
}

/* ---------- 企业精神 ---------- */

.story-motto {
  margin: 80px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--red-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.story-motto i { color: var(--gold); font-style: normal; font-size: 0.7em; }

/* ---------- 品牌荣誉 ---------- */

.honors {
  background:
    radial-gradient(ellipse 60% 70% at 12% 30%, rgba(166, 25, 46, 0.32), transparent 62%),
    linear-gradient(165deg, var(--red-deep) 0%, #2E060C 100%);
  color: var(--cream);
  padding: 120px 0;
}

.honors-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: center;
}

.honors-visual { position: relative; }

.honors-img {
  border-radius: 4px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(201, 164, 92, 0.4);
}

.honors-visual-note {
  position: absolute;
  left: -22px;
  bottom: 44px;
  background: rgba(23, 16, 12, 0.92);
  border: 1px solid var(--gold);
  padding: 20px 26px;
  box-shadow: var(--shadow-lg);
}

.honors-visual-note p {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 3px;
  color: var(--gold-light);
}

.honors-visual-note span { font-size: 12px; letter-spacing: 2px; color: rgba(248, 243, 234, 0.7); }

.honors-content .section-eyebrow { color: var(--gold); }

.honors-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.5;
  margin: 14px 0 20px;
}

.honors-desc {
  color: rgba(248, 243, 234, 0.72);
  font-size: 15.5px;
  line-height: 2.1;
  margin-bottom: 40px;
}

.honors-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 28px; }

.honor-item {
  display: flex;
  gap: 18px;
  padding: 18px 12px;
  border-top: 1px solid rgba(201, 164, 92, 0.26);
  transition: background 0.4s, padding 0.4s var(--ease);
}

.honor-item:hover { background: rgba(201, 164, 92, 0.07); padding-left: 22px; }

.honor-year {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  flex: none;
  width: 64px;
  padding-top: 2px;
  letter-spacing: 1px;
}

.honor-item h3 {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.honor-item p { font-size: 13px; color: rgba(248, 243, 234, 0.62); line-height: 1.7; }

/* ---------- 匠心 · 大师 ---------- */

.craft-master {
  background: linear-gradient(180deg, var(--ink) 0%, #201510 100%);
  padding: 110px 0 120px;
  color: var(--cream);
}

.craft-master-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 76px;
  align-items: center;
}

.craft-master-visual img {
  border-radius: 4px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(201, 164, 92, 0.35);
}

.craft-master-content .section-eyebrow { color: var(--gold); }

.craft-master-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 900;
  letter-spacing: 5px;
  line-height: 1.5;
  margin: 14px 0 20px;
}

.craft-master-desc {
  color: rgba(248, 243, 234, 0.72);
  font-size: 15.5px;
  line-height: 2.1;
  margin-bottom: 42px;
}

.craft-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 20px;
}

.craft-stat strong {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  display: block;
}

.craft-stat strong em {
  font-style: normal;
  font-size: 0.55em;
  margin-left: 2px;
  color: var(--gold-light);
}

.craft-stat span {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  color: rgba(248, 243, 234, 0.6);
}

/* ---------- 产品图背景补充 ---------- */

.product-img-champagne { background: linear-gradient(170deg, #FBF3DF, #F3E3C2 60%, #E9D1A4); }


/* ---------- 响应式 ---------- */

@media (max-width: 1024px) {
  .intro-stats { grid-template-columns: repeat(2, 1fr); gap: 44px 20px; }
  .stat + .stat::before { display: none; }
  .products-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-grid, .honors-grid, .craft-master-grid { grid-template-columns: 1fr; gap: 60px; }
  .culture-visual { max-width: 520px; margin: 0 auto; }
  .culture-visual-note { right: 10px; }
  .honors-visual { max-width: 480px; margin: 0 auto; }
  .honors-visual-note { left: 10px; }
  .craft-panels { grid-template-columns: 1fr; }
  .craft-panel { height: 420px; }
  .craft-panel-body p { max-height: 130px; opacity: 1; }
  .partner-grid { grid-template-columns: 1fr; }
  .hero-vertical { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav { padding: 14px 0; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(330px, 86vw);
    height: 100vh;
    background: rgba(16, 11, 8, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 40px 40px;
    gap: 26px;
    transition: right 0.45s var(--ease);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 18px; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero-bg-img { object-position: 62% center; }
  .hero-inner { padding-top: 130px; }
  .hero-title { letter-spacing: 5px; }
  .hero-desc { font-size: 15.5px; }
  .intro { padding: 90px 0 70px; }
  .products-grid, .news-grid, .honors-list { grid-template-columns: 1fr; }
  .craft-stats { grid-template-columns: repeat(2, 1fr); }
  .scenes-grid { grid-template-columns: 1fr; }
  .scene-card { min-height: 380px; }
  .partner-channels { grid-template-columns: 1fr; }
  .custom-banner { padding: 36px 28px; text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline { padding-left: 28px; }
  .timeline-item { padding-left: 28px; }
  .timeline-item::before { left: -28px; }
  .culture-item-num { font-size: 24px; }
}

@media (max-width: 480px) {
  .intro-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .age-gate-card { padding: 42px 28px 34px; }
  .marquee-track span { font-size: 16px; }
}

/* ============================================================
   V2 版块：老子临水、四大旗舰、顺意时刻
   从 shishishun365 设计系统移植，保持深酒红/漆黑/古金基调
   ============================================================ */

.v2-section-en { display: none; }

.v2-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
}

/* ---------- 顺文化 · 老子临水融合画面 ---------- */

.v2-culture-editorial {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid rgba(201, 164, 92, .24);
  background: #140607;
  isolation: isolate;
}

.v2-culture-editorial::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 4, 6, .97) 0%, rgba(28, 8, 10, .91) 28%, rgba(21, 7, 8, .48) 48%, rgba(10, 5, 4, .08) 70%),
    linear-gradient(180deg, rgba(9, 3, 4, .18), transparent 48%, rgba(9, 3, 4, .48));
  pointer-events: none;
}

.v2-manifesto {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1220px, calc(100vw - 80px));
  min-height: 760px;
  margin: 0 auto;
  padding: 92px 0 76px;
}

.v2-manifesto::after {
  content: "顺";
  position: absolute;
  right: -10px;
  bottom: -54px;
  color: rgba(201, 164, 92, .045);
  font: 900 220px/1 var(--serif);
}

.v2-manifesto h2 {
  margin: 0 0 38px;
  color: var(--gold-light);
  font: 700 clamp(31px, 3.2vw, 46px)/1.52 var(--serif);
  letter-spacing: .035em;
}

.v2-manifesto h2 span { display: block; }

.v2-manifesto h2 span:first-child { margin-bottom: 6px; font-size: 1.42em; line-height: 1.2; }

.v2-manifesto > p:not(.v2-section-en) {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 0 0 25px;
  color: rgba(248, 243, 234, .69);
  font: 400 14px/2.08 var(--serif);
}

.v2-culture-river {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #0f0d0c;
}

.v2-culture-river::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 6, 7, .22), transparent 34%, transparent 76%, rgba(10, 5, 4, .18)),
    linear-gradient(180deg, rgba(10, 5, 4, .12), transparent 48%, rgba(10, 5, 4, .38));
  box-shadow: inset 0 0 90px rgba(10, 4, 4, .28);
  pointer-events: none;
}

.v2-culture-river img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(.7) sepia(.08) contrast(1.03) brightness(.87);
}

.v2-culture-river figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 42px 34px auto;
  padding-left: 48px;
  color: rgba(232, 213, 152, .72);
  font: 500 12px/1.6 var(--serif);
  letter-spacing: .32em;
}

.v2-culture-river figcaption::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 1px;
  background: rgba(201, 164, 92, .52);
}

/* ---------- 四大旗舰系列 ---------- */

.v2-flagships {
  position: relative;
  overflow: hidden;
  padding: 76px max(22px, calc((100vw - 1320px) / 2)) 56px;
  background:
    radial-gradient(ellipse at 50% 72%, rgba(89, 37, 25, .22), transparent 50%),
    linear-gradient(180deg, #100506, #080303 80%);
}

.v2-flagships::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 92, .025) 50%, transparent);
  pointer-events: none;
}

.v2-section-heading {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100vw - 80px));
  margin: 0 auto 48px;
  text-align: center;
}

.v2-section-heading h2 {
  margin: 0 0 13px;
  color: var(--gold-light);
  font: 700 clamp(34px, 4vw, 54px)/1.35 var(--serif);
  letter-spacing: .12em;
}

.v2-product-exhibits {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  border-bottom: 1px solid rgba(201, 164, 92, .38);
}

.v2-product-exhibits::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54px;
  border-top: 1px solid rgba(201, 164, 92, .2);
  background: linear-gradient(180deg, rgba(60, 22, 18, .72), rgba(17, 6, 6, .94));
  box-shadow: 0 -18px 34px rgba(0, 0, 0, .36), inset 0 1px rgba(232, 207, 152, .07);
}

.v2-product-exhibit {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 14px 26px;
  border: 0;
  border-right: 1px solid rgba(201, 164, 92, .24);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  text-align: center;
  transition: transform .34s var(--ease), color .3s;
}

.v2-product-exhibit:first-child { border-left: 1px solid rgba(201, 164, 92, .24); }

.v2-product-exhibit:hover,
.v2-product-exhibit.is-active {
  z-index: 1;
  transform: translateY(-5px);
}

.v2-product-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: clamp(310px, 36vw, 470px);
  margin: 0 auto 18px;
  isolation: isolate;
}

.v2-product-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 10px;
  width: min(86%, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 88, 44, .2), transparent 68%);
}

.v2-product-art img {
  width: auto;
  height: 92%;
  max-width: 94%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(.74) brightness(.86) contrast(1.06) drop-shadow(0 22px 18px rgba(0, 0, 0, .46));
  transition: transform .65s var(--ease), filter .35s;
}

.v2-product-exhibit[data-product="china-red"] .v2-product-art img { height: 89%; }
.v2-product-exhibit[data-product="family"] .v2-product-art img { height: 94%; }

.v2-product-exhibit:hover .v2-product-art img,
.v2-product-exhibit.is-active .v2-product-art img {
  transform: translateY(-5px) scale(1.018);
  filter: saturate(.82) brightness(.92) contrast(1.05) drop-shadow(0 24px 20px rgba(0, 0, 0, .5));
}

.v2-product-index { display: none; }

.v2-product-exhibit strong {
  display: block;
  color: var(--cream);
  font: 600 clamp(16px, 1.6vw, 22px)/1.45 var(--serif);
  letter-spacing: .06em;
}

.v2-product-exhibit em {
  display: block;
  margin-top: 5px;
  color: rgba(232, 207, 152, .78);
  font: 400 13px/1.5 var(--serif);
  letter-spacing: .15em;
}

.v2-product-detail {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 48px));
  margin: 28px auto 0;
  padding: 18px 0;
  display: grid;
  grid-template-columns: .75fr 1.35fr auto;
  gap: 36px;
  align-items: center;
  border-bottom: 1px solid rgba(201, 164, 92, .24);
}

.v2-product-detail .v2-eyebrow { margin-bottom: 3px; }

.v2-product-detail h3 {
  margin: 0;
  color: var(--gold-light);
  font: 600 20px/1.5 var(--serif);
}

.v2-product-detail > p {
  margin: 0;
  color: rgba(248, 243, 234, .62);
  font-family: var(--serif);
  font-size: 13px;
}

.v2-product-detail .v2-product-spec {
  color: var(--gold);
  font: 400 11px/1.8 var(--sans);
  white-space: nowrap;
}

.v2-product-disclaimer {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  text-align: center;
  color: rgba(248, 243, 234, .28);
  font-size: 10px;
}

/* ---------- 顺意时刻 ---------- */

.v2-moments {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 730px;
  background: #180809;
}

.v2-moments-photo {
  min-height: 620px;
  overflow: hidden;
}

.v2-moments-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) brightness(.82) sepia(.06);
}

.v2-moments-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px max(42px, calc((100vw - 1280px) / 2)) 76px 62px;
}

.v2-moments-copy h2 {
  margin: 0 0 34px;
  color: var(--gold-light);
  font: 700 clamp(32px, 3.3vw, 46px)/1.55 var(--serif);
  letter-spacing: .04em;
}

.v2-moment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(201, 164, 92, .24);
}

.v2-moment-list article {
  padding: 20px 20px 18px 0;
  border-bottom: 1px solid rgba(201, 164, 92, .24);
}

.v2-moment-list article:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid rgba(201, 164, 92, .24);
}

.v2-moment-list span {
  color: var(--gold);
  font-size: 10px;
}

.v2-moment-list h3 {
  margin: 6px 0 4px;
  color: var(--cream);
  font: 600 17px/1.5 var(--serif);
  letter-spacing: .08em;
}

.v2-moment-list p {
  margin: 0;
  color: rgba(248, 243, 234, .54);
  font-size: 12px;
}

/* ---------- V2 响应式 ---------- */

@media (max-width: 1080px) {
  .v2-manifesto { padding-inline: 34px; }
  .v2-culture-river img { object-position: 61% center; }
  .v2-moments-copy { padding-inline: 44px; }
}

@media (max-width: 820px) {
  .v2-culture-editorial,
  .v2-manifesto { min-height: 700px; }
  .v2-culture-editorial::after {
    background:
      linear-gradient(90deg, rgba(12, 4, 5, .91), rgba(18, 6, 7, .54) 58%, rgba(10, 4, 4, .12)),
      linear-gradient(180deg, rgba(9, 3, 4, .22), transparent 45%, rgba(9, 3, 4, .7));
  }
  .v2-manifesto { width: min(1220px, calc(100vw - 48px)); padding: 82px 0 64px; justify-content: flex-start; }
  .v2-manifesto > p:not(.v2-section-en) { max-width: 310px; }
  .v2-culture-river img { min-height: 700px; object-position: 63% center; }
  .v2-product-exhibits { grid-template-columns: repeat(2, minmax(0, 1fr)); border-bottom: 0; }
  .v2-product-exhibit:nth-child(2) { border-right: 1px solid rgba(201, 164, 92, .24); }
  .v2-product-exhibit:nth-child(n+3) { border-top: 1px solid rgba(201, 164, 92, .24); }
  .v2-product-art { height: clamp(300px, 58vw, 420px); }
  .v2-product-detail { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .v2-product-detail .v2-product-spec { white-space: normal; }
  .v2-moments { grid-template-columns: 1fr; }
  .v2-moments-photo { min-height: 500px; }
  .v2-moments-copy { padding: 70px 28px; }
}

@media (max-width: 520px) {
  .v2-manifesto h2 { font-size: 31px; }
  .v2-culture-editorial,
  .v2-manifesto { min-height: 720px; }
  .v2-manifesto { padding-top: 92px; }
  .v2-manifesto > p:not(.v2-section-en) { max-width: 270px; font-size: 13px; }
  .v2-culture-river img { min-height: 720px; object-position: 68% center; }
  .v2-culture-river figcaption { right: 24px; bottom: 22px; }
  .v2-flagships { padding-inline: 14px; }
  .v2-section-heading h2 { font-size: 30px; letter-spacing: .07em; }
  .v2-product-exhibits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-product-exhibit,
  .v2-product-exhibit:nth-child(2) { padding-inline: 6px; }
  .v2-product-art { height: 300px; }
  .v2-product-exhibit strong { font-size: 15px; }
  .v2-product-exhibit em { font-size: 11px; }
  .v2-moments-photo { min-height: 380px; }
  .v2-moments-copy h2 { font-size: 30px; letter-spacing: .02em; }
  .v2-moment-list { grid-template-columns: 1fr; }
  .v2-moment-list article,
  .v2-moment-list article:nth-child(even) { padding: 19px 0; border-left: 0; }
}
