@charset "UTF-8";

/* ── 页面英雄区（结构 — 图像/颜色通过页面额外样式设置） ── */
.pageHero {
  position: relative;
  height: 65vh;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pageHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pageHero::after {
  content: "";
  position: absolute;
  inset: 0;
}
.pageHero_content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
}
.pageHero_en {
  font-family: var(--font-en-serif);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.pageHero_title {
  font-family: var(--font-mincho);
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.15em;
  line-height: 1.3;
  margin-bottom: 20px;
}
.pageHero_subtitle {
  font-family: var(--font-gothic);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.pageHero_rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-gold);
  margin: 24px auto 0;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .pageHero { height: 44vh; min-height: 360px; }
  .pageHero_title { font-size: 34px; letter-spacing: 0.10em; }
}

/* ── 面包屑导航 ─────────────────────────────────────── */
.breadcrumb {
  padding: 18px 0;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-beige);
}
.breadcrumb_inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--color-text-gray);
}
.breadcrumb_link {
  color: var(--color-green);
  text-decoration: none;
  transition: opacity 0.2s;
}
.breadcrumb_link:hover { opacity: 0.7; }
.breadcrumb_sep {
  color: var(--color-light-gray);
  font-size: 10px;
}

/* ── 高级版块间距 ────────────────────────── */
.premiumSection { padding: 120px 0; }
@media screen and (max-width: 768px) { .premiumSection { padding: 80px 0; } }

/* ── 返回首页链接 ──────────────────────────────── */
.backHomeSection { padding: 80px 0; text-align: center; background: var(--color-off-white); }
.backHomeLink {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-family: var(--font-en-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-deep-green);
  transition: color 0.4s var(--ease-premium);
}
.backHomeLink::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-premium);
}
.backHomeLink:hover { color: var(--color-green); }
.backHomeLink:hover::before { width: 60px; }