.page-home {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
}

.page-home img {
  max-width: 100%;
  height: auto;
}

/* ---------- 面包屑 ---------- */
.page-home .home-crumb {
  padding-top: 20px;
}
.page-home .home-crumb .breadcrumb {
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--tea);
}

/* ---------- 通用纵向节奏 ---------- */
.page-home .band {
  padding: clamp(56px, 8vw, 104px) 0;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 52px) 0 clamp(64px, 9vw, 116px);
}

.page-home .hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.page-home .hero__kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .16em;
  color: var(--tea);
}

.page-home .hero__title {
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(34px, 7vw, 84px);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
}

.page-home .hero__lead {
  margin: 24px 0 0;
  max-width: 46ch;
  font-size: clamp(15px, 1.1vw, 17.5px);
  line-height: 1.9;
  color: var(--tea);
}

.page-home .hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .hero__btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  text-decoration: none;
  background: var(--clay);
  color: var(--paper);
  border: 1px solid var(--clay);
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease);
}

.page-home .hero__btn:hover {
  transform: translateX(4px);
  background: var(--clay-soft);
  border-color: var(--clay-soft);
}

.page-home .hero__btn--quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}

.page-home .hero__btn--quiet:hover {
  background: transparent;
  color: var(--clay);
  border-color: var(--clay);
}

.page-home .hero__visual {
  position: relative;
}

.page-home .hero__visual::before {
  content: "";
  position: absolute;
  top: 14%;
  right: 0;
  bottom: -6%;
  left: 16%;
  z-index: 0;
  background: linear-gradient(140deg, var(--clay), var(--clay-soft));
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}

.page-home .hero__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  box-shadow: 0 24px 56px rgba(18, 16, 14, .2);
}

.page-home .hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- 数字带 ---------- */
.page-home .scale {
  background: var(--sand);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.page-home .scale__title {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.18;
  letter-spacing: -.01em;
  max-width: 20ch;
}

.page-home .scale__note {
  margin: 18px 0 0;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.85;
  color: var(--tea);
}

.page-home .scale__list {
  list-style: none;
  margin: clamp(34px, 4vw, 52px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule-strong);
}

.page-home .scale__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}

.page-home .scale__num {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(46px, 6vw, 76px);
  line-height: .92;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
}

.page-home .scale__label {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
  color: var(--ink);
}

.page-home .scale__label em {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 13.5px;
  color: var(--tea);
}

/* ---------- 合作身份 ---------- */
.page-home .identity__head {
  max-width: 62ch;
}

.page-home .identity__title {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.18;
  letter-spacing: -.01em;
}

.page-home .identity__note {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--tea);
}

.page-home .identity__list {
  list-style: none;
  margin: clamp(36px, 4.5vw, 60px) 0 0;
  padding: 0;
  border-top: 1px solid var(--rule-strong);
}

.page-home .identity__row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 4px 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  transition: transform .35s var(--ease);
}

.page-home .identity__row:hover {
  transform: translateX(6px);
}

.page-home .identity__code {
  grid-column: 1;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  color: var(--clay);
  transition: color .3s var(--ease);
}

.page-home .identity__row:hover .identity__code {
  color: var(--gold);
}

.page-home .identity__body {
  grid-column: 2;
  min-width: 0;
}

.page-home .identity__name {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink);
}

.page-home .identity__who {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--tea);
}

.page-home .identity__gain {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
}

.page-home .identity__link {
  grid-column: 2;
  justify-self: start;
  margin-top: 14px;
  font-size: 14px;
  text-decoration: none;
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.page-home .identity__link:hover {
  color: var(--tea);
  border-color: var(--tea);
}

/* ---------- 四条索引带 ---------- */
.page-home .index-section {
  background: var(--paper);
}

.page-home .index-section__title {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.18;
  letter-spacing: -.01em;
}

.page-home .bands-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: clamp(32px, 4vw, 52px);
}

.page-home .bands-media {
  margin: 0;
}

.page-home .bands-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .bands {
  border-top: 1px solid var(--rule-strong);
}

.page-home .bandrow {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 4px 16px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  transition: transform .35s var(--ease);
}

.page-home .bandrow:hover {
  transform: translateX(6px);
}

.page-home .bandrow__num {
  grid-column: 1;
  padding-top: 5px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--clay);
}

.page-home .bandrow__text {
  grid-column: 2;
  min-width: 0;
}

.page-home .bandrow__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 24px);
  color: var(--ink);
}

.page-home .bandrow__desc {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--tea);
}

.page-home .bandrow__cta {
  grid-column: 2;
  justify-self: start;
  margin-top: 12px;
  font-size: 14px;
  text-decoration: none;
  color: var(--clay);
  border-bottom: 1px solid var(--clay-ghost);
  padding-bottom: 2px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}

.page-home .bandrow__cta:hover {
  color: var(--tea);
  border-color: var(--tea);
}

/* ---------- 交付方式 ---------- */
.page-home .delivery {
  background: var(--sand);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.page-home .delivery__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.page-home .delivery__title {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.18;
  letter-spacing: -.01em;
}

.page-home .delivery__note {
  margin: 18px 0 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.85;
  color: var(--tea);
}

.page-home .delivery__list {
  list-style: none;
  counter-reset: dlv;
  margin: 30px 0 0;
  padding: 0;
}

.page-home .delivery__list li {
  padding: 20px 0;
  border-top: 1px solid var(--rule-strong);
}

.page-home .delivery__list h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.page-home .delivery__list h3::before {
  counter-increment: dlv;
  content: counter(dlv, decimal-leading-zero);
  display: inline-block;
  margin-right: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--clay);
  transform: translateY(-2px);
}

.page-home .delivery__list p {
  margin: 8px 0 0 34px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--tea);
}

.page-home .delivery__cycle {
  margin: 28px 0 0;
  padding: 16px 18px;
  background: var(--paper);
  border-left: 3px solid var(--clay);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
}

.page-home .delivery__media {
  margin: 0;
}

.page-home .delivery__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ---------- 本季观察 ---------- */
.page-home .news__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.page-home .news__title {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.18;
  letter-spacing: -.01em;
  max-width: 22ch;
}

.page-home .news__more {
  font-size: 14px;
  text-decoration: none;
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 3px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.page-home .news__more:hover {
  color: var(--tea);
  border-color: var(--tea);
}

.page-home .news__list {
  list-style: none;
  margin: clamp(32px, 4vw, 50px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.page-home .news__item {
  display: grid;
  gap: 12px;
  padding: 28px 22px;
  background: var(--sand);
}

.page-home .news__item-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
}

.page-home .news__item-desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--tea);
}

.page-home .news__time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--clay);
}

/* ---------- 下一步 ---------- */
.page-home .talk {
  background: var(--pit);
  color: var(--paper);
}

.page-home .talk .eyebrow,
.page-home .talk .eyebrow__num {
  color: var(--gold);
}

.page-home .talk__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-home .talk__title {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(27px, 3.8vw, 46px);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--paper);
}

.page-home .talk__note {
  margin: 20px 0 0;
  max-width: 52ch;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--pale-gold);
}

.page-home .talk__steps {
  list-style: none;
  counter-reset: step;
  margin: 28px 0 0;
  padding: 0;
}

.page-home .talk__steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--rule-dark);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--paper);
}

.page-home .talk__steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--gold);
  padding-top: 4px;
}

.page-home .talk__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .talk__cta {
  display: inline-block;
  padding: 13px 26px;
  font-size: 15px;
  text-decoration: none;
  background: var(--clay);
  color: var(--paper);
  border: 1px solid var(--clay);
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease);
}

.page-home .talk__cta:hover {
  transform: translateX(4px);
  background: var(--clay-soft);
  border-color: var(--clay-soft);
}

.page-home .talk__cta--quiet {
  background: transparent;
  color: var(--pale-gold);
  border-color: rgba(240, 217, 168, .4);
}

.page-home .talk__cta--quiet:hover {
  background: rgba(240, 217, 168, .1);
  border-color: var(--pale-gold);
}

.page-home .talk__card {
  padding: 28px 24px;
  background: rgba(244, 237, 227, .05);
  border: 1px solid var(--rule-dark);
}

.page-home .talk__card-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--paper);
}

.page-home .talk__contact {
  margin: 22px 0 0;
}

.page-home .talk__contact dt {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--gold);
}

.page-home .talk__contact dt:first-child {
  margin-top: 0;
}

.page-home .talk__contact dd {
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--paper);
}

.page-home .talk__value {
  overflow-wrap: anywhere;
}

.page-home .talk__contact-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--rule-dark);
  font-size: 13px;
  line-height: 1.8;
  color: var(--pale-gold);
}

/* ---------- 坐标索引窄屏收起 ---------- */
@media (max-width: 1279px) {
  .page-home .coord-index {
    display: none;
  }
}

/* ---------- 平板及以上 ---------- */
@media (min-width: 780px) {
  .page-home .scale__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .scale__item {
    padding: 30px 22px;
    border-bottom: 0;
    border-left: 1px solid var(--rule);
  }

  .page-home .scale__item:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .page-home .scale__item:last-child {
    padding-right: 0;
  }

  .page-home .news__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ---------- 桌面 ---------- */
@media (min-width: 900px) {
  .page-home .hero__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--gutter);
    align-items: center;
  }

  .page-home .hero__text {
    grid-column: 1 / span 7;
  }

  .page-home .hero__visual {
    grid-column: 9 / span 4;
    align-self: end;
  }

  .page-home .identity__row {
    grid-template-columns: 90px minmax(0, 1fr) 200px;
    gap: 0 28px;
    align-items: center;
    padding: 32px 0;
  }

  .page-home .identity__body {
    grid-column: 2;
  }

  .page-home .identity__link {
    grid-column: 3;
    justify-self: end;
    margin-top: 0;
  }

  .page-home .bands-wrap {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 52px;
    align-items: start;
  }

  .page-home .bands-media {
    position: sticky;
    top: 132px;
  }

  .page-home .bandrow {
    grid-template-columns: 72px minmax(0, 1fr) 190px;
    gap: 0 28px;
    align-items: start;
    padding: 30px 0;
  }

  .page-home .bandrow__num {
    padding-top: 8px;
  }

  .page-home .bandrow__cta {
    grid-column: 3;
    justify-self: end;
    margin-top: 8px;
    text-align: right;
  }

  .page-home .delivery__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
    gap: 60px;
    align-items: start;
  }

  .page-home .talk__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 64px;
  }
}

/* ---------- 降低动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal],
  .page-home .bandrow,
  .page-home .identity__row,
  .page-home .hero__btn,
  .page-home .talk__cta,
  .page-home .identity__code {
    transition: none;
    transform: none;
  }

  .page-home .bandrow:hover,
  .page-home .identity__row:hover,
  .page-home .hero__btn:hover,
  .page-home .talk__cta:hover {
    transform: none;
  }
}
</main>
