/* ===== 首页专属样式 ===== */
.page-home {
  --home-spring: #E8A0A0;
  --home-summer: #67B29A;
  --home-autumn: #D9924A;
  --home-winter: #A9B8C9;
  --home-card-border: rgba(212, 175, 55, 0.24);
  --home-panel-bg: rgba(20, 92, 67, 0.5);
  --home-gold-soft: rgba(212, 175, 55, 0.12);
}

/* ———— Hero 进入四季官方入口 ———— */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 88px;
  background:
    radial-gradient(ellipse at 84% 18%, rgba(42, 122, 94, 0.5) 0%, transparent 58%),
    linear-gradient(132deg, #072B20 0%, var(--deep-green) 48%, #11563D 100%);
}
.page-home .home-hero::before {
  content: "季";
  position: absolute;
  right: -0.08em;
  bottom: -0.3em;
  font-family: var(--font-serif);
  font-size: clamp(220px, 36vw, 470px);
  line-height: 1;
  color: rgba(247, 242, 233, 0.04);
  pointer-events: none;
  z-index: 0;
}
.page-home .home-hero__arc {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 90px;
  z-index: 1;
}
.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 44px;
  align-items: center;
}
.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.page-home .home-hero__eyebrow {
  margin: 0;
  color: var(--light-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}
.page-home .home-hero__title {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: clamp(40px, 8vw, 86px);
  line-height: 1.16;
  letter-spacing: 0.02em;
  color: var(--ivory);
}
.page-home .home-hero__title em {
  display: inline-block;
  font-style: normal;
  color: var(--gold);
  border-bottom: 2px solid rgba(212, 175, 55, 0.42);
  padding-bottom: 2px;
}
.page-home .home-hero__lead {
  max-width: 34em;
  margin: 0 0 32px;
  color: var(--warm-gray);
  font-size: 16px;
  line-height: 1.8;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.page-home .home-hero__stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}
.page-home .home-hero__stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}
.page-home .home-hero__stat-num {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.page-home .home-hero__stat-num small {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--light-gold);
  margin-left: 3px;
}
.page-home .home-hero__stat-label {
  color: var(--warm-gray);
  font-size: 14px;
}
.page-home .home-hero__visual {
  position: relative;
}
.page-home .home-hero__figure {
  margin: 0;
  position: relative;
}
.page-home .home-hero__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid var(--home-card-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}
.page-home .home-hero__caption {
  margin-top: 14px;
  text-align: right;
  color: var(--light-gold);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ———— 本季更新公告 ———— */
.page-home .home-update {
  background: linear-gradient(180deg, #0A3226 0%, #0D4131 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}
.page-home .home-update__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.page-home .home-update__copy {
  padding: 0;
}
.page-home .home-update__list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}
.page-home .home-update__list li {
  position: relative;
  padding: 11px 0 11px 28px;
  color: var(--warm-gray);
  font-size: 15px;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.18);
}
.page-home .home-update__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}
.page-home .home-update__more {
  margin: 22px 0 0;
}
.page-home .home-update__more a {
  color: var(--light-gold);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 210, 118, 0.4);
  padding-bottom: 2px;
  transition: border-color var(--transition-fast);
}
.page-home .home-update__more a:hover {
  border-color: var(--light-gold);
}
.page-home .home-update__figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--home-card-border);
  background: var(--forest-green);
}
.page-home .home-update__figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* ———— 本地站点查询 ———— */
.page-home .home-local {
  background: var(--deep-green);
}
.page-home .home-local__heading {
  max-width: 880px;
}
.page-home .home-local__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-top: 8px;
}
.page-home .home-local__card {
  background: linear-gradient(145deg, rgba(20, 92, 67, 0.72) 0%, rgba(11, 61, 46, 0.92) 100%);
  border: 1px solid var(--moss-green);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}
.page-home .home-local__card-title {
  margin: 0 0 18px;
  color: var(--light-gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 14px;
}
.page-home .home-local__cities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.page-home .home-local__cities li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ivory);
  font-size: 15px;
  cursor: default;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.page-home .home-local__cities li:hover {
  background: var(--home-gold-soft);
  color: var(--light-gold);
}
.page-home .home-local__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  opacity: 0.8;
}
.page-home .home-local__name {
  color: inherit;
}
.page-home .home-local__figure {
  margin: 0;
}
.page-home .home-local__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--moss-green);
}
.page-home .home-local__figure figcaption {
  margin-top: 12px;
  text-align: right;
  color: var(--warm-gray);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.page-home .home-local__machines {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}
.page-home .home-local__machines > span:first-child {
  color: var(--warm-gray);
  font-size: 14px;
}

/* ———— 新手局费用速览 ———— */
.page-home .home-fee {
  background: var(--ivory);
}
.page-home .home-fee .section-eyebrow,
.page-home .home-fee .section-title,
.page-home .home-fee .section-lead {
  color: var(--deep-green);
}
.page-home .home-fee .section-title em {
  color: var(--forest-green);
}
.page-home .home-fee__body {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-top: 8px;
}
.page-home .home-fee__board {
  background: #FFFDF6;
  border: 1px solid rgba(11, 61, 46, 0.14);
  border-radius: 18px;
  padding: 8px 0;
  box-shadow: 0 12px 30px rgba(10, 11, 10, 0.07);
}
.page-home .home-fee__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
}
.page-home .home-fee__row + .home-fee__row {
  border-top: 1px dashed rgba(11, 61, 46, 0.12);
}
.page-home .home-fee__row--featured {
  background: linear-gradient(90deg, var(--home-gold-soft) 0%, rgba(212, 175, 55, 0.03) 100%);
}
.page-home .home-fee__type {
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}
.page-home .home-fee__dashes {
  flex: 1;
  min-width: 24px;
  height: 1px;
  border-top: 2px dotted rgba(212, 175, 55, 0.6);
}
.page-home .home-fee__price {
  color: var(--deep-green);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  white-space: nowrap;
}
.page-home .home-fee__price small {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(11, 61, 46, 0.7);
  margin-left: 3px;
}
.page-home .home-fee__figure {
  margin: 0;
}
.page-home .home-fee__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(11, 61, 46, 0.14);
}
.page-home .home-fee__note {
  margin: 20px 0 0;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
  color: rgba(10, 11, 10, 0.62);
  font-size: 14px;
}
.page-home .home-fee__note a {
  color: var(--forest-green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 92, 67, 0.4);
}

/* ———— 四季主题展示 ———— */
.page-home .home-season {
  background: linear-gradient(180deg, #083224 0%, var(--deep-green) 100%);
}
.page-home .home-season__panels {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
.page-home .home-season__panel {
  background: var(--home-panel-bg);
  border: 1px solid rgba(247, 242, 233, 0.12);
  border-radius: 16px;
  transition: border-color var(--transition), background var(--transition);
}
.page-home .home-season__panel[open] {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(20, 92, 67, 0.75);
}
.page-home .home-season__panel summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  list-style: none;
  user-select: none;
}
.page-home .home-season__panel summary::-webkit-details-marker {
  display: none;
}
.page-home .home-season__panel summary::after {
  content: "+";
  margin-left: auto;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  transition: transform var(--transition);
}
.page-home .home-season__panel[open] summary::after {
  transform: rotate(45deg);
}
.page-home .home-season__content {
  padding: 0 20px 20px;
  color: var(--warm-gray);
  font-size: 14px;
  line-height: 1.75;
}
.page-home .home-season__panel .season-dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.page-home .home-season__more {
  margin: 32px 0 0;
  text-align: center;
}
.page-home .home-season__more a {
  display: inline-block;
  color: var(--light-gold);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 210, 118, 0.4);
  padding-bottom: 3px;
  transition: border-color var(--transition-fast);
}
.page-home .home-season__more a:hover {
  border-color: var(--light-gold);
}

/* ———— 平板及以上 ———— */
@media (min-width: 760px) {
  .page-home .home-hero__inner {
    grid-template-columns: 1.05fr 0.85fr;
    gap: 32px;
  }
  .page-home .home-hero__title {
    font-size: clamp(46px, 7vw, 78px);
  }
  .page-home .home-update__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 56px;
  }
  .page-home .home-local__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }
  .page-home .home-fee__body {
    grid-template-columns: 1fr 0.95fr;
    gap: 56px;
  }
  .page-home .home-season__panels {
    grid-template-columns: 1fr 1fr;
  }
}

/* ———— 桌面 ———— */
@media (min-width: 1080px) {
  .page-home .home-hero {
    padding: 88px 0 112px;
  }
  .page-home .home-hero__title {
    font-size: clamp(64px, 8vw, 96px);
  }
  .page-home .home-update {
    border-top-width: 2px;
  }
  .page-home .home-local__grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .page-home .home-fee__body {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .page-home .home-season__panels {
    grid-template-columns: repeat(4, 1fr);
  }
}
