.product-card > img.has-product-detail {
  cursor: zoom-in;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 79 / 100;
  object-fit: cover;
  object-position: center top;
  background: #f7f3eb;
}

.product-actions .product-detail-trigger {
  background: #b89b63;
  color: #071c18;
  grid-column: 1 / -1;
  font-weight: 700;
}

.detail-open {
  overflow: hidden;
}

.product-detail-modal {
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
  position: fixed;
  inset: 0;
}

.product-detail-modal.open {
  visibility: visible;
  opacity: 1;
}

.product-detail-backdrop {
  background: #061612d9;
  position: absolute;
  inset: 0;
}

.product-detail-panel {
  background: #f7f3eb;
  width: min(920px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 25px 80px #0008;
}

.product-detail-close {
  z-index: 3;
  color: #fff;
  background: #071c18;
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
  position: sticky;
  top: 18px;
  float: right;
  margin: 18px 18px -62px 0;
}

.product-detail-header {
  text-align: center;
  padding: 62px 30px 34px;
}

.product-detail-header small {
  color: #92733c;
  letter-spacing: 0.13em;
  font-size: 10px;
}

.product-detail-header h2 {
  margin: 13px 0 8px;
  font-size: 44px;
}

.product-detail-header p {
  color: #676b66;
  margin: 0;
  font-size: 12px;
}

.product-detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 790px;
  margin: 0 auto 24px;
  background: #d8d0c0;
  border: 1px solid #d8d0c0;
}

.product-detail-facts > div {
  background: #fffdf8;
  padding: 24px;
}

.product-detail-facts span {
  color: #92733c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.product-detail-facts p {
  color: #38413d;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

.product-detail-note {
  color: #777;
  max-width: 790px;
  margin: 0 auto 24px;
  padding: 0 20px;
  text-align: center;
  font-size: 11px;
}

.product-detail-images {
  background: #e3ead1;
  max-width: 790px;
  margin: 0 auto 50px;
}

.product-detail-images img {
  height: auto;
}

.product-detail-images img + img {
  border-top: 1px solid #cad3b8;
}

@media (max-width: 560px) {
  .product-detail-panel {
    width: 100%;
    max-height: 100vh;
    top: 0;
  }

  .product-detail-header {
    padding: 55px 22px 28px;
  }

  .product-detail-header h2 {
    font-size: 36px;
  }

  .product-detail-close {
    top: 12px;
    margin: 12px 12px -56px 0;
  }

  .product-detail-facts {
    grid-template-columns: 1fr;
    margin: 0 16px 22px;
  }

  .product-detail-facts > div {
    padding: 18px;
  }

  .product-detail-images {
    margin-bottom: 0;
  }
}

/* 2026-07-23 approved homepage hero and six-stat system */
.home-hero {
  min-height: 780px;
  background: #071c18;
}

.home-hero > img {
  left: auto;
  width: 56%;
  object-position: center;
  filter: saturate(.9) contrast(1.05);
}

.home-hero .hero-shade {
  background:
    linear-gradient(90deg, #071c18 0%, #071c18f7 38%, #071c18c9 51%, #071c1838 75%, #071c1812 100%),
    linear-gradient(0deg, #061713cc 0%, transparent 32%);
}

.hero-content {
  max-width: 760px;
  padding: 72px 7vw 190px;
}

.hero-content > small {
  display: inline-block;
  color: #e2c987;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .28em;
}

.hero-content h1 {
  margin: 22px 0 18px;
  font-family: "Noto Serif CJK TC", "Source Han Serif TC", "Songti TC", "STSong", "PMingLiU", serif;
  font-size: clamp(72px, 6.8vw, 108px);
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.02;
  text-shadow: 0 4px 24px #0007;
}

.hero-photo-note {
  z-index: 4;
  position: absolute;
  right: 5.5vw;
  bottom: 180px;
  color: #f2e4bd;
  border-left: 2px solid #c6a86a;
  padding: 7px 0 7px 13px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-shadow: 0 2px 12px #000;
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #e0c681;
  border: 1px solid #d8bd7275;
  border-radius: 50%;
}

.proof-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1100px) {
  .home-hero > img {
    width: 62%;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .hero-photo-note {
    bottom: 300px;
  }
}

@media (max-width: 560px) {
  .home-hero {
    min-height: 0;
    padding-bottom: 1px;
  }

  .home-hero > img {
    top: 0;
    width: 100%;
    height: 57%;
    object-position: 68% center;
    opacity: .82;
  }

  .home-hero .hero-shade {
    background:
      linear-gradient(180deg, #071c18e0 0%, #071c1899 34%, #071c18e8 62%, #071c18 78%),
      linear-gradient(90deg, #071c18e8, transparent 78%);
  }

  .hero-content {
    padding: 44px 6vw 24px;
  }

  .hero-content > small {
    font-size: 12px;
  }

  .hero-content h1 {
    margin: 18px 0 16px;
    font-size: clamp(54px, 16vw, 66px);
    font-weight: 800;
  }

  .hero-content h2 {
    font-size: 19px;
    line-height: 1.55;
  }

  .hero-content p {
    max-width: 92%;
    font-size: 13px;
  }

  .hero-photo-note {
    display: none;
  }

  .proof-icon {
    width: 28px;
    height: 28px;
  }
}

/* 2026-07 readability, heritage and researched catalogue refinement */
nav,
.topbar,
.cart,
.lang {
  font-size: 13px;
}

.gateway-panel p,
.hero-content p,
.heritage-copy > p,
.oem-feature > div > p,
.hk-contact > div > p,
.page-hero p,
.about-intro p,
.oem-intro > p,
.film-section p,
.contact-form > div > p,
.enquiry-section > div > p {
  font-size: 14px;
}

.gateway-panel span,
.tile small,
.text-link,
.category-note a,
.plans article > a {
  font-size: 12px;
}

.timeline {
  margin: 38px 0;
}

.timeline > div {
  grid-template-columns: 62px 12px 1fr;
  align-items: stretch;
  min-height: 116px;
}

.timeline > div > span::before {
  top: 9px;
}

.timeline p {
  padding: 0 0 25px;
  font-size: 12px;
  line-height: 1.75;
}

.timeline p strong,
.timeline p em {
  display: block;
}

.timeline p strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 14px;
}

.timeline p em {
  color: var(--muted);
  font-style: normal;
}

.category-tabs button {
  font-size: 12px;
}

.product-meta small,
.product-meta b,
.product-card label,
.price span,
.product-actions button,
.product-actions a {
  font-size: 11px;
}

.scene,
.plans li,
.quality-list p,
.footer-grid p,
.footer-grid a,
.capability-list span,
.contact-options span,
.cart-layout aside p {
  font-size: 12px;
}

.product-card p,
.plans p,
.category-note p,
.quality-list b,
.footer-grid b,
.enquiry-form label {
  font-size: 12px;
}

.mini-steps span {
  font-size: 12px;
}

.footer-bottom {
  font-size: 11px;
}

.researched-product-card > img {
  height: 220px;
  object-fit: cover;
}

.researched-product-card .product-actions {
  grid-template-columns: 1fr;
}

.researched-product-card .product-actions a {
  min-height: 46px;
  background: var(--wine);
}

@media (max-width: 820px) and (min-width: 561px) {
}

@media (max-width: 560px) {
  nav,
  .topbar,
  .cart,
  .lang {
    font-size: 12px;
  }

  .home-hero {
    min-height: 790px;
  }

  .timeline > div {
    grid-template-columns: 54px 10px 1fr;
    gap: 12px;
    min-height: 150px;
  }

  .timeline p {
    font-size: 12px;
  }

  .product-card p {
    min-height: auto;
    font-size: 13px;
  }

  .footer-grid p,
  .footer-grid a,
  .footer-grid b {
    font-size: 12px;
  }
}

/* 2026-07-23: final responsive correction for the six company statistics.
   This stays after the older readability rules so they cannot collapse the
   desktop ledger back to the legacy 144px-wide four-stat component. */
@media (min-width: 1101px) {
}

@media (min-width: 561px) and (max-width: 1100px) {
}

@media (max-width: 560px) {
}

@media (min-width: 1101px) {
  .home-hero {
    min-height: 720px;
  }
}

@media (min-width: 561px) and (max-width: 1100px) {
}

@media (max-width: 560px) {
  .home-hero {
    height: auto;
    min-height: 0;
    padding-bottom: 22px;
  }

  .home-hero .hero-content {
    padding-bottom: 42px;
  }
}

/* Canonical six-stat component */
.home-hero .company-stats {
  z-index: 5;
  position: absolute;
  right: 5vw;
  bottom: 22px;
  left: 5vw;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  box-sizing: border-box;
  width: auto;
  min-width: 0;
  min-height: 132px;
  margin: 0;
  padding: 0;
  color: #fff;
  background: linear-gradient(90deg, #071f1ad9, #0b2c24a8 52%, #071f1acb);
  border-top: 1px solid #dbc896c7;
  border-bottom: 1px solid #dbc89680;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(5px);
}

.home-hero .company-stat {
  display: grid;
  grid-template-rows: 34px 43px 30px;
  place-items: center;
  align-content: center;
  box-sizing: border-box;
  width: auto;
  min-width: 0;
  min-height: 130px;
  margin: 0;
  padding: 11px 8px;
  text-align: center;
  border: 0;
  border-right: 1px solid #ffffff2b;
}

.home-hero .company-stat:last-child {
  border-right: 0;
}

.home-hero .company-stat-icon {
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  color: #e0c681;
  border: 1px solid #d8bd7275;
  border-radius: 50%;
}

.home-hero .company-stat-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero .company-stat b {
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-width: 0;
  color: #e8cf8e;
  font: 700 clamp(27px, 2.1vw, 34px)/1 Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.home-hero .company-stat b small {
  margin-left: 3px;
  font: 700 15px/1 var(--sans);
  letter-spacing: 0;
}

.home-hero .company-stat > span:last-child {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 30px;
  padding: 0 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

@media (min-width: 561px) and (max-width: 1100px) {
  .home-hero .company-stats {
    position: relative;
    inset: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 10vw);
    margin: 0 5vw 24px;
  }

  .home-hero .company-stat:nth-child(3n) {
    border-right: 0;
  }

  .home-hero .company-stat:nth-child(-n + 3) {
    border-bottom: 1px solid #ffffff2b;
  }
}

@media (max-width: 560px) {
  .home-hero .company-stats {
    position: relative;
    inset: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 40px);
    min-height: 0;
    margin: 0 20px;
    background: linear-gradient(180deg, #0a2b24d9, #061914f2);
    backdrop-filter: blur(6px);
  }

  .home-hero .company-stat,
  .home-hero .company-stat:last-child {
    grid-template-rows: 32px 43px 32px;
    grid-column: auto;
    min-height: 122px;
    padding: 10px 6px;
    border-right: 1px solid #ffffff2b;
    border-bottom: 1px solid #ffffff2b;
  }

  .home-hero .company-stat:nth-child(even) {
    border-right: 0;
  }

  .home-hero .company-stat:nth-child(n + 5) {
    border-bottom: 0;
  }

  .home-hero .company-stat b {
    font-size: clamp(27px, 8.3vw, 34px);
  }

  .home-hero .company-stat > span:last-child {
    font-size: 11px;
  }
}
.seo-landing-links{padding-top:3rem;padding-bottom:5rem}
.seo-landing-heading{max-width:760px;margin-bottom:1.75rem}
.seo-landing-heading small{color:#9a7339;font-weight:800;letter-spacing:.16em}
.seo-landing-heading h2{margin:.45rem 0;font-family:"Noto Serif TC","Songti TC","PMingLiU",serif;font-size:clamp(2rem,4vw,3.2rem)}
.seo-landing-heading p{color:#62706c}
.seo-landing-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.seo-landing-grid a{display:flex;min-height:190px;flex-direction:column;justify-content:flex-end;padding:1.5rem;border:1px solid #d9d5c9;background:#fff;color:#102a24;text-decoration:none;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.seo-landing-grid a:hover{transform:translateY(-3px);border-color:#b9904b;box-shadow:0 16px 36px rgba(16,42,36,.1)}
.seo-landing-grid small{margin-bottom:auto;color:#9a7339;font-weight:800;letter-spacing:.1em}
.seo-landing-grid b{margin:.9rem 0 .35rem;font-family:"Noto Serif TC","Songti TC","PMingLiU",serif;font-size:1.3rem}
.seo-landing-grid span{color:#586763;font-size:.92rem}
@media(max-width:900px){.seo-landing-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.seo-landing-grid{grid-template-columns:1fr}.seo-landing-grid a{min-height:160px}}
