.page-home {
  --home-hero-bg: var(--cream);
  --home-panel-green: var(--kiwi-green);
  --home-panel-yellow: var(--sunshine-yellow);
  --home-panel-cream: var(--mist-green);
  --home-text-strong: var(--carbon);
  --home-text-soft: var(--earth-brown);
  --home-border: var(--border-w);
  --home-shadow: var(--shadow-offset);
  background: var(--home-hero-bg);
  color: var(--home-text-strong);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

.page-home .container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.page-home .section {
  padding-block: 80px 96px;
  position: relative;
}

.page-home .section__header {
  margin-bottom: 48px;
}

.page-home .section__title {
  margin: 0 0 8px;
  color: var(--home-text-strong);
  letter-spacing: -0.02em;
}

.page-home .section__subtitle {
  margin: 0;
  color: var(--home-text-soft);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}

.page-home .kiwi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--home-panel-green);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: var(--home-border) solid var(--home-text-strong);
  box-shadow: 6px 6px 0 rgba(31, 42, 23, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.page-home .btn:hover,
.page-home .btn:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(31, 42, 23, 0.15);
}

.page-home .btn--outline {
  background: var(--cream);
  color: var(--home-text-strong);
}

.page-home .btn--outline:hover {
  background: var(--home-panel-yellow);
}

.page-home .btn--block {
  width: 100%;
}

/* 海报式首屏 */
.page-home .hero-posters {
  display: block;
  background: var(--cream);
  padding: 120px 0 56px;
  position: relative;
}

.page-home .hero-posters__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .hero-posters__eyebrow {
  margin-bottom: 24px;
}

.page-home .hero-posters__title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 11vw, 7rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  color: var(--carbon);
  text-shadow: 4px 4px 0 rgba(107, 156, 58, 0.18);
}

.page-home .hero-posters__subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.125rem);
  color: var(--home-text-soft);
  margin: 0 0 28px;
  max-width: 420px;
  padding-left: 16px;
  border-left: var(--home-border) solid var(--kiwi-green);
}

.page-home .hero-posters__index {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 20px;
}

.page-home .hero-posters__index-item {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--home-text-soft);
  text-decoration: none;
  padding: 6px 14px;
  border: var(--home-border) solid transparent;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.page-home .hero-posters__index-item:hover,
.page-home .hero-posters__index-item:focus-visible {
  color: var(--kiwi-green);
  border-color: var(--kiwi-green);
  background: rgba(107, 156, 58, 0.08);
}

.page-home .hero-posters__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 10px 10px 0 rgba(107, 156, 58, 0.15);
  border: var(--home-border) solid var(--kiwi-green);
}

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

.page-home .hero-posters__caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(253, 249, 243, 0.92);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--home-text-strong);
  max-width: calc(100% - 24px);
  backdrop-filter: blur(6px);
}

.page-home .hero-posters__orbit {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed rgba(108, 156, 58, 0.55);
  pointer-events: none;
  z-index: 2;
  animation: home-orbit-spin 22s linear infinite;
}

.page-home .hero-posters__orbit-dot {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sunshine-yellow);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.3);
}

@keyframes home-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

/* 新版亮点 */
.page-home .highlights-section {
  background: var(--cream);
}

.page-home .highlights-section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .highlights-section__badge {
  align-self: flex-start;
}

.page-home .highlights-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

.page-home .highlight-card {
  border: var(--home-border) solid var(--home-text-strong);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 8px 8px 0 rgba(31, 42, 23, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .highlight-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 rgba(31, 42, 23, 0.12);
}

.page-home .highlight-card--green {
  background: var(--kiwi-green);
  color: var(--cream);
}

.page-home .highlight-card--green .highlight-card__text {
  color: rgba(253, 249, 243, 0.92);
}

.page-home .highlight-card--yellow {
  background: var(--sunshine-yellow);
  color: var(--home-text-strong);
}

.page-home .highlight-card--cream {
  background: var(--mist-green);
  color: var(--home-text-strong);
}

.page-home .highlight-card__num {
  display: block;
  font-family: var(--font-num);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.25;
  margin-bottom: 20px;
}

.page-home .highlight-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.page-home .highlight-card__text {
  font-size: 0.95rem;
  margin: 0;
  color: var(--home-text-soft);
}

.page-home .highlight-card--green .highlight-card__title {
  color: var(--cream);
}

.page-home .highlights-section__note {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: var(--young-leaf);
  border-left: 6px solid var(--kiwi-green);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.page-home .highlights-section__note-text {
  margin: 0;
  font-weight: 600;
}

/* 内容中心 */
.page-home .content-hub {
  background: var(--deep-forest);
  color: var(--cream);
}

.page-home .content-hub .section__title {
  color: var(--cream);
}

.page-home .content-hub .section__subtitle {
  color: rgba(253, 249, 243, 0.72);
}

.page-home .content-hub__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.page-home .content-hub__visual {
  position: relative;
}

.page-home .content-hub__art-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-home .content-hub__art {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70%;
  height: auto;
  z-index: 2;
}

.page-home .content-hub__art circle,
.page-home .content-hub__art path,
.page-home .content-hub__art ellipse {
  stroke: var(--young-leaf);
  stroke-width: 2;
}

.page-home .content-hub__art ellipse {
  fill: url("#kiwi-gradient");
}

.page-home .content-hub__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  border: var(--home-border) solid var(--young-leaf);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
  display: block;
}

.page-home .content-hub__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 40px;
}

.page-home .hub-entry {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(253, 249, 243, 0.06);
  border: 1px solid rgba(253, 249, 243, 0.18);
  border-radius: var(--radius);
  color: var(--cream);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-home .hub-entry:hover,
.page-home .hub-entry:focus-visible {
  background: rgba(253, 249, 243, 0.12);
  transform: translateY(-2px);
}

.page-home .hub-entry__mark {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sunshine-yellow);
  line-height: 1.2;
}

.page-home .hub-entry__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .hub-entry__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
}

.page-home .hub-entry__desc {
  font-size: 0.875rem;
  color: rgba(253, 249, 243, 0.65);
}

.page-home .content-hub__cta {
  background: var(--sunshine-yellow);
  color: var(--carbon);
  border-color: var(--carbon);
}

.page-home .content-hub__cta:hover {
  background: var(--gold-orange);
}

/* 果品档案 */
.page-home .archive-section {
  background: var(--mist-green);
}

.page-home .archive-section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .archive-section__badge {
  align-self: flex-start;
}

.page-home .archive-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

.page-home .archive-card {
  position: relative;
  display: block;
  border: var(--home-border) solid var(--home-text-strong);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--home-text-strong);
  box-shadow: 8px 8px 0 rgba(31, 42, 23, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .archive-card:hover,
.page-home .archive-card:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 rgba(31, 42, 23, 0.15);
}

.page-home .archive-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--young-leaf);
}

.page-home .archive-card__tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  border: var(--home-border) solid var(--kiwi-green);
  box-shadow: 3px 3px 0 rgba(31, 42, 23, 0.1);
}

.page-home .archive-card__arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--sunshine-yellow);
  border: var(--home-border) solid var(--home-text-strong);
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
}

.page-home .archive-section__footer {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-home .archive-section__footer p {
  margin: 0;
  font-weight: 600;
  color: var(--home-text-soft);
}

/* 两步联系 */
.page-home .contact-section {
  background: var(--kiwi-green);
  color: var(--cream);
  padding-bottom: 0;
}

.page-home .contact-section__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.page-home .contact-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(46, 77, 30, 0.9) 20%, rgba(46, 77, 30, 0.4) 60%, rgba(107, 156, 58, 0.25) 100%);
}

.page-home .contact-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 110px;
}

.page-home .contact-section__copy {
  max-width: 360px;
}

.page-home .contact-section__badge {
  background: var(--sunshine-yellow);
  color: var(--carbon);
}

.page-home .contact-section__title {
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

.page-home .contact-section__lead {
  margin-top: 12px;
  font-size: 1.0625rem;
  color: rgba(253, 249, 243, 0.9);
}

.page-home .contact-section__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .contact-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(253, 249, 243, 0.9);
  border-radius: var(--radius);
  padding: 20px;
  border: var(--home-border) solid var(--deep-forest);
  box-shadow: 6px 6px 0 rgba(31, 42, 23, 0.15);
  transition: transform 0.2s ease;
}

.page-home .contact-step:hover {
  transform: translateY(-2px);
}

.page-home .contact-step__num {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sunshine-yellow);
  color: var(--carbon);
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  border: var(--home-border) solid var(--deep-forest);
}

.page-home .contact-step__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--home-text-strong);
  margin-bottom: 4px;
}

.page-home .contact-step__text {
  font-size: 0.9rem;
  color: var(--home-text-soft);
  margin: 0;
}

.page-home .contact-section__btn {
  align-self: flex-start;
  background: var(--cream);
  color: var(--deep-forest);
  border-color: var(--deep-forest);
}

.page-home .contact-section__btn:hover {
  background: var(--sunshine-yellow);
}

/* 面包屑 */
.page-home .breadcrumbs {
  background: var(--cream);
  padding-top: 28px;
  padding-bottom: 28px;
}

.page-home .breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--home-text-soft);
}

.page-home .breadcrumbs__link {
  color: var(--kiwi-green);
  font-weight: 600;
  text-decoration: none;
}

.page-home .breadcrumbs__link:hover,
.page-home .breadcrumbs__link:focus-visible {
  text-decoration: underline;
}

.page-home .breadcrumbs__item--current {
  color: var(--earth-brown);
}

/* 响应式布局：600px 以上 */
@media (min-width: 600px) {
  .page-home .hero-posters__index {
    gap: 12px 16px;
  }

  .page-home .highlights-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .highlight-card:last-child {
    grid-column: span 2;
  }

  .page-home .archive-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .contact-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 56px;
  }

  .page-home .contact-section__steps {
    gap: 20px;
  }
}

/* 桌面端布局 */
@media (min-width: 1024px) {
  .page-home .section {
    padding-block: 110px 128px;
  }

  .page-home .hero-posters {
    padding: 168px 0 80px;
  }

  .page-home .hero-posters__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 64px;
  }

  .page-home .hero-posters__title {
    font-size: clamp(4.5rem, 8vw, 8rem);
  }

  .page-home .hero-posters__subtitle {
    font-size: 1.25rem;
    max-width: 460px;
  }

  .page-home .hero-posters__visual {
    border-radius: 32px;
  }

  .page-home .highlights-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .highlight-card:last-child {
    grid-column: span 1;
  }

  .page-home .content-hub__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
  }

  .page-home .archive-section__grid {
    gap: 36px;
  }

  .page-home .contact-section__inner {
    gap: 96px;
    padding-bottom: 140px;
  }
}

/* 尊重减少动效偏好 */
@media (prefers-reduced-motion: reduce) {
  .page-home .hero-posters__orbit {
    animation: none;
  }

  .page-home .highlight-card,
  .page-home .archive-card,
  .page-home .contact-step,
  .page-home .hub-entry {
    transition: none;
  }

  .page-home .btn {
    transition: none;
  }
}
