:root {
  --yellow: #f7d500;
  --yellow-deep: #e3b900;
  --ink: #111111;
  --soft-ink: #3d3a34;
  --muted: #6f6a60;
  --paper: #fffdf6;
  --cream: #f6f0e3;
  --green: #70875a;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 24px 60px rgba(28, 23, 12, 0.12);
}

@font-face {
  font-family: "Helvetica Now Display";
  src: url("./assets/fonts/HelveticaNowDisplay-Regular.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "Helvetica Now Display";
  src: url("./assets/fonts/HelveticaNowDisplayBold.OTF") format("opentype");
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (hover: none) and (pointer: coarse), (max-width: 720px) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf0 0%, #f6f0e3 58%, #f0eadc 100%);
  background-size: 96px 96px, auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 82% 8%, rgba(247, 213, 0, 0.35), transparent 24%),
    radial-gradient(circle at 8% 42%, rgba(112, 135, 90, 0.16), transparent 22%);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 36px;
  background: rgba(255, 253, 246, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.brand-cn {
  font-size: 1.15rem;
}

.brand-en,
.eyebrow,
.section-kicker,
.series,
.en,
.nav em,
.nav-cta em,
.button em {
  font-family: "Helvetica Now Display", "MiSans", sans-serif;
}

.en {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.brand-en {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 26px 0;
  line-height: 1.1;
}

.nav em,
.nav-cta em,
.button em {
  font-style: normal;
  font-size: 0.7rem;
  opacity: 0.72;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.admin-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.92rem;
}

.admin-link {
  border: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: 0.88rem;
}

.top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-cta:hover,
.admin-link:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.14);
}

.hero {
  position: relative;
  min-height: 780px;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.22) 46%, rgba(247, 213, 0, 0.76) 100%),
    var(--yellow);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.68), rgba(17, 17, 17, 0.18) 52%, rgba(247, 213, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0.18));
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 42%;
  height: 100%;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.12) 0,
    rgba(17, 17, 17, 0.12) 1px,
    transparent 1px,
    transparent 28px
  );
  mix-blend-mode: multiply;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(860px, calc(100% - 48px));
  min-height: 780px;
  margin-left: 7vw;
  padding: 84px 0 72px;
  color: #fffef6;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section-title h2,
.section-head h2,
.quality-copy h2,
.fresh-copy h2 {
  margin: 0;
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 {
  font-size: 5.15rem;
}

.section-title h2 .en,
.section-head h2 .en,
.quality-copy h2 .en,
.fresh-copy h2 .en {
  margin-top: 16px;
  font-size: 1.12rem;
  font-weight: 400;
}

.hero h1 .en {
  width: min(680px, 100%);
  margin-top: 16px;
  color: rgba(255, 253, 246, 0.78);
  font-size: 1.28rem;
  line-height: 1.35;
}

.fresh-copy h2 .en,
.quality-copy h2 .en {
  color: rgba(255, 253, 246, 0.64);
}

.lead {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 253, 246, 0.9);
  font-size: 1.2rem;
  line-height: 1.75;
}

.hero .lead.en {
  margin-top: 10px;
  color: rgba(255, 253, 246, 0.72);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  border: 1px solid var(--ink);
}

.button.primary {
  background: var(--yellow);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 253, 246, 0.62);
  color: #fffef6;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 253, 246, 0.3);
  border: 1px solid rgba(255, 253, 246, 0.3);
}

.proof-list li {
  min-height: 112px;
  padding: 18px;
  background: rgba(17, 17, 17, 0.44);
  backdrop-filter: blur(8px);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  color: var(--yellow);
  font-size: 2rem;
}

.proof-list span {
  margin-top: 8px;
  color: rgba(255, 253, 246, 0.86);
}

.fresh-band,
.section {
  padding: 96px 7vw;
}

.fresh-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  background: var(--ink);
  color: var(--paper);
}

.fresh-copy h2,
.section-title h2,
.section-head h2,
.quality-copy h2 {
  font-size: 3.2rem;
}

.fresh-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 246, 0.18);
}

.fresh-points article {
  min-height: 310px;
  padding: 30px;
  background: #1a1a1a;
}

.fresh-points span {
  color: var(--yellow);
  font-weight: 700;
}

.fresh-points h3 {
  margin: 82px 0 14px;
  font-size: 1.45rem;
}

.fresh-points h4,
.product h4,
.public-item h4 {
  margin: 4px 0 0;
  color: var(--muted);
  font-family: "Helvetica Now Display", "MiSans", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
}

.fresh-points h4 {
  color: rgba(255, 253, 246, 0.54);
}

.fresh-points p {
  margin: 14px 0 0;
  color: rgba(255, 253, 246, 0.72);
  line-height: 1.75;
}

.fresh-points p.en {
  color: rgba(255, 253, 246, 0.56);
  font-size: 0.9rem;
}

.section-kicker {
  margin-bottom: 22px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-section {
  background: rgba(255, 253, 246, 0.74);
}

.brand-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}

.brand-story {
  display: grid;
  gap: 22px;
  color: var(--soft-ink);
  font-size: 1.12rem;
  line-height: 1.9;
}

.brand-story p {
  margin: 0;
}

.brand-story .en {
  margin-top: -12px;
}

.brand-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 72px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-facts div {
  min-height: 150px;
  padding: 26px;
  background: var(--paper);
}

.brand-facts strong,
.brand-facts span {
  display: block;
}

.brand-facts strong {
  font-size: 2.1rem;
}

.brand-facts span {
  margin-top: 12px;
  color: var(--muted);
}

.products-section {
  background: linear-gradient(180deg, #f4ecdc 0%, #fffdf6 100%);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.82fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 54px;
}

.section-head.compact {
  align-items: start;
}

.section-head p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1.08rem;
  line-height: 1.8;
}

.section-head p .en,
.section-head .en {
  margin-top: 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.06);
}

.product.feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  background: var(--yellow);
}

.product img {
  height: 320px;
  padding: 14px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 46%, rgba(247, 213, 0, 0.14), transparent 46%),
    #f4eddf;
}

.product.feature img {
  height: 100%;
  min-height: 430px;
}

.product-copy {
  padding: 26px;
}

.series {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product.feature .series {
  color: rgba(17, 17, 17, 0.65);
}

.product h3,
.public-item h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.28;
}

.product p:not(.series) {
  margin: 16px 0 0;
  color: var(--soft-ink);
  line-height: 1.76;
}

.product p.en {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.product span.en {
  margin-top: 6px;
  font-size: 0.84rem;
}

.quality-section {
  background: #111111;
  color: var(--paper);
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.quality-copy p {
  margin: 24px 0 0;
  color: rgba(255, 253, 246, 0.74);
  font-size: 1.08rem;
  line-height: 1.85;
}

.quality-copy p.en {
  margin-top: 10px;
  color: rgba(255, 253, 246, 0.58);
  font-size: 0.95rem;
}

.quality-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 38px 0 28px;
  background: rgba(255, 253, 246, 0.22);
}

.quality-stats div {
  padding: 20px;
  background: #1c1c1c;
}

.quality-stats strong,
.quality-stats span {
  display: block;
}

.quality-stats strong {
  color: var(--yellow);
  font-size: 1.35rem;
}

.quality-stats span {
  margin-top: 10px;
  color: rgba(255, 253, 246, 0.68);
  font-size: 0.9rem;
}

.report-wall {
  min-width: 0;
}

.carousel-shell {
  min-width: 0;
}

.carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.carousel-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.quality-section .carousel-top p {
  color: rgba(255, 253, 246, 0.68);
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.carousel-controls button:hover {
  background: #ffe769;
  transform: translateY(-2px);
}

.carousel-track {
  display: grid;
  grid-auto-columns: minmax(360px, 42%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.carousel-card {
  scroll-snap-align: start;
}

.report-card,
.award-card,
.public-item.carousel-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-card {
  display: grid;
  grid-template-rows: 340px auto;
  color: var(--ink);
}

.report-card img {
  height: 100%;
  object-fit: cover;
  background: #efe7d8;
}

.report-card div,
.award-card {
  padding: 24px;
}

.card-meta {
  margin: 0 0 12px;
  color: var(--green);
  font-family: "Helvetica Now Display", "MiSans", sans-serif;
  font-weight: 700;
}

.report-card h3,
.report-card h4,
.report-card p {
  margin: 0;
}

.report-card h3 {
  font-size: 1.35rem;
  line-height: 1.35;
}

.report-card h4 {
  margin-top: 5px;
  color: var(--muted);
  font-family: "Helvetica Now Display", "MiSans", sans-serif;
  font-weight: 400;
  line-height: 1.45;
}

.report-card p:not(.card-meta) {
  margin-top: 14px;
  color: var(--soft-ink);
  line-height: 1.68;
}

.report-card p.en {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.awards-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.96), rgba(247, 213, 0, 0.11)),
    var(--paper);
}

#awards .carousel-track {
  grid-auto-columns: minmax(420px, 44%);
}

.award-card {
  min-height: 420px;
}

.award-card h3 {
  margin: 0 0 18px;
  color: var(--green);
  font-family: "Helvetica Now Display", "MiSans", sans-serif;
  font-size: 2.6rem;
}

.award-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.award-card li {
  position: relative;
  padding-left: 18px;
  color: var(--soft-ink);
  font-size: 0.92rem;
  line-height: 1.55;
}

.award-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
}

.public-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.9), rgba(246, 240, 227, 0.94)),
    var(--cream);
}

.public-section .section-head p .en {
  display: block;
  margin-top: 12px;
}

.public-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

#public-welfare .carousel-track {
  grid-auto-columns: minmax(380px, 36%);
}

.public-item {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.public-item.large {
  grid-column: auto;
  grid-row: auto;
}

.public-item img {
  height: 300px;
  object-fit: cover;
}

.public-item.large img {
  height: 300px;
}

.public-item div {
  padding: 24px;
}

.public-item p {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 700;
}

.public-item span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.public-item span.en {
  margin-top: 8px;
  font-size: 0.84rem;
}

.footer {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  padding: 34px 7vw;
  color: var(--paper);
  background: var(--ink);
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 253, 246, 0.68);
}

.footer-beian {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  margin: 0;
  text-align: right;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
}

.footer-links .footer-beian {
  color: rgba(255, 253, 246, 0.78);
  text-decoration: none;
}

.footer-links .footer-beian:hover {
  color: var(--yellow);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .topbar {
    flex-wrap: wrap;
    min-height: auto;
    padding: 16px 24px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .top-actions {
    margin-left: auto;
  }

  .nav a {
    padding: 8px 0 12px;
    white-space: nowrap;
  }

  .nav a::after {
    bottom: 4px;
  }

  .hero-copy {
    margin-left: 36px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .fresh-band,
  .brand-grid,
  .section-head,
  .quality-layout {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-track,
  #awards .carousel-track,
  #public-welfare .carousel-track {
    grid-auto-columns: minmax(340px, 72%);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 700px;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: rgba(17, 17, 17, 0.38);
  }

  .hero-copy {
    width: calc(100% - 40px);
    min-height: 700px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .proof-list,
  .fresh-points,
  .brand-facts,
  .quality-stats {
    grid-template-columns: 1fr;
  }

  .fresh-band,
  .section {
    padding: 72px 20px;
  }

  .fresh-copy h2,
  .section-title h2,
  .section-head h2,
  .quality-copy h2 {
    font-size: 2.35rem;
  }

  .product-grid,
  .public-grid,
  .report-wall,
  .product.feature {
    grid-template-columns: 1fr;
  }

  .carousel-track,
  #awards .carousel-track,
  #public-welfare .carousel-track {
    grid-auto-columns: minmax(280px, 88%);
  }

  .product.feature {
    grid-column: span 1;
  }

  .product.feature img,
  .report-wall img:first-child,
  .public-item.large img {
    height: 320px;
    min-height: auto;
  }

  .public-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Comment revision: lighter editorial site, poster hero, click-through cards. */
.top-actions {
  display: none;
}

.hero {
  display: block;
  min-height: auto;
  padding: 38px 44px 52px;
  background: var(--paper);
}

.hero-copy {
  display: none;
}

.hero-media {
  position: relative;
  min-height: auto;
  aspect-ratio: 24 / 10;
  border: 0;
  border-radius: 0;
  background: #fff;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.section-title h2 .en,
.section-head h2 .en,
.quality-copy h2 .en,
.fresh-copy h2 .en,
.detail-hero h1 span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.fresh-band {
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.fresh-copy h2,
.section-title h2,
.section-head h2,
.quality-copy h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.6rem);
  line-height: 1.05;
}

.fresh-points {
  background: var(--line);
  border: 1px solid var(--line);
}

.fresh-points article {
  min-height: 300px;
  background: #fff;
}

.fresh-points span,
.fresh-points h3,
.fresh-points h4,
.fresh-points p,
.fresh-points p.en,
.fresh-copy h2 .en {
  color: inherit;
}

.fresh-points h4,
.fresh-points p.en {
  color: var(--muted);
}

.products-section .section-head {
  margin-bottom: 34px;
}

#productSeriesTrack {
  grid-auto-columns: minmax(360px, 30%);
}

.series-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
}

.series-card img {
  height: 360px;
  padding: 30px;
  object-fit: contain;
  background: #fff;
}

.series-card .product-copy {
  min-height: 250px;
  border-top: 1px solid var(--line);
}

.series-card h3 {
  font-size: 1.38rem;
}

.quality-section {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.quality-copy p,
.quality-copy p.en,
.quality-stats span {
  color: var(--muted);
}

.quality-stats,
.quality-stats div {
  border-color: var(--line);
}

.quality-stats {
  background: transparent;
}

.quality-stats strong {
  color: var(--ink);
}

.quality-section .carousel-top p {
  color: var(--muted);
}

.quality-section .carousel-controls button {
  color: var(--ink);
}

#qualityReportTrack {
  grid-auto-columns: minmax(320px, 28%);
}

.report-card {
  grid-template-rows: 410px auto;
  background: #fff;
  border: 1px solid var(--line);
  transform-origin: center;
}

.report-wall.is-visible .report-card {
  animation: report-settle 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.report-wall.is-visible .report-card:nth-child(2) {
  animation-delay: 80ms;
}

.report-wall.is-visible .report-card:nth-child(3) {
  animation-delay: 160ms;
}

.report-wall.is-visible .report-card:nth-child(4) {
  animation-delay: 240ms;
}

.report-wall.is-visible .report-card:nth-child(5) {
  animation-delay: 320ms;
}

.report-card img {
  padding: 18px;
  object-fit: cover;
  background: #fff;
}

.report-card div {
  min-height: 190px;
}

.report-card h4,
.report-card p:not(.card-meta) {
  display: none;
}

.report-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.report-card span.en {
  color: var(--ink);
  font-weight: 700;
}

@keyframes report-settle {
  from {
    opacity: 0;
    transform: translateX(120px) translateY(26px) rotate(5deg) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0) scale(1);
  }
}

.award-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 430px;
  background: #fff;
  border: 1px solid var(--line);
}

.award-card p {
  margin: -6px 0 20px;
  color: var(--muted);
}

.award-card ul {
  align-content: start;
}

.award-card span {
  display: block;
  align-self: end;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.public-item.carousel-card {
  background: #fff;
  border: 1px solid var(--line);
}

.public-item.carousel-card:hover,
.series-card:hover,
.report-card:hover,
.detail-card:hover {
  background: #f8f6ef;
}

.detail-page {
  background: var(--paper);
}

.detail-nav {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 28px 44px;
  background: rgba(251, 250, 244, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  font-weight: 700;
}

.detail-shell {
  padding: 72px 7vw 120px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 7vw;
  align-items: center;
}

.detail-hero.product-detail {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 0.92fr);
}

.detail-hero img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.detail-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6rem);
  letter-spacing: -0.075em;
  line-height: 1;
}

.detail-hero p {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: 1.05rem;
  line-height: 1.9;
}

.detail-hero .en {
  color: var(--muted);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 76px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-card {
  display: block;
  min-height: 520px;
  padding: 28px;
  background: #fff;
}

.detail-card img {
  height: 280px;
  object-fit: contain;
  background: #fff;
}

.detail-card p,
.tag-row span {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.detail-card h2 {
  margin: 28px 0 12px;
  font-size: 1.55rem;
}

.detail-card span,
.detail-note {
  color: var(--muted);
  line-height: 1.7;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag-row span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.detail-note {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1120px) {
  #productSeriesTrack,
  #qualityReportTrack {
    grid-auto-columns: minmax(320px, 58%);
  }

  .detail-hero,
  .detail-hero.product-detail,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 20px 16px 34px;
  }

  .hero-media {
    aspect-ratio: 1.35;
  }

  .fresh-band,
  .section {
    padding: 72px 20px;
  }

  #productSeriesTrack,
  #qualityReportTrack {
    grid-auto-columns: minmax(280px, 88%);
  }

  .detail-nav {
    padding: 18px 20px;
  }

  .detail-shell {
    padding: 48px 20px 88px;
  }
}

/* Final refinements for current annotation round. Keep this block last. */
.hero-media {
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
  aspect-ratio: 2048 / 921 !important;
}

.hero-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #fff !important;
}

.award-card {
  grid-template-rows: auto auto minmax(0, 1fr) !important;
  height: min(62vh, 560px) !important;
  min-height: 430px !important;
  overflow: hidden !important;
}

.award-card h3,
.award-card p {
  flex: 0 0 auto;
}

.award-card .award-scroll {
  min-height: 0;
  overflow-y: auto;
  padding-right: 18px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(8, 42, 70, 0.28) transparent;
}

.award-card .award-scroll::-webkit-scrollbar {
  width: 5px;
}

.award-card .award-scroll::-webkit-scrollbar-thumb {
  background: rgba(8, 42, 70, 0.22);
  border-radius: 999px;
}

.award-card ul {
  gap: 18px !important;
  padding-bottom: 24px;
}

.award-card span {
  display: none !important;
}

.detail-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-metrics div {
  min-height: 170px;
  padding: 30px;
  background: #fff;
}

.detail-metrics strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.detail-metrics span,
.detail-metrics em {
  display: block;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.detail-article {
  display: grid;
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-article article {
  padding: clamp(32px, 5vw, 72px);
  background: #fff;
}

.detail-article h2 {
  max-width: 900px;
  margin: 12px 0 24px;
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.detail-article h2 span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.detail-article p {
  max-width: 920px;
  color: var(--soft-ink);
  font-size: 1.08rem;
  line-height: 1.95;
}

.detail-article .en {
  color: var(--muted);
}

.detail-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-links article {
  padding: clamp(28px, 4vw, 52px);
  background: #fff;
}

.detail-links article:only-child {
  grid-column: 1 / -1;
}

.detail-links article > div {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.detail-links a {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.detail-video {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.detail-video video {
  display: block;
  width: 100%;
  max-height: min(68vh, 720px);
  background: #0f171d;
  object-fit: contain;
}

.detail-video figcaption,
.detail-source-note {
  display: block;
  padding: 18px 20px 20px;
}

.detail-links .detail-source-note {
  margin-top: 0;
}

.detail-links strong,
.detail-links span {
  display: block;
}

.detail-links strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.detail-links span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .detail-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-media {
    aspect-ratio: 16 / 9 !important;
  }

  .award-card {
    height: 520px !important;
  }

  .detail-metrics {
    grid-template-columns: 1fr;
  }
}

/* Final effective hero banner: full-bleed poster and animated copy. */
.hero {
  position: relative !important;
  display: block !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
  border-bottom: 1px solid var(--line) !important;
}

.hero-media {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  aspect-ratio: 3431 / 1543 !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform-origin: center;
  animation: heroPosterReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--ink) !important;
  pointer-events: none;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .proof-list {
  position: absolute;
  z-index: 2;
  margin: 0 !important;
  opacity: 0;
  transform-origin: center;
  animation: heroTextPop 0.86s cubic-bezier(0.2, 1.35, 0.34, 1) both;
}

.hero-copy .eyebrow {
  top: 9.5%;
  left: 7.2%;
  color: #332416;
  font-size: clamp(0.68rem, 0.95vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  animation-delay: 0.18s;
}

.hero-copy h1 {
  right: 7.6%;
  bottom: 10.5%;
  width: min(34vw, 520px);
  color: #2f2115;
  text-align: right;
  font-size: clamp(2.1rem, 4.2vw, 5.3rem);
  letter-spacing: -0.08em;
  line-height: 0.92;
  animation-delay: 0.34s;
}

.hero-copy h1 .zh,
.hero-copy h1 .en {
  display: block;
}

.hero-copy h1 .en {
  margin-top: 14px;
  color: #9f7650;
  font-size: clamp(0.68rem, 0.95vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-copy .lead,
.hero-copy .hero-actions {
  display: none !important;
}

.hero-copy .proof-list {
  left: 7.2%;
  bottom: 8%;
  display: flex !important;
  width: min(40vw, 560px);
  border: 0 !important;
  gap: 10px !important;
  animation-delay: 0.5s;
}

.hero-copy .proof-list li {
  flex: 0 1 auto;
  min-width: 0;
  padding: 10px 14px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  border: 1px solid rgba(179, 139, 98, 0.38) !important;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-copy .proof-list strong {
  color: #2f2115 !important;
  font-size: clamp(0.9rem, 1.1vw, 1.15rem) !important;
  letter-spacing: -0.04em;
}

.hero-copy .proof-list span {
  margin-top: 0;
  color: #785b3c !important;
  font-size: clamp(0.58rem, 0.78vw, 0.78rem) !important;
  line-height: 1.15;
}

@media (max-width: 900px) {
  .hero-media {
    aspect-ratio: 16 / 9 !important;
  }

  .hero-copy .eyebrow,
  .hero-copy .proof-list {
    display: none !important;
  }

  .hero-copy h1 {
    right: 6vw;
    bottom: 8vw;
    width: min(58vw, 420px);
    font-size: clamp(1.55rem, 7vw, 3.4rem);
  }
}

/* Final curved-panel override: round color blocks with scroll jump-up motion. */
body {
  background:
    radial-gradient(circle at 18% 12%, rgba(197, 166, 119, 0.18), transparent 26%),
    radial-gradient(circle at 88% 38%, rgba(112, 135, 90, 0.14), transparent 24%),
    #ece9e2 !important;
}

main {
  overflow: hidden;
}

.fresh-band,
main > .section {
  --panel-bg: #fffdf6;
  --panel-glow: rgba(247, 213, 0, 0.18);
  --panel-radius: clamp(34px, 5vw, 76px);
  position: relative !important;
  z-index: 1;
  margin-top: -44px !important;
  padding-top: clamp(74px, 8vw, 132px) !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: var(--panel-radius) var(--panel-radius) 0 0 !important;
  background:
    radial-gradient(circle at 88% 8%, var(--panel-glow), transparent 24%),
    var(--panel-bg) !important;
  box-shadow: 0 -28px 90px rgba(35, 28, 16, 0.1);
  opacity: 0.001;
  transform: translateY(82px) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 860ms cubic-bezier(0.18, 1.32, 0.24, 1),
    box-shadow 860ms ease;
  will-change: transform, opacity;
}

.fresh-band.is-panel-visible,
main > .section.is-panel-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 -18px 70px rgba(35, 28, 16, 0.08);
}

.fresh-band::before,
main > .section::before {
  position: absolute;
  inset: 0 0 auto;
  height: min(26vw, 260px);
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 48%),
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.94), transparent 34%);
  opacity: 0.7;
}

.fresh-band::after,
main > .section::after {
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(90vw, 1320px);
  height: clamp(48px, 7vw, 96px);
  pointer-events: none;
  content: "";
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 0;
  border-radius: var(--panel-radius) var(--panel-radius) 0 0;
  transform: translateX(-50%);
}

.fresh-band > *,
main > .section > * {
  position: relative;
  z-index: 1;
}

.fresh-band {
  --panel-bg: #fff8df;
  --panel-glow: rgba(247, 213, 0, 0.24);
}

.brand-section {
  --panel-bg: #fffdf6;
  --panel-glow: rgba(197, 166, 119, 0.2);
}

.products-section {
  --panel-bg: #f6f0e3;
  --panel-glow: rgba(112, 135, 90, 0.18);
}

.quality-section {
  --panel-bg: #f8fbff;
  --panel-glow: rgba(112, 159, 190, 0.18);
}

.awards-section {
  --panel-bg: #fffaf0;
  --panel-glow: rgba(247, 213, 0, 0.16);
}

.public-section {
  --panel-bg: #eef6ee;
  --panel-glow: rgba(112, 135, 90, 0.2);
  border-radius: var(--panel-radius) var(--panel-radius) var(--panel-radius) var(--panel-radius) !important;
  margin-bottom: 56px;
}

.fresh-band:hover,
main > .section:hover {
  box-shadow: 0 -24px 90px rgba(35, 28, 16, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .fresh-band,
  main > .section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  .fresh-band,
  main > .section {
    --panel-radius: 30px;
    margin-top: -26px !important;
    padding-top: 64px !important;
    opacity: 1;
    transform: none;
  }
}

/* Final GAOYEA brand-color override: align accents with VI/e-commerce color spec. */
:root {
  --yellow: #fad300;
  --yellow-deep: #d0a900;
  --brand-yellow: #fad300;
  --brand-bright-yellow: #ffe800;
  --brand-black: #111111;
  --brand-warm-white: #f0f0f0;
  --brand-cream: #fff9df;
  --brand-brown: #3a2a1d;
  --green: var(--brand-black);
}

.eyebrow,
.section-kicker,
.series,
.product .series,
.series-card .series,
.detail-meta,
.filter-field label,
.report-card .meta,
.award-card .award-count,
.public-item .project-kicker {
  color: var(--brand-black) !important;
}

.product .series,
.series-card .series {
  letter-spacing: 0.045em;
}

.product .series::before,
.series-card .series::before,
.section-kicker::before,
.eyebrow::before {
  background: var(--brand-yellow) !important;
}

.product h3,
.series-card h3,
.report-card h3,
.award-card h3,
.public-item h3 {
  color: var(--brand-black) !important;
}

.product:hover,
.series-card:hover,
.report-card:hover,
.award-card:hover,
.public-item:hover {
  border-color: rgba(250, 211, 0, 0.72) !important;
  box-shadow: 0 22px 58px rgba(58, 42, 29, 0.1) !important;
}

.products-section {
  --panel-bg: #fffaf0 !important;
  --panel-glow: rgba(250, 211, 0, 0.18) !important;
}

.public-section {
  --panel-bg: #fff9df !important;
  --panel-glow: rgba(250, 211, 0, 0.16) !important;
}

.quality-section {
  --panel-bg: #f7f7f2 !important;
  --panel-glow: rgba(250, 211, 0, 0.14) !important;
}

.filter-field select:focus,
.filter-field input:focus,
.report-filter-reset:focus-visible,
.carousel-btn:focus-visible {
  border-color: var(--brand-yellow) !important;
  box-shadow: 0 0 0 4px rgba(250, 211, 0, 0.18) !important;
}

/* Final module-surface pass: remove decorative arcs and use near-white gray layering. */
body {
  background: linear-gradient(180deg, #fbfbfa 0%, #f5f5f3 100%) !important;
}

.fresh-band,
main > .section {
  --panel-bg: #f7f7f5 !important;
  --panel-glow: rgba(0, 0, 0, 0.045) !important;
  background:
    linear-gradient(135deg, #fbfbfa 0%, #f4f5f4 52%, #eeeeec 100%) !important;
  box-shadow: 0 -20px 70px rgba(17, 17, 17, 0.06) !important;
}

.fresh-band::after,
main > .section::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
}

.fresh-band::before,
main > .section::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(236, 237, 236, 0.34) 58%, rgba(255, 255, 255, 0) 100%) !important;
  opacity: 0.52 !important;
}

.fresh-band.is-panel-visible,
main > .section.is-panel-visible,
.fresh-band:hover,
main > .section:hover {
  box-shadow: 0 -22px 78px rgba(17, 17, 17, 0.075) !important;
}

.fresh-points,
.quality-layout,
.section-head,
.brand-facts,
.report-filter {
  background: rgba(255, 255, 255, 0.74) !important;
  border-color: rgba(17, 17, 17, 0.1) !important;
}

.products-section,
.quality-section,
.awards-section,
.public-section {
  --panel-bg: #f7f7f5 !important;
  --panel-glow: rgba(0, 0, 0, 0.045) !important;
}

/* Final quality certificate insert: transparent, high-resolution certificate proof. */
.quality-certificate {
  margin: clamp(28px, 4vw, 44px) 0 0 !important;
  padding: clamp(18px, 2.4vw, 30px) !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(250, 211, 0, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(17, 17, 17, 0.1) !important;
  border-radius: 28px !important;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08) !important;
}

.quality-certificate img {
  display: block !important;
  width: min(100%, 680px) !important;
  height: auto !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 22px 26px rgba(17, 17, 17, 0.14)) !important;
}

.quality-certificate figcaption {
  display: grid !important;
  gap: 6px !important;
  margin-top: 18px !important;
  color: rgba(17, 17, 17, 0.62) !important;
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
}

.quality-certificate figcaption strong {
  color: var(--ink) !important;
  font-size: 1.02rem !important;
}

.quality-certificate figcaption .en {
  color: rgba(17, 17, 17, 0.48) !important;
}

/* Final static hero override: no entrance animation on the banner poster. */
.hero-media img {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
  filter: none !important;
}

/* Final hero fallback: keep the banner as the original static poster. */
.hero-media img {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
  filter: none !important;
}

/* Absolute final hero animation layer: keep the poster as final artwork. */
.hero-media {
  isolation: isolate !important;
  background: #e7f4ff !important;
}

.hero-media img {
  opacity: 0;
  animation: heroFinalPosterSettle 1.75s 0.22s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

.hero-burst {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background-image: url("./assets/optimized/home/banner.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% 100% !important;
  opacity: 0;
  will-change: transform, opacity, filter;
}

.hero-burst-product {
  z-index: 4 !important;
  clip-path: inset(3% 34.5% 6% 34.5%) !important;
  transform-origin: 50% 56%;
  animation: heroPackageJump 1.34s 0.08s cubic-bezier(0.18, 1.42, 0.25, 1) both !important;
}

.hero-burst-left {
  clip-path: polygon(0 0, 39% 0, 39% 55%, 0 62%) !important;
  transform-origin: 20% 34%;
  animation: heroTypeBurstLeft 1.28s 0.28s cubic-bezier(0.16, 1.5, 0.28, 1) both !important;
}

.hero-burst-right {
  clip-path: polygon(62% 0, 100% 0, 100% 64%, 62% 55%) !important;
  transform-origin: 80% 34%;
  animation: heroTypeBurstRight 1.28s 0.34s cubic-bezier(0.16, 1.5, 0.28, 1) both !important;
}

.hero-burst-bottom-left {
  clip-path: polygon(0 47%, 43% 43%, 43% 100%, 0 100%) !important;
  transform-origin: 24% 72%;
  animation: heroTypeBurstBottomLeft 1.32s 0.4s cubic-bezier(0.16, 1.5, 0.28, 1) both !important;
}

.hero-burst-bottom-right {
  clip-path: polygon(58% 43%, 100% 46%, 100% 100%, 58% 100%) !important;
  transform-origin: 78% 72%;
  animation: heroTypeBurstBottomRight 1.32s 0.46s cubic-bezier(0.16, 1.5, 0.28, 1) both !important;
}

/* Absolute final quality intro cleanup: no white panel behind the copy block. */
#quality .quality-layout,
#quality .quality-copy {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Trial navigation treatment with GAOYEA VI standard yellow. */
.topbar {
  background: var(--yellow) !important;
  border-bottom-color: rgba(17, 17, 17, 0.18) !important;
  box-shadow: 0 10px 34px rgba(17, 17, 17, 0.08) !important;
  backdrop-filter: none !important;
}

.topbar .nav {
  color: rgba(17, 17, 17, 0.62) !important;
}

.topbar .nav a:hover,
.topbar .nav a.is-active {
  color: var(--ink) !important;
}

.topbar .nav a::after {
  background: var(--ink) !important;
}

.topbar .nav em {
  color: rgba(17, 17, 17, 0.58) !important;
  opacity: 1 !important;
}

/* First-load hero burst: package jumps out, typography explodes into place. */
.hero-media {
  isolation: isolate !important;
  background: #e7f4ff !important;
}

.hero-media img {
  opacity: 0;
  animation: heroFinalPosterSettle 1.75s 0.22s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

.hero-burst {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("./assets/optimized/home/banner.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 0;
  will-change: transform, opacity, filter;
}

.hero-burst-product {
  z-index: 4;
  clip-path: inset(3% 34.5% 6% 34.5%);
  transform-origin: 50% 56%;
  animation: heroPackageJump 1.34s 0.08s cubic-bezier(0.18, 1.42, 0.25, 1) both;
}

.hero-burst-left {
  clip-path: polygon(0 0, 39% 0, 39% 55%, 0 62%);
  transform-origin: 20% 34%;
  animation: heroTypeBurstLeft 1.28s 0.28s cubic-bezier(0.16, 1.5, 0.28, 1) both;
}

.hero-burst-right {
  clip-path: polygon(62% 0, 100% 0, 100% 64%, 62% 55%);
  transform-origin: 80% 34%;
  animation: heroTypeBurstRight 1.28s 0.34s cubic-bezier(0.16, 1.5, 0.28, 1) both;
}

.hero-burst-bottom-left {
  clip-path: polygon(0 47%, 43% 43%, 43% 100%, 0 100%);
  transform-origin: 24% 72%;
  animation: heroTypeBurstBottomLeft 1.32s 0.4s cubic-bezier(0.16, 1.5, 0.28, 1) both;
}

.hero-burst-bottom-right {
  clip-path: polygon(58% 43%, 100% 46%, 100% 100%, 58% 100%);
  transform-origin: 78% 72%;
  animation: heroTypeBurstBottomRight 1.32s 0.46s cubic-bezier(0.16, 1.5, 0.28, 1) both;
}

@keyframes heroFinalPosterSettle {
  0%,
  56% {
    opacity: 0;
    transform: scale(1.012);
    filter: blur(3px) saturate(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: none;
  }
}

@keyframes heroPackageJump {
  0% {
    opacity: 0;
    transform: translateY(15%) scale(0.66) rotate(-4deg);
    filter: blur(5px) drop-shadow(0 0 0 rgba(17, 17, 17, 0));
  }
  46% {
    opacity: 1;
    transform: translateY(-4%) scale(1.1) rotate(1.5deg);
    filter: blur(0) drop-shadow(0 42px 38px rgba(17, 17, 17, 0.2));
  }
  74% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: blur(0) drop-shadow(0 22px 24px rgba(17, 17, 17, 0.12));
  }
  100% {
    opacity: 0;
    transform: translateY(0) scale(1) rotate(0);
    filter: none;
  }
}

@keyframes heroTypeBurstLeft {
  0% {
    opacity: 0;
    transform: translate(-18%, -8%) scale(0.62) rotate(-18deg);
    filter: blur(5px);
  }
  70% {
    opacity: 1;
    transform: translate(0) scale(1.035) rotate(1.5deg);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate(0) scale(1) rotate(0);
    filter: none;
  }
}

@keyframes heroTypeBurstRight {
  0% {
    opacity: 0;
    transform: translate(18%, -8%) scale(0.62) rotate(18deg);
    filter: blur(5px);
  }
  70% {
    opacity: 1;
    transform: translate(0) scale(1.035) rotate(-1.5deg);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate(0) scale(1) rotate(0);
    filter: none;
  }
}

@keyframes heroTypeBurstBottomLeft {
  0% {
    opacity: 0;
    transform: translate(-12%, 18%) scale(0.64) rotate(16deg);
    filter: blur(5px);
  }
  70% {
    opacity: 1;
    transform: translate(0) scale(1.035) rotate(-1deg);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate(0) scale(1) rotate(0);
    filter: none;
  }
}

@keyframes heroTypeBurstBottomRight {
  0% {
    opacity: 0;
    transform: translate(12%, 18%) scale(0.64) rotate(-16deg);
    filter: blur(5px);
  }
  70% {
    opacity: 1;
    transform: translate(0) scale(1.035) rotate(1deg);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate(0) scale(1) rotate(0);
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    opacity: 1;
    animation: none !important;
  }

  .hero-burst {
    display: none;
  }
}

/* Final quality intro cleanup: no white panel behind the copy block. */
#quality .quality-layout,
#quality .quality-copy {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Section intro copy should sit directly on the panel background, like Brand. */
#products .section-head,
#awards .section-head,
#public-welfare .section-head,
.quality-layout,
.quality-copy {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

#products .section-head,
#awards .section-head,
#public-welfare .section-head {
  padding: 0 !important;
}

/* Final hero poster: copy is designed into the official banner artwork. */
.hero .hero-copy {
  display: none !important;
}

/* Final contact/footer additions. */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  right: 7vw;
  bottom: 68px;
  justify-content: flex-end;
  gap: 16px 28px;
  min-width: 380px;
  font-weight: 700;
}

.footer-links a {
  color: var(--paper);
  line-height: 1.2;
}

.footer-contact {
  color: var(--yellow) !important;
}

.contact-page {
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(250, 211, 0, 0.16), transparent 26%),
    linear-gradient(180deg, #fbfbfa 0%, #f2f2ef 100%);
}

.contact-shell {
  padding: clamp(56px, 8vw, 110px) 7vw 120px;
}

.contact-hero {
  max-width: 980px;
}

.contact-hero h1 {
  margin: 16px 0 24px;
  font-size: clamp(3.6rem, 8vw, 9rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.contact-hero p,
.contact-map p {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: 1.05rem;
  line-height: 1.9;
}

.contact-hero .en,
.contact-map .en {
  margin-top: 10px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 6vw, 82px);
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.78);
}

.contact-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-grid h2 {
  margin: 28px 0 16px;
  font-size: clamp(1.35rem, 2vw, 2.3rem);
  letter-spacing: -0.06em;
  line-height: 1.16;
}

.contact-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-map {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  margin-top: 1px;
  padding: clamp(34px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.contact-map h2 {
  margin: 14px 0 20px;
  font-size: clamp(2.8rem, 5.6vw, 6.8rem);
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.map-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(250, 211, 0, 0.18), rgba(255, 255, 255, 0.88)),
    #f8f7f2;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 32px;
}

.map-river,
.map-road,
.map-pin,
.map-visual strong {
  position: absolute;
}

.map-river {
  inset: auto -12% 12% -10%;
  height: 160px;
  background: rgba(8, 42, 70, 0.1);
  border-radius: 55% 45% 0 0;
  transform: rotate(-7deg);
}

.map-road {
  background: rgba(17, 17, 17, 0.16);
  border-radius: 999px;
}

.map-road.primary {
  top: 45%;
  left: -8%;
  width: 118%;
  height: 16px;
  transform: rotate(-18deg);
}

.map-road.secondary {
  top: 22%;
  left: 30%;
  width: 12px;
  height: 108%;
  transform: rotate(28deg);
}

.map-pin {
  top: 43%;
  left: 52%;
  padding: 14px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px 999px 999px 6px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.22);
  font-weight: 900;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.map-visual strong {
  right: 28px;
  bottom: 24px;
  font-size: clamp(2rem, 4vw, 4.8rem);
  letter-spacing: -0.08em;
}

.baidu-map-shell {
  background: #f8f7f2;
}

.baidu-map {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.map-api-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(250, 211, 0, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(243, 243, 240, 0.94));
}

.map-api-placeholder strong {
  position: static;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.4vw, 5.8rem);
  letter-spacing: -0.08em;
}

.map-api-placeholder span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-map {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .footer {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .footer-links {
    position: static;
    justify-content: flex-start;
  }

  .footer-beian {
    position: static;
    flex: 0 0 100%;
    margin-top: -4px;
    text-align: left;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-visual {
    min-height: 320px;
  }
}

/* Final quality certificate insert: transparent, high-resolution certificate proof. */
.quality-certificate {
  margin: clamp(28px, 4vw, 44px) 0 0;
  padding: clamp(18px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 18% 12%, rgba(250, 211, 0, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}

.quality-certificate img {
  display: block;
  width: min(100%, 680px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 22px 26px rgba(17, 17, 17, 0.14));
}

.quality-certificate figcaption {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.94rem;
  line-height: 1.55;
}

.quality-certificate figcaption strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.quality-certificate figcaption .en {
  color: rgba(17, 17, 17, 0.48);
}

/* Curved color panels: each content block jumps upward as the reader scrolls. */
body {
  background:
    radial-gradient(circle at 18% 12%, rgba(197, 166, 119, 0.18), transparent 26%),
    radial-gradient(circle at 88% 38%, rgba(112, 135, 90, 0.14), transparent 24%),
    #ece9e2 !important;
}

main {
  overflow: hidden;
}

.fresh-band,
main > .section {
  --panel-bg: #fffdf6;
  --panel-radius: clamp(34px, 5vw, 76px);
  position: relative !important;
  z-index: 1;
  margin-top: -44px !important;
  padding-top: clamp(74px, 8vw, 132px) !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: var(--panel-radius) var(--panel-radius) 0 0;
  background:
    radial-gradient(circle at 88% 8%, var(--panel-glow, rgba(247, 213, 0, 0.2)), transparent 24%),
    var(--panel-bg) !important;
  box-shadow: 0 -28px 90px rgba(35, 28, 16, 0.1);
  opacity: 0.001;
  transform: translateY(82px) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 860ms cubic-bezier(0.18, 1.32, 0.24, 1),
    box-shadow 860ms ease;
  will-change: transform, opacity;
}

.fresh-band.is-panel-visible,
main > .section.is-panel-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 -18px 70px rgba(35, 28, 16, 0.08);
}

.fresh-band::before,
main > .section::before {
  position: absolute;
  inset: 0 0 auto;
  height: min(26vw, 260px);
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 48%),
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.94), transparent 34%);
  opacity: 0.7;
}

.fresh-band::after,
main > .section::after {
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(90vw, 1320px);
  height: clamp(48px, 7vw, 96px);
  pointer-events: none;
  content: "";
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 0;
  border-radius: var(--panel-radius) var(--panel-radius) 0 0;
  transform: translateX(-50%);
}

.fresh-band > *,
main > .section > * {
  position: relative;
  z-index: 1;
}

.fresh-band {
  --panel-bg: #fff8df;
  --panel-glow: rgba(247, 213, 0, 0.24);
}

.brand-section {
  --panel-bg: #fffdf6;
  --panel-glow: rgba(197, 166, 119, 0.2);
}

.products-section {
  --panel-bg: #f6f0e3;
  --panel-glow: rgba(112, 135, 90, 0.18);
}

.quality-section {
  --panel-bg: #f8fbff;
  --panel-glow: rgba(112, 159, 190, 0.18);
}

.awards-section {
  --panel-bg: #fffaf0;
  --panel-glow: rgba(247, 213, 0, 0.16);
}

.public-section {
  --panel-bg: #eef6ee;
  --panel-glow: rgba(112, 135, 90, 0.2);
  border-radius: var(--panel-radius) var(--panel-radius) var(--panel-radius) var(--panel-radius);
  margin-bottom: 56px;
}

.fresh-band:hover,
main > .section:hover {
  box-shadow: 0 -24px 90px rgba(35, 28, 16, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .fresh-band,
  main > .section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  .fresh-band,
  main > .section {
    --panel-radius: 30px;
    margin-top: -26px !important;
    padding-top: 64px !important;
    opacity: 1;
    transform: none;
  }
}

/* Final quality-report overrides: real PDF covers and filter panel. */
.report-card img {
  object-fit: contain !important;
  object-position: center top !important;
  background: #fff !important;
}

.report-card h3 {
  display: -webkit-box !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.report-filter {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 22px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.filter-field {
  display: grid;
  gap: 10px;
}

.filter-field label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.report-filter select,
.report-filter input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  background: #fffdf8;
  outline: none;
}

.report-filter select:focus,
.report-filter input:focus {
  border-color: rgba(17, 17, 17, 0.55);
}

.filter-reset {
  min-height: 48px;
  padding: 0 18px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.filter-count {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.report-empty {
  padding: clamp(28px, 4vw, 54px);
  color: var(--soft-ink);
  border: 1px solid var(--line);
  background: #fff;
}

.report-empty span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .report-filter {
    grid-template-columns: 1fr !important;
  }

  .filter-reset {
    width: 100%;
  }
}

/* Quality report filters. */
.report-filter {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 22px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.filter-field {
  display: grid;
  gap: 10px;
}

.filter-field label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.report-filter select,
.report-filter input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  background: #fffdf8;
  outline: none;
}

.report-filter select:focus,
.report-filter input:focus {
  border-color: rgba(17, 17, 17, 0.55);
}

.filter-reset {
  min-height: 48px;
  padding: 0 18px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.filter-count {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.report-empty {
  padding: clamp(28px, 4vw, 54px);
  color: var(--soft-ink);
  border: 1px solid var(--line);
  background: #fff;
}

.report-empty span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .report-filter {
    grid-template-columns: 1fr;
  }

  .filter-reset {
    width: 100%;
  }
}

/* Real quality-report assets: keep PDF covers readable, not cropped. */
.report-card img {
  object-fit: contain !important;
  object-position: center top !important;
  background: #fff !important;
}

.report-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.report-pdf-link {
  width: fit-content;
  margin-top: 28px;
}

.report-pdf-viewer {
  margin-top: 64px;
  border: 1px solid var(--line);
  background: #fff;
}

.report-pdf-viewer iframe {
  display: block;
  width: 100%;
  min-height: 82vh;
  border: 0;
  background: #fff;
}

@media (max-width: 760px) {
  .report-card {
    grid-template-rows: 360px auto !important;
  }

  .report-pdf-viewer iframe {
    min-height: 68vh;
  }
}

/* Hero banner final pass: full-bleed poster with pop-in headline. */
.hero {
  position: relative !important;
  display: block !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
  border-bottom: 1px solid var(--line) !important;
}

.hero-media {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  aspect-ratio: 3431 / 1543 !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform-origin: center;
  animation: heroPosterReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--ink) !important;
  pointer-events: none;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .proof-list {
  position: absolute;
  z-index: 2;
  margin: 0 !important;
  opacity: 0;
  transform-origin: center;
  animation: heroTextPop 0.86s cubic-bezier(0.2, 1.35, 0.34, 1) both;
}

.hero-copy .eyebrow {
  top: 9.5%;
  left: 7.2%;
  color: #332416;
  font-size: clamp(0.68rem, 0.95vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  animation-delay: 0.18s;
}

.hero-copy h1 {
  right: 7.6%;
  bottom: 10.5%;
  width: min(34vw, 520px);
  color: #2f2115;
  text-align: right;
  font-size: clamp(2.1rem, 4.2vw, 5.3rem);
  letter-spacing: -0.08em;
  line-height: 0.92;
  animation-delay: 0.34s;
}

.hero-copy h1 .zh,
.hero-copy h1 .en {
  display: block;
}

.hero-copy h1 .en {
  margin-top: 14px;
  color: #9f7650;
  font-size: clamp(0.68rem, 0.95vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-copy .lead,
.hero-copy .hero-actions {
  display: none !important;
}

.hero-copy .proof-list {
  left: 7.2%;
  bottom: 8%;
  display: flex !important;
  width: min(40vw, 560px);
  border: 0 !important;
  gap: 10px !important;
  animation-delay: 0.5s;
}

.hero-copy .proof-list li {
  flex: 0 1 auto;
  min-width: 0;
  padding: 10px 14px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  border: 1px solid rgba(179, 139, 98, 0.38) !important;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-copy .proof-list strong {
  color: #2f2115 !important;
  font-size: clamp(0.9rem, 1.1vw, 1.15rem) !important;
  letter-spacing: -0.04em;
}

.hero-copy .proof-list span {
  margin-top: 0;
  color: #785b3c !important;
  font-size: clamp(0.58rem, 0.78vw, 0.78rem) !important;
  line-height: 1.15;
}

@keyframes heroPosterReveal {
  0% {
    opacity: 0;
    transform: scale(1.055);
    filter: blur(10px) saturate(0.86);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes heroTextPop {
  0% {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.72) rotate(-2deg);
    filter: blur(8px);
  }
  62% {
    opacity: 1;
    transform: translate3d(0, -7px, 0) scale(1.08) rotate(0.6deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@media (max-width: 900px) {
  .hero-media {
    aspect-ratio: 16 / 9 !important;
  }

  .hero-copy .eyebrow,
  .hero-copy .proof-list {
    display: none !important;
  }

  .hero-copy h1 {
    right: 6vw;
    bottom: 8vw;
    width: min(58vw, 420px);
    font-size: clamp(1.55rem, 7vw, 3.4rem);
  }
}

/* Last override: make the fresh-steamed poster fully fill the hero banner. */
.hero {
  padding-inline: clamp(24px, 4.2vw, 72px) !important;
}

.hero-media {
  width: min(100%, 1440px) !important;
  margin-inline: auto !important;
  aspect-ratio: 2048 / 921 !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.hero-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 52% !important;
  background: #fff !important;
}

@media (max-width: 760px) {
  .hero {
    padding-inline: 16px !important;
  }

  .hero-media {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
  }
}

/* Final hero banner fill: expand the local poster to cover the full banner area. */
.hero {
  padding-inline: clamp(24px, 4.2vw, 72px) !important;
}

.hero-media {
  width: min(100%, 1440px) !important;
  margin-inline: auto !important;
  aspect-ratio: 2048 / 921 !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.hero-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 52% !important;
  background: #fff !important;
}

@media (max-width: 760px) {
  .hero {
    padding-inline: 16px !important;
  }

  .hero-media {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
  }

  .hero-media img {
    object-position: center 52% !important;
  }
}

/* Hero poster fix: use the local JPG artwork and scale it to the page without cropping. */
.hero {
  padding-inline: clamp(24px, 4.2vw, 72px) !important;
}

.hero-media {
  width: min(100%, 1440px) !important;
  margin-inline: auto !important;
  aspect-ratio: 3308 / 1543 !important;
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.hero-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #fff !important;
}

@media (max-width: 760px) {
  .hero {
    padding-inline: 16px !important;
  }

  .hero-media {
    width: 100% !important;
    aspect-ratio: 3308 / 1543 !important;
  }
}

/* Minimal premium redesign inspired by restrained product-brand sites. */
:root {
  --yellow: #e6d500;
  --yellow-deep: #c8b900;
  --ink: #0b0b0b;
  --soft-ink: #30302d;
  --muted: #7b7a72;
  --paper: #fbfaf4;
  --cream: #f3f0e8;
  --green: #61705a;
  --line: rgba(11, 11, 11, 0.1);
  --shadow: none;
}

body {
  background: var(--paper);
  color: var(--ink);
  letter-spacing: -0.018em;
}

body::before {
  display: none;
}

.topbar {
  min-height: 86px;
  padding: 0 44px;
  background: rgba(251, 250, 244, 0.92);
  border-bottom: 1px solid var(--line);
}

.brand {
  gap: 12px;
  letter-spacing: -0.04em;
}

.brand-cn {
  font-size: 1.3rem;
}

.brand-en {
  color: var(--soft-ink);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.nav {
  gap: 30px;
  font-size: 0.9rem;
}

.nav a {
  padding: 32px 0;
}

.nav a::after {
  bottom: 25px;
  height: 1px;
  background: var(--ink);
}

.nav-cta,
.admin-link,
.button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  box-shadow: none;
}

.admin-link {
  background: transparent;
  color: var(--ink);
}

.nav-cta,
.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.nav-cta:hover,
.admin-link:hover,
.button:hover,
.carousel-controls button:hover {
  box-shadow: none;
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 4vw;
  min-height: calc(100vh - 86px);
  padding: 64px 44px 44px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  display: none;
}

.hero-media {
  position: relative;
  inset: auto;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  min-height: 620px;
  overflow: hidden;
  background: #f0eee6;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  width: auto;
  min-height: 620px;
  margin: 0;
  padding: 34px 0 24px;
  color: var(--ink);
}

.eyebrow,
.section-kicker,
.series {
  color: var(--green);
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(4.2rem, 6.35vw, 6.9rem);
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.hero h1 .en {
  width: min(560px, 100%);
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.lead {
  width: min(620px, 100%);
  margin-top: 34px;
  color: var(--soft-ink);
  font-size: 1.12rem;
  line-height: 1.9;
}

.hero .lead.en {
  color: var(--muted);
  font-size: 0.94rem;
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink);
}

.proof-list {
  gap: 0;
  margin-top: auto;
  background: transparent;
  border: 1px solid var(--line);
  border-width: 1px 0 0;
}

.proof-list li {
  min-height: 124px;
  padding: 24px 22px;
  background: transparent;
  border-right: 1px solid var(--line);
  backdrop-filter: none;
}

.proof-list li:last-child {
  border-right: 0;
}

.proof-list strong {
  color: var(--ink);
  font-size: 2.55rem;
  letter-spacing: -0.06em;
}

.proof-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.fresh-band,
.section {
  padding: 126px 7vw;
}

.fresh-band {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  background: var(--ink);
  color: var(--paper);
}

.fresh-copy h2,
.section-title h2,
.section-head h2,
.quality-copy h2 {
  font-size: clamp(3rem, 5vw, 5.9rem);
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.fresh-points {
  gap: 0;
  background: rgba(251, 250, 244, 0.18);
}

.fresh-points article {
  min-height: 360px;
  padding: 34px;
  background: #101010;
}

.fresh-points span {
  color: var(--paper);
}

.fresh-points h3 {
  margin-top: 104px;
  font-size: 1.58rem;
  letter-spacing: -0.04em;
}

.brand-section,
.products-section,
.awards-section,
.public-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand-grid,
.section-head {
  gap: 7vw;
}

.brand-story,
.section-head p,
.quality-copy p {
  font-size: 1.04rem;
}

.brand-facts,
.quality-stats {
  gap: 0;
  background: transparent;
  border-color: var(--line);
}

.brand-facts div,
.quality-stats div {
  background: transparent;
  border-right: 1px solid var(--line);
}

.brand-facts div:last-child,
.quality-stats div:last-child {
  border-right: 0;
}

.brand-facts strong,
.quality-stats strong {
  color: currentColor;
  font-size: clamp(2.1rem, 3vw, 3.45rem);
  letter-spacing: -0.07em;
}

.product-grid {
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product,
.report-card,
.award-card,
.public-item,
.public-item.carousel-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product {
  background: var(--paper);
}

.product.feature {
  background: #e4d400;
}

.product img {
  height: 360px;
  padding: 24px;
  background: #f2efe7;
}

.product.feature img {
  min-height: 520px;
  background: #f4f0e6;
}

.product-copy {
  padding: 32px;
}

.product h3,
.public-item h3,
.report-card h3 {
  letter-spacing: -0.05em;
}

.quality-section {
  background: var(--ink);
}

.quality-layout {
  align-items: start;
}

.quality-stats {
  border-color: rgba(251, 250, 244, 0.18);
}

.quality-stats div {
  border-color: rgba(251, 250, 244, 0.18);
}

.quality-stats span,
.quality-copy p,
.quality-copy p.en,
.fresh-copy h2 .en,
.fresh-points h4,
.fresh-points p,
.fresh-points p.en {
  color: rgba(251, 250, 244, 0.62);
}

.carousel-top {
  margin-bottom: 22px;
  padding-top: 2px;
}

.carousel-controls button {
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 400;
}

.quality-section .carousel-controls button {
  color: var(--paper);
}

.carousel-track {
  gap: 1px;
  padding-bottom: 20px;
}

.report-card,
.public-item.carousel-card {
  background: var(--paper);
}

.report-card {
  grid-template-rows: 390px auto;
}

.report-card img,
.public-item img,
.public-item.large img {
  background: #f2efe7;
}

.report-card div,
.award-card,
.public-item div {
  padding: 30px;
}

.award-card {
  min-height: 460px;
  background: #f6f4ee;
}

.award-card h3 {
  color: var(--ink);
  font-size: 4rem;
  letter-spacing: -0.08em;
}

.award-card li::before {
  background: var(--ink);
}

.public-item img {
  height: 360px;
  filter: saturate(0.85);
}

.footer {
  padding: 44px 7vw;
  color: var(--paper);
  background: var(--ink);
}

@media (max-width: 1120px) {
  .topbar {
    padding: 18px 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 24px;
  }

  .hero-copy,
  .hero-media {
    grid-column: 1;
  }

  .hero-copy {
    grid-row: 1;
    min-height: auto;
  }

  .hero-media {
    grid-row: 2;
    min-height: 520px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 13vw, 7rem);
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 14px 18px;
  }

  .hero {
    min-height: auto;
    padding: 28px 18px 44px;
  }

  .hero-copy {
    width: 100%;
    min-height: auto;
    margin: 0;
  }

  .hero-media {
    min-height: 420px;
    border-radius: 18px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 18vw, 5.2rem);
  }

  .fresh-band,
  .section {
    padding: 86px 20px;
  }

  .fresh-points article {
    min-height: 280px;
  }

  .product img,
  .product.feature img,
  .report-card img,
  .public-item img {
    height: 300px;
    min-height: auto;
  }
}

/* Final overrides for comment revisions. Keep this block last. */
.top-actions {
  display: none !important;
}

.hero {
  display: block !important;
  min-height: auto !important;
  padding: 38px 44px 52px !important;
  background: var(--paper) !important;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: none !important;
}

.hero-media {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  min-height: auto !important;
  aspect-ratio: 24 / 10;
  overflow: hidden;
  background: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center !important;
}

.section-title h2 .en,
.section-head h2 .en,
.quality-copy h2 .en,
.fresh-copy h2 .en,
.detail-hero h1 span {
  display: block !important;
  margin-top: 18px !important;
  color: var(--muted) !important;
  font-size: clamp(1rem, 1.35vw, 1.25rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.45 !important;
}

.fresh-band {
  grid-template-columns: 0.9fr 1.1fr !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  border-bottom: 1px solid var(--line);
}

.fresh-copy h2,
.section-title h2,
.section-head h2,
.quality-copy h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.6rem) !important;
  line-height: 1.05 !important;
}

.fresh-points {
  background: var(--line) !important;
  border: 1px solid var(--line);
}

.fresh-points article {
  min-height: 300px !important;
  background: #fff !important;
}

.fresh-points span,
.fresh-points h3,
.fresh-points p {
  color: var(--ink) !important;
}

.fresh-points h4,
.fresh-points p.en {
  color: var(--muted) !important;
}

#productSeriesTrack {
  grid-auto-columns: minmax(360px, 30%) !important;
}

.series-card {
  display: block;
  background: #fff !important;
  border: 1px solid var(--line) !important;
}

.series-card img {
  height: 360px !important;
  padding: 30px !important;
  object-fit: contain !important;
  background: #fff !important;
}

.series-card .product-copy {
  min-height: 250px;
  border-top: 1px solid var(--line);
}

.series-card h3 {
  font-size: 1.38rem;
}

.quality-section {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border-bottom: 1px solid var(--line);
}

.quality-copy p,
.quality-copy p.en,
.quality-stats span,
.quality-section .carousel-top p {
  color: var(--muted) !important;
}

.quality-stats,
.quality-stats div {
  border-color: var(--line) !important;
}

.quality-stats {
  background: transparent !important;
}

.quality-stats strong,
.quality-section .carousel-controls button {
  color: var(--ink) !important;
}

#qualityReportTrack {
  grid-auto-columns: minmax(320px, 28%) !important;
}

.report-card {
  grid-template-rows: 410px auto !important;
  background: #fff !important;
  border: 1px solid var(--line) !important;
  transform-origin: center;
}

.report-wall.is-visible .report-card {
  animation: report-settle 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.report-wall.is-visible .report-card:nth-child(2) {
  animation-delay: 80ms;
}

.report-wall.is-visible .report-card:nth-child(3) {
  animation-delay: 160ms;
}

.report-wall.is-visible .report-card:nth-child(4) {
  animation-delay: 240ms;
}

.report-wall.is-visible .report-card:nth-child(5) {
  animation-delay: 320ms;
}

.report-card img {
  height: 100% !important;
  padding: 18px !important;
  object-fit: cover !important;
  background: #fff !important;
}

.report-card div {
  min-height: 190px;
}

.report-card h4,
.report-card p:not(.card-meta) {
  display: none !important;
}

.report-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.report-card span.en {
  color: var(--ink);
  font-weight: 700;
}

@keyframes report-settle {
  from {
    opacity: 0;
    transform: translateX(120px) translateY(26px) rotate(5deg) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0) scale(1);
  }
}

.award-card {
  display: grid !important;
  grid-template-rows: auto auto 1fr auto;
  min-height: 430px !important;
  background: #fff !important;
  border: 1px solid var(--line) !important;
}

.award-card p {
  margin: -6px 0 20px;
  color: var(--muted);
}

.award-card ul {
  align-content: start;
}

.award-card span {
  display: block;
  align-self: end;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.public-item.carousel-card,
.series-card,
.detail-card {
  background: #fff !important;
  border: 1px solid var(--line) !important;
}

.public-item.carousel-card:hover,
.series-card:hover,
.report-card:hover,
.detail-card:hover {
  background: #f8f6ef !important;
}

.detail-page {
  background: var(--paper);
}

.detail-nav {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 28px 44px;
  background: rgba(251, 250, 244, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  font-weight: 700;
}

.detail-shell {
  padding: 72px 7vw 120px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 7vw;
  align-items: center;
}

.detail-hero.product-detail {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 0.92fr);
}

.detail-hero img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.detail-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6rem);
  letter-spacing: -0.075em;
  line-height: 1;
}

.detail-hero p {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: 1.05rem;
  line-height: 1.9;
}

.detail-hero .en {
  color: var(--muted);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 76px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-card {
  display: block;
  min-height: 520px;
  padding: 28px;
}

.detail-card img {
  height: 280px;
  object-fit: contain;
  background: #fff;
}

.detail-card p,
.tag-row span {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.detail-card h2 {
  margin: 28px 0 12px;
  font-size: 1.55rem;
}

.detail-card span,
.detail-note {
  color: var(--muted);
  line-height: 1.7;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag-row span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.detail-note {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1120px) {
  #productSeriesTrack,
  #qualityReportTrack {
    grid-auto-columns: minmax(320px, 58%) !important;
  }

  .detail-hero,
  .detail-hero.product-detail,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 20px 16px 34px !important;
  }

  .hero-media {
    aspect-ratio: 1.35;
  }

  #productSeriesTrack,
  #qualityReportTrack {
    grid-auto-columns: minmax(280px, 88%) !important;
  }

  .detail-nav {
    padding: 18px 20px;
  }

  .detail-shell {
    padding: 48px 20px 88px;
  }
}

/* Current annotation overrides: hero poster fills the full banner area. */
.hero-media {
  width: min(100%, 1440px) !important;
  margin-inline: auto !important;
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
  aspect-ratio: 2048 / 921 !important;
  overflow: hidden !important;
}

.hero-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 52% !important;
  background: #fff !important;
}

.award-card {
  grid-template-rows: auto auto minmax(0, 1fr) !important;
  height: min(62vh, 560px) !important;
  min-height: 430px !important;
  overflow: hidden !important;
}

.award-card .award-scroll {
  min-height: 0;
  overflow-y: auto;
  padding-right: 18px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(8, 42, 70, 0.28) transparent;
}

.award-card .award-scroll::-webkit-scrollbar {
  width: 5px;
}

.award-card .award-scroll::-webkit-scrollbar-thumb {
  background: rgba(8, 42, 70, 0.22);
  border-radius: 999px;
}

.award-card ul {
  gap: 18px !important;
  padding-bottom: 24px;
}

.award-card span {
  display: none !important;
}

.detail-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-metrics div {
  min-height: 170px;
  padding: 30px;
  background: #fff;
}

.detail-metrics strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.detail-metrics span,
.detail-metrics em {
  display: block;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.detail-article {
  display: grid;
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-article article {
  padding: clamp(32px, 5vw, 72px);
  background: #fff;
}

.detail-article h2 {
  max-width: 900px;
  margin: 12px 0 24px;
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.detail-article h2 span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.detail-article p {
  max-width: 920px;
  color: var(--soft-ink);
  font-size: 1.08rem;
  line-height: 1.95;
}

.detail-article .en {
  color: var(--muted);
}

@media (max-width: 980px) {
  .detail-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-media {
    aspect-ratio: 16 / 9 !important;
  }

  .award-card {
    height: 520px !important;
  }

  .detail-metrics {
    grid-template-columns: 1fr;
  }
}

/* Final quality-report overrides: real PDF covers and filter panel. */
.report-card img {
  object-fit: contain !important;
  object-position: center top !important;
  background: #fff !important;
}

.report-card h3 {
  display: -webkit-box !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.report-filter {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 22px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.filter-field {
  display: grid;
  gap: 10px;
}

.filter-field label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.report-filter select,
.report-filter input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  background: #fffdf8;
  outline: none;
}

.report-filter select:focus,
.report-filter input:focus {
  border-color: rgba(17, 17, 17, 0.55);
}

.filter-reset {
  min-height: 48px;
  padding: 0 18px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.filter-count {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.report-empty {
  padding: clamp(28px, 4vw, 54px);
  color: var(--soft-ink);
  border: 1px solid var(--line);
  background: #fff;
}

.report-empty span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .report-filter {
    grid-template-columns: 1fr !important;
  }

  .filter-reset {
    width: 100%;
  }
}

/* Final effective hero banner: full-bleed poster and animated copy. */
.hero {
  position: relative !important;
  display: block !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
  border-bottom: 1px solid var(--line) !important;
}

.hero-media {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  aspect-ratio: 3431 / 1543 !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform-origin: center;
  animation: heroPosterReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--ink) !important;
  pointer-events: none;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .proof-list {
  position: absolute;
  z-index: 2;
  margin: 0 !important;
  opacity: 0;
  transform-origin: center;
  animation: heroTextPop 0.86s cubic-bezier(0.2, 1.35, 0.34, 1) both;
}

.hero-copy .eyebrow {
  top: 9.5%;
  left: 7.2%;
  color: #332416;
  font-size: clamp(0.68rem, 0.95vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  animation-delay: 0.18s;
}

.hero-copy h1 {
  right: 7.6%;
  bottom: 10.5%;
  width: min(34vw, 520px);
  color: #2f2115;
  text-align: right;
  font-size: clamp(2.1rem, 4.2vw, 5.3rem);
  letter-spacing: -0.08em;
  line-height: 0.92;
  animation-delay: 0.34s;
}

.hero-copy h1 .zh,
.hero-copy h1 .en {
  display: block;
}

.hero-copy h1 .en {
  margin-top: 14px;
  color: #9f7650;
  font-size: clamp(0.68rem, 0.95vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-copy .lead,
.hero-copy .hero-actions {
  display: none !important;
}

.hero-copy .proof-list {
  left: 7.2%;
  bottom: 8%;
  display: flex !important;
  width: min(40vw, 560px);
  border: 0 !important;
  gap: 10px !important;
  animation-delay: 0.5s;
}

.hero-copy .proof-list li {
  flex: 0 1 auto;
  min-width: 0;
  padding: 10px 14px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  border: 1px solid rgba(179, 139, 98, 0.38) !important;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-copy .proof-list strong {
  color: #2f2115 !important;
  font-size: clamp(0.9rem, 1.1vw, 1.15rem) !important;
  letter-spacing: -0.04em;
}

.hero-copy .proof-list span {
  margin-top: 0;
  color: #785b3c !important;
  font-size: clamp(0.58rem, 0.78vw, 0.78rem) !important;
  line-height: 1.15;
}

@media (max-width: 900px) {
  .hero-media {
    aspect-ratio: 16 / 9 !important;
  }

  .hero-copy .eyebrow,
  .hero-copy .proof-list {
    display: none !important;
  }

  .hero-copy h1 {
    right: 6vw;
    bottom: 8vw;
    width: min(58vw, 420px);
    font-size: clamp(1.55rem, 7vw, 3.4rem);
  }
}

/* Final curved-panel override: round color blocks with scroll jump-up motion. */
body {
  background:
    radial-gradient(circle at 18% 12%, rgba(197, 166, 119, 0.18), transparent 26%),
    radial-gradient(circle at 88% 38%, rgba(112, 135, 90, 0.14), transparent 24%),
    #ece9e2 !important;
}

main {
  overflow: hidden;
}

.fresh-band,
main > .section {
  --panel-bg: #fffdf6;
  --panel-glow: rgba(247, 213, 0, 0.18);
  --panel-radius: clamp(34px, 5vw, 76px);
  position: relative !important;
  z-index: 1;
  margin-top: -44px !important;
  padding-top: clamp(74px, 8vw, 132px) !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: var(--panel-radius) var(--panel-radius) 0 0 !important;
  background:
    radial-gradient(circle at 88% 8%, var(--panel-glow), transparent 24%),
    var(--panel-bg) !important;
  box-shadow: 0 -28px 90px rgba(35, 28, 16, 0.1);
  opacity: 0.001;
  transform: translateY(82px) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 860ms cubic-bezier(0.18, 1.32, 0.24, 1),
    box-shadow 860ms ease;
  will-change: transform, opacity;
}

.fresh-band.is-panel-visible,
main > .section.is-panel-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 -18px 70px rgba(35, 28, 16, 0.08);
}

.fresh-band::before,
main > .section::before {
  position: absolute;
  inset: 0 0 auto;
  height: min(26vw, 260px);
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 48%),
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.94), transparent 34%);
  opacity: 0.7;
}

.fresh-band::after,
main > .section::after {
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(90vw, 1320px);
  height: clamp(48px, 7vw, 96px);
  pointer-events: none;
  content: "";
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 0;
  border-radius: var(--panel-radius) var(--panel-radius) 0 0;
  transform: translateX(-50%);
}

.fresh-band > *,
main > .section > * {
  position: relative;
  z-index: 1;
}

.fresh-band {
  --panel-bg: #fff8df;
  --panel-glow: rgba(247, 213, 0, 0.24);
}

.brand-section {
  --panel-bg: #fffdf6;
  --panel-glow: rgba(197, 166, 119, 0.2);
}

.products-section {
  --panel-bg: #f6f0e3;
  --panel-glow: rgba(112, 135, 90, 0.18);
}

.quality-section {
  --panel-bg: #f8fbff;
  --panel-glow: rgba(112, 159, 190, 0.18);
}

.awards-section {
  --panel-bg: #fffaf0;
  --panel-glow: rgba(247, 213, 0, 0.16);
}

.public-section {
  --panel-bg: #eef6ee;
  --panel-glow: rgba(112, 135, 90, 0.2);
  border-radius: var(--panel-radius) var(--panel-radius) var(--panel-radius) var(--panel-radius) !important;
  margin-bottom: 56px;
}

.fresh-band:hover,
main > .section:hover {
  box-shadow: 0 -24px 90px rgba(35, 28, 16, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .fresh-band,
  main > .section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  .fresh-band,
  main > .section {
    --panel-radius: 30px;
    margin-top: -26px !important;
    padding-top: 64px !important;
    opacity: 1;
    transform: none;
  }
}

/* True final GAOYEA brand-color override: VI yellow/black/cream, no temporary green accents. */
:root {
  --yellow: #fad300;
  --yellow-deep: #d0a900;
  --brand-yellow: #fad300;
  --brand-bright-yellow: #ffe800;
  --brand-black: #111111;
  --brand-warm-white: #f0f0f0;
  --brand-cream: #fff9df;
  --brand-brown: #3a2a1d;
  --green: var(--brand-black);
}

body {
  background:
    radial-gradient(circle at 8% 42%, rgba(250, 211, 0, 0.12), transparent 22%),
    linear-gradient(180deg, #fffdf6 0%, #f7f5ed 100%) !important;
}

.eyebrow,
.section-kicker,
.series,
.product .series,
.series-card .series,
.detail-meta,
.filter-field label,
.report-card .meta,
.award-card .award-count,
.public-item .project-kicker {
  color: var(--brand-black) !important;
}

.product .series,
.series-card .series {
  letter-spacing: 0.045em;
}

.product .series::before,
.series-card .series::before,
.section-kicker::before,
.eyebrow::before {
  background: var(--brand-yellow) !important;
}

.product h3,
.series-card h3,
.report-card h3,
.award-card h3,
.public-item h3 {
  color: var(--brand-black) !important;
}

.product:hover,
.series-card:hover,
.report-card:hover,
.award-card:hover,
.public-item:hover {
  border-color: rgba(250, 211, 0, 0.72) !important;
  box-shadow: 0 22px 58px rgba(58, 42, 29, 0.1) !important;
}

.fresh-band,
main > .section {
  --panel-glow: rgba(250, 211, 0, 0.16) !important;
}

.products-section {
  --panel-bg: #fffaf0 !important;
  --panel-glow: rgba(250, 211, 0, 0.18) !important;
}

.public-section {
  --panel-bg: #fff9df !important;
  --panel-glow: rgba(250, 211, 0, 0.16) !important;
}

.quality-section {
  --panel-bg: #f7f7f2 !important;
  --panel-glow: rgba(250, 211, 0, 0.14) !important;
}

.filter-field select:focus,
.filter-field input:focus,
.report-filter-reset:focus-visible,
.carousel-btn:focus-visible {
  border-color: var(--brand-yellow) !important;
  box-shadow: 0 0 0 4px rgba(250, 211, 0, 0.18) !important;
}

/* True final module-surface pass: remove decorative arcs and use near-white gray layering. */
body {
  background: linear-gradient(180deg, #fbfbfa 0%, #f5f5f3 100%) !important;
}

.fresh-band,
main > .section {
  --panel-bg: #f7f7f5 !important;
  --panel-glow: rgba(0, 0, 0, 0.045) !important;
  background:
    linear-gradient(135deg, #fbfbfa 0%, #f4f5f4 52%, #eeeeec 100%) !important;
  box-shadow: 0 -20px 70px rgba(17, 17, 17, 0.06) !important;
}

.fresh-band::after,
main > .section::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
}

.fresh-band::before,
main > .section::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(236, 237, 236, 0.34) 58%, rgba(255, 255, 255, 0) 100%) !important;
  opacity: 0.52 !important;
}

.fresh-band.is-panel-visible,
main > .section.is-panel-visible,
.fresh-band:hover,
main > .section:hover {
  box-shadow: 0 -22px 78px rgba(17, 17, 17, 0.075) !important;
}

.fresh-points,
.quality-layout,
.section-head,
.brand-facts,
.report-filter {
  background: rgba(255, 255, 255, 0.74) !important;
  border-color: rgba(17, 17, 17, 0.1) !important;
}

.products-section,
.quality-section,
.awards-section,
.public-section {
  --panel-bg: #f7f7f5 !important;
  --panel-glow: rgba(0, 0, 0, 0.045) !important;
}

/* Final quality certificate insert: transparent, high-resolution certificate proof. */
.quality-certificate {
  margin: clamp(28px, 4vw, 44px) 0 0 !important;
  padding: clamp(18px, 2.4vw, 30px) !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(250, 211, 0, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(17, 17, 17, 0.1) !important;
  border-radius: 28px !important;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08) !important;
}

.quality-certificate img {
  display: block !important;
  width: min(100%, 680px) !important;
  height: auto !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 22px 26px rgba(17, 17, 17, 0.14)) !important;
}

.quality-certificate figcaption {
  display: grid !important;
  gap: 6px !important;
  margin-top: 18px !important;
  color: rgba(17, 17, 17, 0.62) !important;
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
}

.quality-certificate figcaption strong {
  color: var(--ink) !important;
  font-size: 1.02rem !important;
}

.quality-certificate figcaption .en {
  color: rgba(17, 17, 17, 0.48) !important;
}
