:root {
  --ink: #0b1210;
  --ink-soft: #15201c;
  --mist: #dce8e1;
  --fog: #a7bdb2;
  --bone: #f3eee4;
  --gold: #d4a84b;
  --gold-deep: #b8892e;
  --line: rgba(243, 238, 228, 0.14);
  --font-display: "Fraunces", "Noto Serif SC", "Songti SC", serif;
  --font-body: "Manrope", "Noto Sans SC", "PingFang SC", sans-serif;
  --max: 1480px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.pc-body {
  margin: 0;
  color: var(--bone);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.pc-wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* header */
.pc-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1.25rem 0;
}

.pc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pc-brand {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
  font-size: 0.92rem;
  color: rgba(243, 238, 228, 0.78);
}

.pc-nav a:hover {
  color: var(--gold);
}

.pc-nav__cta {
  color: var(--ink) !important;
  background: var(--gold);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.pc-nav__cta:hover {
  background: var(--bone);
  color: var(--ink) !important;
}

/* hero — full bleed, brand first */
.pc-hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.pc-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212, 168, 75, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(88, 140, 118, 0.22), transparent 50%),
    linear-gradient(160deg, #07100d 0%, #13241e 48%, #0b1210 100%);
}

.pc-hero__media:not(.has-slides) {
  transform: scale(1.04);
  animation: pc-drift 18s ease-in-out infinite alternate;
}

.pc-hero__media.has-slides {
  background-color: #07100d;
  overflow: hidden;
}

.pc-hero__track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  will-change: transform;
}

.pc-hero__slide {
  display: block;
  width: 100%;
  height: var(--pc-hero-h, 100%);
  min-height: var(--pc-hero-h, 100%);
  flex: 0 0 var(--pc-hero-h, 100%);
  background-color: #07100d;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pc-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 18, 16, 0.35) 0%, rgba(11, 18, 16, 0.55) 42%, rgba(11, 18, 16, 0.92) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 3px
    );
}

.pc-hero__content {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 4.5rem;
  padding-top: 7rem;
}

.pc-hero__brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 12ch;
  opacity: 0;
  transform: translateY(28px);
  animation: pc-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.pc-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(243, 238, 228, 0.82);
  opacity: 0;
  transform: translateY(20px);
  animation: pc-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.pc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  opacity: 0;
  transform: translateY(16px);
  animation: pc-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.pc-btn:hover {
  transform: translateY(-2px);
}

.pc-btn--primary {
  background: var(--gold);
  color: var(--ink);
}

.pc-btn--primary:hover {
  background: var(--bone);
}

.pc-btn--ghost {
  border: 1px solid rgba(243, 238, 228, 0.35);
  color: var(--bone);
}

.pc-btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* sections */
.pc-section {
  padding: 4.5rem 0;
}

.pc-section--tint {
  background: linear-gradient(180deg, rgba(21, 32, 28, 0.9), rgba(11, 18, 16, 0.2));
}

.pc-section__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 2rem;
}

.pc-kicker {
  margin: 0 0 0.4rem;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pc-section__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
}

.pc-section__head p {
  margin: 0.5rem 0 0;
  max-width: 36rem;
  color: rgba(243, 238, 228, 0.68);
}

.pc-link-more {
  color: var(--gold);
  white-space: nowrap;
}

.pc-link-more:hover {
  text-decoration: underline;
}

/* category strip — no card chrome；宽屏 8 列一排 */
.pc-cat-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-cat-grid a {
  display: block;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pc-cat-grid a:hover {
  color: var(--gold);
  border-color: rgba(212, 168, 75, 0.55);
}

.pc-cat-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.05vw, 1.12rem);
  font-weight: 600;
  line-height: 1.25;
}

.pc-cat-grid span {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: rgba(243, 238, 228, 0.55);
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* goods — interactive list, minimal frame */
.pc-goods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-goods-grid--cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1.1rem 0.85rem;
}

.pc-goods-grid--cols-8 .pc-goods-item__media {
  aspect-ratio: 1 / 1;
}

.pc-goods-grid--cols-8 h3 {
  font-size: 0.92rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-goods-grid--cols-8 .pc-goods-item__meta {
  font-size: 0.82rem;
}

.pc-goods-item a {
  display: grid;
  gap: 0.85rem;
}

.pc-goods-item__media {
  aspect-ratio: 4 / 5;
  background: var(--ink-soft);
  overflow: hidden;
  position: relative;
}

.pc-goods-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pc-goods-item a:hover .pc-goods-item__media img {
  transform: scale(1.06);
}

.pc-goods-item__media--empty {
  background:
    linear-gradient(135deg, rgba(212, 168, 75, 0.15), transparent 50%),
    var(--ink-soft);
}

.pc-goods-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.pc-goods-item__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(243, 238, 228, 0.7);
  font-size: 0.92rem;
}

.pc-price {
  color: var(--gold);
  font-weight: 700;
}

/* article list */
.pc-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.pc-article-list li + li {
  border-top: 1px solid var(--line);
}

.pc-article-list a {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 0;
  transition: color 0.2s ease;
}

.pc-article-list a:hover {
  color: var(--gold);
}

.pc-article-list strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.pc-article-list span {
  color: rgba(243, 238, 228, 0.55);
  font-size: 0.92rem;
}

/* inner pages */
.pc-page-hero {
  padding: 7.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(212, 168, 75, 0.12), transparent 55%),
    linear-gradient(180deg, #101a16, var(--ink));
}

.pc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
  color: rgba(243, 238, 228, 0.55);
}

.pc-breadcrumb a:hover {
  color: var(--gold);
}

.pc-page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  max-width: 18ch;
}

.pc-page-hero__lead {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: rgba(243, 238, 228, 0.72);
}

.pc-main {
  padding: 2rem 0 4rem;
}

.pc-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: start;
}

.pc-gallery {
  display: grid;
  gap: 0.75rem;
}

.pc-gallery__main {
  aspect-ratio: 1;
  background: var(--ink-soft);
  overflow: hidden;
}

.pc-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-buybox .pc-price-lg {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.pc-buybox .pc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1.75rem;
}

.pc-rich {
  color: rgba(243, 238, 228, 0.86);
}

.pc-rich img {
  height: auto;
  margin: 1rem 0;
}

.pc-block + .pc-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.pc-block h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.pc-contact {
  padding-left: 1.1rem;
}

.pc-geo {
  margin: 1.25rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.pc-geo h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
}

.pc-geo p,
.pc-geo__list {
  margin: 0;
  color: rgba(243, 238, 228, 0.82);
}

.pc-geo__list {
  padding-left: 1.1rem;
}

.pc-geo__list li + li {
  margin-top: 0.35rem;
}

.pc-related h2,
.pc-faq > h2,
.pc-rich > h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.pc-buybox .pc-rich > h2:first-child {
  margin-top: 0.5rem;
}

.pc-share-hint {
  margin: 0.75rem 0 1rem;
  font-size: 0.88rem;
  color: rgba(243, 238, 228, 0.55);
  line-height: 1.5;
}


.pc-faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.pc-faq summary:hover {
  color: var(--gold);
}

/* footer */
.pc-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  color: rgba(243, 238, 228, 0.55);
  font-size: 0.9rem;
}

.pc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.pc-footer__brand {
  font-family: var(--font-display);
  color: var(--bone);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.pc-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.pc-footer a:hover {
  color: var(--gold);
}

.pc-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pc-reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes pc-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pc-drift {
  to {
    transform: scale(1.08) translate3d(-1.5%, 1%, 0);
  }
}

@media (max-width: 1280px) {
  .pc-cat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pc-goods-grid--cols-8 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .pc-split,
  .pc-footer__grid {
    grid-template-columns: 1fr;
  }

  .pc-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-goods-grid--cols-8 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pc-hero {
    min-height: 88vh;
  }

  .pc-hero__content {
    margin-bottom: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
