/* ============================================================
   Lizhu — Editorial Luxury System
   Warm ivory / mineral green / aged brass
   ============================================================ */

:root {
  --bg-warm: #f7f3ea;
  --bg-card: #fcfaf4;
  --bg-muted: #ece4d5;
  --bg-accent-soft: #f4ecdf;
  --text-primary: #1f2a26;
  --text-secondary: #6f746f;
  --text-muted: #9b9b92;
  --accent: #9a6a32;
  --accent-light: #c19a6b;
  --accent-soft: #ead9c2;
  --surface: #1f2a26;
  --surface-light: #40514a;
  --border: rgba(31, 42, 38, 0.13);
  --border-light: rgba(31, 42, 38, 0.08);
  --lux-ivory: #f7f3ea;
  --lux-paper: #fcfaf4;
  --lux-sand: #ece4d5;
  --lux-ink: #1f2a26;
  --lux-ink-deep: #121a17;
  --lux-ink-soft: #40514a;
  --lux-brass: #9a6a32;
  --lux-brass-light: #c19a6b;
  --lux-line: rgba(31, 42, 38, 0.13);
  --lux-line-light: rgba(255, 255, 255, 0.16);
  --lux-body: #6f746f;
  --lux-ease: cubic-bezier(0.32, 0.72, 0, 1);
  --motion-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --motion-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --lux-shadow: 0 28px 80px rgba(61, 48, 29, 0.11);
  --lux-shadow-soft: 0 16px 50px rgba(61, 48, 29, 0.075);
}

html {
  scroll-behavior: smooth;
}

body.luxury-site {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 4% 8%, rgba(154, 106, 50, 0.08), transparent 24rem),
    var(--lux-ivory);
  color: var(--lux-ink);
  font-family: "Manrope", system-ui, sans-serif;
}

body.luxury-site::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.luxury-site h1,
.luxury-site h2,
.luxury-site .display-xl,
.luxury-site .display-lg,
.luxury-site .display-md {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.luxury-site h3,
.luxury-site h4,
.luxury-site p {
  text-wrap: pretty;
}

.luxury-site a,
.luxury-site button,
.luxury-site input,
.luxury-site textarea {
  transition:
    color 600ms var(--lux-ease),
    background-color 600ms var(--lux-ease),
    border-color 600ms var(--lux-ease),
    opacity 600ms var(--lux-ease),
    transform 600ms var(--lux-ease),
    box-shadow 600ms var(--lux-ease);
}

.luxury-site :focus-visible {
  outline: 2px solid var(--lux-brass);
  outline-offset: 4px;
}

.display-md {
  font-size: clamp(2.8rem, 5.8vw, 5.1rem);
  line-height: 0.94;
}

.luxury-eyebrow {
  color: var(--lux-brass);
  font-family: "Manrope", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.luxury-eyebrow.light {
  color: var(--lux-brass-light);
}

/* ----- Floating navigation island ----- */
.site-header {
  top: 0;
  z-index: 40;
  padding: 0.85rem 1rem 0;
  background: transparent !important;
  box-shadow: none !important;
}

.nav-frame {
  padding-inline: 0 !important;
}

.nav-island {
  gap: 1rem;
  padding-inline: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(252, 250, 244, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 50px rgba(51, 43, 31, 0.09);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  transition:
    transform 320ms var(--motion-out-quart),
    background-color 320ms var(--motion-out-quart),
    box-shadow 320ms var(--motion-out-quart);
}

.site-header.is-scrolled .nav-island {
  background: rgba(252, 250, 244, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 10px 28px rgba(51, 43, 31, 0.12);
  transform: translateY(-0.18rem);
}

.nav-island img {
  height: 2.15rem;
}

.nav-primary > ul {
  gap: 0.15rem;
}

.nav-primary > ul > li > a {
  border-radius: 999px;
  color: #56605b;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-primary > ul > li > a:hover,
.nav-primary > ul > li > a.text-accent {
  color: var(--lux-ink);
  background: rgba(31, 42, 38, 0.055);
}

.nav-primary ul ul {
  border: 1px solid rgba(31, 42, 38, 0.08) !important;
  border-radius: 1.2rem !important;
  background: rgba(252, 250, 244, 0.96) !important;
  box-shadow: var(--lux-shadow-soft) !important;
  backdrop-filter: blur(20px);
}

.nav-icon {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
}

.nav-icon svg {
  width: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.nav-icon:hover,
.language-switch:hover {
  background: rgba(31, 42, 38, 0.055);
}

/* ----- Live product search ----- */
.product-search {
  position: relative;
  color: var(--lux-ink);
}

.product-search-form {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--lux-line);
  background: rgba(252, 250, 244, 0.78);
  transition:
    border-color 360ms var(--lux-ease),
    background-color 360ms var(--lux-ease),
    box-shadow 360ms var(--lux-ease);
}

.product-search-form:focus-within {
  border-color: rgba(154, 106, 50, 0.56);
  background: var(--lux-paper);
  box-shadow: 0 12px 34px rgba(61, 48, 29, 0.1);
}

.product-search-icon {
  flex: 0 0 auto;
  color: var(--lux-body);
}

.product-search-input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--lux-ink);
  background: transparent;
}

.product-search-input::placeholder {
  color: #8b8e88;
  opacity: 1;
}

.product-search-input::-webkit-search-cancel-button {
  display: none;
}

.product-search-clear {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--lux-body);
}

.product-search-clear:hover {
  color: var(--lux-ink);
  background: rgba(31, 42, 38, 0.06);
}

.product-search-clear[hidden],
.product-search-popover[hidden],
.product-search-empty[hidden],
.header-mobile-search-panel[hidden],
.products-search-empty-state[hidden] {
  display: none !important;
}

.product-search--nav {
  width: clamp(7.75rem, 11vw, 11.5rem);
}

.product-search--nav .product-search-form {
  height: 2.55rem;
  padding-inline: 0.8rem 0.4rem;
  border-radius: 999px;
}

.product-search--nav .product-search-icon {
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.product-search--nav .product-search-input {
  font-size: 0.7rem;
  font-weight: 600;
}

.product-search--nav .product-search-clear {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0.7rem;
}

.product-search-popover {
  position: absolute;
  z-index: 70;
  top: calc(100% + 0.65rem);
  right: 0;
  overflow: hidden;
  width: min(23rem, calc(100vw - 2rem));
  border: 1px solid rgba(31, 42, 38, 0.1);
  border-radius: 1.15rem;
  background: rgba(252, 250, 244, 0.98);
  box-shadow: 0 24px 70px rgba(39, 34, 25, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.product-search.is-open .product-search-popover {
  animation: product-search-enter 360ms var(--motion-out-expo) both;
}

@keyframes product-search-enter {
  from {
    opacity: 0;
    transform: translateY(-0.4rem) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-search-results {
  overflow-y: auto;
  max-height: min(26rem, 70vh);
  padding: 0.45rem;
}

.product-search-result {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.65rem;
  border-radius: 0.8rem;
  color: var(--lux-ink);
}

.product-search-result:hover,
.product-search-result.is-active {
  background: var(--bg-muted);
  transform: translateX(0.15rem);
}

.product-search-result-image {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--lux-line);
  border-radius: 0.65rem;
  background: #fff;
}

.product-search-result-image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.product-search-result-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.25rem;
}

.product-search-result-copy small {
  overflow: hidden;
  color: var(--lux-brass);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-search-result-copy strong {
  overflow: hidden;
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-search-result > i {
  color: var(--lux-body);
  font-size: 0.8rem;
}

.product-search-empty {
  display: grid;
  min-height: 10rem;
  padding: 2rem;
  place-items: center;
  text-align: center;
}

.product-search-empty > i {
  color: var(--lux-brass);
  font-size: 1.4rem;
}

.product-search-empty strong {
  margin-top: 0.65rem;
  font-size: 0.8rem;
}

.product-search-empty span {
  margin-top: 0.35rem;
  color: var(--lux-body);
  font-size: 0.66rem;
}

.header-mobile-search-panel {
  position: absolute;
  z-index: 42;
  top: 5rem;
  right: 1rem;
  left: 1rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 1.25rem;
  background: rgba(252, 250, 244, 0.96);
  box-shadow: var(--lux-shadow-soft);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.header-mobile-search-panel.is-open {
  animation: product-search-enter 360ms var(--motion-out-expo) both;
}

.product-search--mobile .product-search-form {
  height: 3.4rem;
  padding-inline: 1rem 0.55rem;
  border-radius: 0.95rem;
}

.product-search--mobile .product-search-icon {
  margin-right: 0.7rem;
}

.product-search--mobile .product-search-input {
  font-size: 0.82rem;
}

.product-search--mobile .product-search-clear {
  width: 2.2rem;
  height: 2.2rem;
}

.product-search--mobile .product-search-popover {
  right: -0.65rem;
  left: -0.65rem;
  width: auto;
}

.language-switch {
  border: 1px solid var(--lux-line);
}

.nav-cta,
.cta-primary {
  color: #fff;
  background: var(--lux-ink);
  box-shadow: 0 14px 30px rgba(18, 26, 23, 0.15);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-cta:hover,
.cta-primary:hover {
  color: #fff;
  background: var(--lux-brass);
  box-shadow: 0 18px 38px rgba(121, 82, 37, 0.2);
  transform: translateY(-2px);
}

.nav-cta:active,
.cta-primary:active,
.cta-secondary:active {
  transform: scale(0.98);
}

.nav-cta-arrow,
.cta-icon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.nav-cta:hover .nav-cta-arrow,
.cta-primary:hover .cta-icon {
  transform: translate(2px, -2px) scale(1.06);
}

.menu-trigger {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(31, 42, 38, 0.06);
}

.menu-trigger span {
  position: absolute;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 650ms var(--lux-ease);
}

.menu-trigger span:first-child { top: 1.05rem; }
.menu-trigger span:last-child { top: 1.48rem; }
.menu-trigger.is-open span:first-child { transform: translate(-50%, 3px) rotate(45deg); }
.menu-trigger.is-open span:last-child { transform: translate(-50%, -4px) rotate(-45deg); }

.mobile-menu-panel {
  z-index: 35;
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  transition: transform 750ms var(--lux-ease) !important;
}

.mobile-menu-inner nav > ul {
  border: 0;
}

.mobile-menu-inner nav > ul > li {
  border-color: var(--lux-line);
}

.mobile-menu-inner nav > ul > li > a,
.mobile-menu-inner .mobile-submenu-toggle {
  padding-block: 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
}

/* ----- Hero ----- */
.hero-luxury {
  min-height: calc(100dvh - 5.25rem);
  margin-top: -5.25rem;
  padding-top: 5.25rem;
  background:
    radial-gradient(circle at 81% 43%, rgba(184, 148, 100, 0.19), transparent 18rem),
    linear-gradient(118deg, #f7f3ea 0%, #fbf8f1 53%, #e8dfce 100%);
}

.hero-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(31, 42, 38, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 42, 38, 0.06) 1px, transparent 1px);
  background-size: 6.5rem 6.5rem;
  mask-image: linear-gradient(to right, black, transparent 58%);
}

.hero-inner {
  display: flex;
  min-height: calc(100dvh - 5.25rem);
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-title {
  max-width: 10ch;
  font-size: clamp(4rem, 8.2vw, 8rem);
  line-height: 0.77;
}

.hero-title > span,
.hero-title > em {
  display: block;
}

.hero-title > em {
  margin-top: 0.28em;
  color: var(--lux-brass);
  font-size: 0.46em;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero-lede {
  max-width: 36rem;
  color: #676d68;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  color: #747a75;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-meta span:not(:last-child)::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--lux-line);
}

.hero-orbit {
  position: absolute;
  top: 50%;
  right: auto;
  left: 78%;
  width: min(42vw, 36rem);
  aspect-ratio: 1;
  border: 1px solid rgba(154, 106, 50, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(154, 106, 50, 0.12);
  border-radius: inherit;
}

.hero-orbit::before { inset: 9%; }
.hero-orbit::after { inset: 19%; }

.hero-orbit::before {
  animation: orbit-breathe 7s var(--motion-out-quart) infinite;
}

.hero-orbit::after {
  animation: orbit-breathe 7s 1.3s var(--motion-out-quart) infinite reverse;
}

@keyframes orbit-breathe {
  0%,
  100% {
    opacity: 0.72;
    scale: 1;
  }
  50% {
    opacity: 1;
    scale: 1.035;
  }
}

.hero-index {
  position: absolute;
  right: 1.5rem;
  bottom: 2.5rem;
  z-index: 3;
  color: rgba(31, 42, 38, 0.42);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

#hero-3d-container {
  right: auto !important;
  left: 78% !important;
  top: 50% !important;
  width: min(36vw, 28rem) !important;
  height: min(63vh, 36rem) !important;
  transform: translate(-50%, -50%) !important;
  filter: drop-shadow(0 42px 34px rgba(51, 43, 31, 0.16));
}

.cta-primary,
.cta-secondary {
  --cta-sheen: rgba(255, 255, 255, 0.24);
  position: relative;
  isolation: isolate;
  min-height: 3.3rem;
  overflow: hidden;
  border-radius: 999px;
  padding: 0.5rem 0.55rem 0.5rem 1.45rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.cta-primary::before,
.cta-secondary::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -34%;
  z-index: -1;
  width: 28%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cta-sheen),
    transparent
  );
  opacity: 0;
  transform: skewX(-18deg) translateX(-180%);
  transition:
    opacity 180ms ease,
    transform 620ms var(--motion-out-expo);
}

.cta-primary:hover::before,
.cta-secondary:hover::before {
  opacity: 1;
  transform: skewX(-18deg) translateX(620%);
}

.cta-secondary {
  --cta-sheen: rgba(154, 106, 50, 0.13);
  padding-inline: 1.45rem;
  border: 1px solid var(--lux-line);
  color: var(--lux-ink);
  background: rgba(252, 250, 244, 0.56);
}

/* ----- Pointer-depth feedback ----- */
.motion-tilt {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-lift: 0px;
  transform:
    perspective(1000px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(var(--tilt-lift));
  transform-style: preserve-3d;
  transition: transform 420ms var(--motion-out-quart) !important;
}

.motion-tilt.is-tilting {
  will-change: transform;
  transition-duration: 140ms !important;
}

.cta-secondary:hover {
  border-color: rgba(154, 106, 50, 0.45);
  color: var(--lux-brass);
  background: var(--lux-paper);
  transform: translateY(-2px);
}

/* ----- Trust ribbon ----- */
.trust-ribbon {
  position: relative;
  z-index: 6;
  background: var(--lux-ink);
}

.trust-grid {
  min-height: 6.5rem;
}

.trust-item {
  color: rgba(255, 255, 255, 0.72);
  border-right: 1px solid var(--lux-line-light);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item:hover {
  color: #fff;
}

.trust-number {
  color: var(--lux-brass-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
}

/* ----- Shared section rhythm ----- */
.luxury-section {
  position: relative;
  padding-block: clamp(7rem, 12vw, 11rem);
}

.category-section,
.journal-section {
  background: var(--lux-paper);
}

.featured-section {
  background: var(--lux-sand);
}

/* ----- Homepage engineering atmosphere ----- */
.category-section > .max-w-7xl,
.featured-section > .max-w-7xl,
.why-section > .max-w-7xl,
.journal-section > .max-w-7xl {
  position: relative;
  z-index: 2;
}

.home-section-decor {
  --decor-shift: 0px;
  --decor-shift-soft: 0px;
  --decor-shift-reverse: 0px;
  --decor-shift-label: 0px;
  --decor-ink: rgba(31, 42, 38, 0.075);
  --decor-brass: rgba(154, 106, 50, 0.2);
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-section-decor::before,
.home-section-decor::after {
  position: absolute;
  left: 50%;
  width: 1px;
  content: "";
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(154, 106, 50, 0.25),
    transparent
  );
}

.home-section-decor::before {
  top: 0;
  height: clamp(3rem, 8vw, 7rem);
}

.home-section-decor::after {
  bottom: 0;
  height: clamp(2rem, 5vw, 4.5rem);
}

.home-decor-grid {
  position: absolute;
  inset: 4% 0;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--decor-ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--decor-ink) 1px, transparent 1px);
  background-size: 7.5rem 7.5rem;
  -webkit-mask-image: radial-gradient(circle at var(--grid-x, 82%) 42%, black, transparent 67%);
  mask-image: radial-gradient(circle at var(--grid-x, 82%) 42%, black, transparent 67%);
  transform: translate3d(0, var(--decor-shift-soft), 0);
  will-change: transform;
}

.home-decor-orbit {
  position: absolute;
  top: var(--orbit-top, 14%);
  right: var(--orbit-right, -13rem);
  width: clamp(28rem, 48vw, 48rem);
  aspect-ratio: 1;
  border: 1px solid var(--decor-brass);
  border-radius: 50%;
  box-shadow:
    0 0 0 clamp(3rem, 6vw, 6rem) rgba(154, 106, 50, 0.035),
    0 0 0 clamp(7rem, 13vw, 12rem) rgba(154, 106, 50, 0.02);
  transform: translate3d(0, var(--decor-shift), 0);
  will-change: transform;
}

.home-decor-orbit::before,
.home-decor-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(154, 106, 50, 0.11);
  border-radius: inherit;
}

.home-decor-orbit::before {
  inset: 11%;
}

.home-decor-orbit::after {
  inset: 24%;
}

.home-decor-crosshair {
  position: absolute;
  top: var(--cross-top, 26%);
  left: var(--cross-left, 8%);
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid rgba(31, 42, 38, 0.08);
  border-radius: 50%;
  transform: translate3d(0, var(--decor-shift-reverse), 0);
  will-change: transform;
}

.home-decor-crosshair::before,
.home-decor-crosshair::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: rgba(154, 106, 50, 0.25);
  transform: translate(-50%, -50%);
}

.home-decor-crosshair::before {
  width: 5rem;
  height: 1px;
}

.home-decor-crosshair::after {
  width: 1px;
  height: 5rem;
}

.home-decor-label {
  position: absolute;
  top: 50%;
  right: 1.35rem;
  color: rgba(31, 42, 38, 0.3);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translate3d(0, calc(-50% + var(--decor-shift-label)), 0);
  will-change: transform;
}

.home-section-decor--featured {
  --decor-ink: rgba(31, 42, 38, 0.055);
  --decor-brass: rgba(154, 106, 50, 0.16);
  --grid-x: 18%;
  --orbit-right: auto;
  --orbit-top: 18%;
  --cross-top: 72%;
  --cross-left: 88%;
}

.home-section-decor--featured .home-decor-orbit {
  left: -17rem;
}

.home-section-decor--factory {
  --grid-x: 22%;
  --orbit-right: auto;
  --orbit-top: 44%;
  --cross-top: 18%;
  --cross-left: 89%;
}

.home-section-decor--factory .home-decor-orbit {
  left: -12rem;
  width: clamp(30rem, 54vw, 54rem);
}

.home-section-decor--journal {
  --orbit-top: 38%;
  --orbit-right: -18rem;
  --cross-top: 20%;
  --cross-left: 7%;
}

.home-section-decor--featured .home-decor-label,
.home-section-decor--journal .home-decor-label {
  right: auto;
  left: 1.35rem;
  transform: translate3d(0, calc(-50% + var(--decor-shift-label)), 0)
    rotate(180deg);
}

.section-heading {
  max-width: 60rem;
}

.section-heading .luxury-eyebrow,
.why-intro .luxury-eyebrow {
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  max-width: 12ch;
}

.section-heading > p,
.split-heading > p,
.why-intro > div > p {
  max-width: 34rem;
  color: var(--lux-body);
  font-size: 0.98rem;
  line-height: 1.85;
}

.editorial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  align-items: end;
  column-gap: 5rem;
}

.editorial-heading .luxury-eyebrow {
  grid-column: 1 / -1;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 4rem;
}

/* ----- Product category bento ----- */
.category-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 19rem;
  gap: 1.25rem;
}

.category-cell { min-width: 0; }
.category-cell-1,
.category-cell-4,
.category-cell-5 { grid-column: span 7; }
.category-cell-2,
.category-cell-3,
.category-cell-6 { grid-column: span 5; }

.category-card {
  --category-surface: #ece5da;
  --category-surface-hover: #e3d9ca;
  --category-foreground: var(--lux-ink);
  --category-muted: rgba(31, 42, 38, 0.66);
  --category-accent: var(--lux-brass);
  --category-inner-border: rgba(255, 255, 255, 0.72);
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  padding: 0.45rem;
  border: 1px solid rgba(31, 42, 38, 0.08);
  border-radius: 2rem;
  color: var(--lux-ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(193, 154, 107, 0.15), transparent 12rem),
    rgba(31, 42, 38, 0.035);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid var(--category-inner-border);
  border-radius: 1.58rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  overflow: hidden;
  border-radius: 1.58rem;
  background-color: var(--category-surface);
  background-image:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.1), transparent 11rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 48%);
  transition: background-color 700ms var(--lux-ease), transform 700ms var(--lux-ease);
}

.category-card:hover::before {
  background-color: var(--category-surface-hover);
  transform: scale(0.992);
}

.category-cell-1 .category-card {
  --category-surface: #eee8de;
  --category-surface-hover: #e5dccf;
}

.category-cell-2 .category-card {
  --category-surface: #e2d5c0;
  --category-surface-hover: #d8c8ad;
}

.category-cell-3 .category-card {
  --category-surface: #dce3dc;
  --category-surface-hover: #ced9d0;
  --category-accent: #66776e;
}

.category-cell-4 .category-card {
  --category-surface: #e8d9cb;
  --category-surface-hover: #ddcbbb;
  --category-accent: #936b42;
}

.category-cell-5 .category-card {
  --category-surface: #d3ddd7;
  --category-surface-hover: #c4d2ca;
  --category-accent: #5d7167;
}

.category-cell-6 .category-card {
  --category-surface: #ded2be;
  --category-surface-hover: #d3c3a9;
  --category-accent: #815b30;
}

.category-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 1.65rem 1.75rem;
  color: var(--category-foreground);
}

.category-index {
  margin-bottom: auto;
  color: var(--category-accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.7;
  opacity: 0.7;
}

.category-content h3 {
  margin-bottom: 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.75rem);
  font-weight: 600;
  line-height: 0.95;
  transition: transform 700ms var(--lux-ease);
}

.category-card:hover .category-content h3 {
  transform: translateX(0.35rem);
}

.category-content p {
  max-width: 36rem;
  color: var(--category-muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.category-link,
.editorial-link {
  display: inline-flex;
  margin-top: 1rem;
  align-items: center;
  gap: 0.75rem;
  color: var(--category-accent, var(--lux-brass-light));
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.group:hover .category-link,
.group:hover .editorial-link {
  gap: 1rem;
}

/* ----- Featured products ----- */
.featured-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 20rem);
  gap: 1.25rem;
}

.featured-cell-1 {
  grid-column: span 7;
  grid-row: span 2;
}

.featured-cell-2,
.featured-cell-3 {
  grid-column: span 5;
}

.product-editorial {
  height: 100%;
  padding: 0.45rem;
  border: 1px solid rgba(31, 42, 38, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.3);
}

.product-editorial > a {
  display: grid;
  height: 100%;
  overflow: hidden;
  border-radius: 1.58rem;
  background: var(--lux-paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.featured-cell-1 .product-editorial > a {
  grid-template-rows: 1.25fr 0.75fr;
}

.featured-cell-2 .product-editorial > a,
.featured-cell-3 .product-editorial > a {
  grid-template-columns: 44% 56%;
}

.product-visual {
  position: relative;
  min-height: 0;
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(193, 154, 107, 0.2), transparent 36%),
    #e8e1d5;
}

.product-visual img {
  transition: transform 900ms var(--lux-ease);
}

.product-editorial:hover .product-visual img {
  transform: scale(1.06) translateY(-0.2rem);
}

.product-number {
  position: absolute;
  top: 1.2rem;
  left: 1.25rem;
  color: var(--lux-brass);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
}

.product-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.35rem, 2.6vw, 2.35rem);
}

.product-copy h3 {
  margin: 0.65rem 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
  font-weight: 600;
  line-height: 0.98;
}

.featured-cell-2 .product-copy h3,
.featured-cell-3 .product-copy h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
}

.product-copy > p {
  color: var(--lux-body);
  font-size: 0.78rem;
  line-height: 1.65;
}

.product-specs {
  display: flex;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-specs > span {
  display: flex;
  flex-direction: column;
  color: var(--lux-ink);
  font-size: 0.68rem;
  font-weight: 600;
}

.product-specs small {
  color: #9b9b92;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy .editorial-link {
  margin-top: auto;
  color: var(--lux-brass);
}

/* ----- Why Lizhu ----- */
.why-section {
  background: var(--lux-paper);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.why-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.factory-signature {
  position: relative;
  min-height: 22rem;
  margin-top: 4rem;
  overflow: hidden;
  padding: 0.45rem;
  border: 1px solid rgba(31, 42, 38, 0.08);
  border-radius: 2rem;
  background: rgba(31, 42, 38, 0.04);
}

.factory-signature img {
  width: 100%;
  height: 100%;
  min-height: 21rem;
  border-radius: 1.6rem;
  object-fit: cover;
  filter: saturate(0.55) sepia(0.12);
}

.why-list {
  border-top: 1px solid var(--lux-line);
}

.why-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr 2.5rem;
  gap: 1.2rem;
  padding-block: 2.4rem;
  align-items: start;
  border-bottom: 1px solid var(--lux-line);
}

.why-row:hover {
  padding-left: 0.75rem;
}

.why-index,
.why-arrow {
  color: var(--lux-brass);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
}

.why-row h3 {
  margin-bottom: 0.6rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.why-row p {
  max-width: 35rem;
  color: var(--lux-body);
  font-size: 0.82rem;
  line-height: 1.7;
}

.why-arrow {
  opacity: 0;
  transform: translate(-0.3rem, 0.3rem);
}

.why-row:hover .why-arrow {
  opacity: 1;
  transform: none;
}

/* ----- Journal ----- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 18rem);
  gap: 1.25rem;
}

.journal-cell-1 {
  grid-column: span 7;
  grid-row: span 2;
}

.journal-cell-2,
.journal-cell-3 {
  grid-column: span 5;
}

.journal-card {
  height: 100%;
  padding: 0.45rem;
  border: 1px solid rgba(31, 42, 38, 0.08);
  border-radius: 2rem;
  background: rgba(31, 42, 38, 0.035);
}

.journal-card > a {
  display: grid;
  height: 100%;
  overflow: hidden;
  border-radius: 1.58rem;
  background: var(--lux-ink);
}

.journal-cell-1 .journal-card > a {
  grid-template-rows: 1.2fr 0.8fr;
}

.journal-cell-2 .journal-card > a,
.journal-cell-3 .journal-card > a {
  grid-template-columns: 43% 57%;
}

.journal-image {
  position: relative;
  overflow: hidden;
}

.journal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 26, 23, 0.35), transparent 55%);
}

.journal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65);
  transition: transform 900ms var(--lux-ease), filter 900ms var(--lux-ease);
}

.journal-card:hover .journal-image img {
  filter: saturate(0.95);
  transform: scale(1.055);
}

.journal-image > span {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
}

.journal-copy {
  display: flex;
  min-width: 0;
  padding: clamp(1.25rem, 2.5vw, 2.2rem);
  flex-direction: column;
  color: #fff;
}

.journal-meta {
  display: flex;
  margin-bottom: 1rem;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-copy h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.3vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}

.journal-cell-2 .journal-copy h3,
.journal-cell-3 .journal-copy h3 {
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
}

.journal-copy > p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.65;
}

.journal-copy .editorial-link {
  margin-top: auto;
}

/* ----- Inquiry ----- */
.inquiry-section {
  padding-block: clamp(7rem, 12vw, 10rem);
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(193, 154, 107, 0.14), transparent 24rem),
    var(--lux-ink-deep);
}

.inquiry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 7rem 7rem;
  mask-image: radial-gradient(circle at 20% 50%, black, transparent 62%);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.inquiry-layout h2 {
  max-width: 9ch;
  margin: 1.5rem 0;
  color: #fff;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.86;
}

.inquiry-layout > .addAnimation > p {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  line-height: 1.8;
}

.inquiry-note {
  display: flex;
  margin-top: 3rem;
  align-items: end;
  gap: 1rem;
}

.inquiry-note > span {
  color: var(--lux-brass-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.8;
}

.inquiry-note p {
  max-width: 9rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-form {
  padding: clamp(1.5rem, 3vw, 2.4rem) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 2rem !important;
  background: rgba(255, 255, 255, 0.075) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 35px 90px rgba(0, 0, 0, 0.18) !important;
}

.inquiry-form h3,
.inquiry-form label {
  color: rgba(255, 255, 255, 0.88) !important;
}

.inquiry-form h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
}

.inquiry-form input,
.inquiry-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 0.9rem !important;
  color: #fff;
  background: rgba(255, 255, 255, 0.06) !important;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: rgba(193, 154, 107, 0.65) !important;
  box-shadow: 0 0 0 4px rgba(154, 106, 50, 0.12);
}

.inquiry-form button {
  min-height: 3.2rem;
  border-radius: 999px !important;
  background: var(--lux-brass) !important;
}

.inquiry-form button:hover {
  background: var(--lux-brass-light) !important;
  transform: translateY(-2px);
}

.inquiry-form p {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* ----- FAQ and shared subpages ----- */
.luxury-faq {
  background: var(--lux-paper) !important;
}

.luxury-faq > div {
  max-width: 64rem;
}

.luxury-faq h2 {
  color: var(--lux-ink);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.luxury-faq .faq-item {
  border: 0 !important;
  border-bottom: 1px solid var(--lux-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.luxury-faq .faq-item:first-child {
  border-top: 1px solid var(--lux-line) !important;
}

.luxury-faq summary {
  padding-block: 1.5rem;
  background: transparent !important;
}

.luxury-faq summary h3 {
  color: var(--lux-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.luxury-site main > section.bg-white {
  background: var(--lux-paper) !important;
}

.luxury-site main > section.bg-warm,
.luxury-site main > section.bg-warm-muted,
.luxury-site main > section.bg-slate-50,
.luxury-site main > section.bg-slate-100 {
  background: var(--lux-ivory) !important;
}

.luxury-site main > section.py-24,
.luxury-site main > section.py-16,
.luxury-site main > section.py-12 {
  padding-top: clamp(5.5rem, 9vw, 8rem) !important;
  padding-bottom: clamp(6.5rem, 10vw, 9rem) !important;
}

/* ----- Blog list surface separation ----- */
.luxury-site main > section.blog-list-section {
  background: #e7e1d7 !important;
  background: oklch(91.5% 0.012 88) !important;
}

.blog-list-card {
  border: 4px solid #fff !important;
  background: #fffdf8 !important;
  box-shadow: none !important;
  transition:
    background-color 260ms var(--motion-out-quart),
    transform 260ms var(--motion-out-quart) !important;
}

.blog-list-stack > .addAnimation:nth-child(even) .blog-list-card {
  background: #eef2ed !important;
}

.blog-list-card:hover {
  border-color: #fff !important;
  background: #fff !important;
  transform: translateY(-3px);
}

@media (max-width: 639px) {
  .blog-list-card {
    border-width: 3px !important;
  }
}

.blog-list-card > a > div {
  background: #e4e0d6 !important;
}

.blog-list-stack > .addAnimation:nth-child(even) .blog-list-card > a > div {
  background: #dde5df !important;
}

.luxury-site .card-premium,
.luxury-site .spec-card,
.luxury-site main .rounded-2xl.shadow-sm,
.luxury-site main .rounded-xl.border {
  border-color: rgba(31, 42, 38, 0.08) !important;
  box-shadow: var(--lux-shadow-soft) !important;
}

.luxury-site .card-premium {
  border-radius: 1.65rem;
}

.luxury-site .card-premium:hover {
  box-shadow: var(--lux-shadow) !important;
  transform: translateY(-5px);
}

.luxury-site main h1.text-3xl,
.luxury-site main h1.text-4xl {
  font-size: clamp(3.2rem, 7vw, 6.5rem) !important;
  line-height: 0.9;
}

.luxury-site main h2.text-2xl,
.luxury-site main h2.text-3xl,
.luxury-site main h2.text-4xl {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem) !important;
  line-height: 1;
}

.luxury-site input,
.luxury-site textarea,
.luxury-site select {
  border-radius: 0.85rem !important;
}

/* ----- Footer ----- */
.luxury-site footer {
  position: relative;
  overflow: hidden;
  background: var(--lux-ink-deep) !important;
}

.luxury-site footer::before {
  content: "LIZHU";
  position: absolute;
  right: -0.04em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(8rem, 24vw, 24rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.luxury-site footer > div {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.luxury-site footer h3 {
  color: var(--lux-brass-light) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.18em !important;
}

.luxury-site footer a:hover {
  color: var(--lux-brass-light) !important;
}

/* ----- Responsive collapse ----- */
@media (max-width: 1023px) {
  .site-header {
    padding-inline: 0.75rem;
  }

  .nav-island {
    justify-content: space-between;
    padding-inline: 1rem;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 9rem;
  }

  .hero-copy {
    width: 66%;
  }

  #hero-3d-container {
    right: auto !important;
    left: 78% !important;
    top: 50% !important;
    width: 42vw !important;
    transform: translate(-50%, -50%) !important;
  }

  .category-bento,
  .featured-showcase,
  .journal-grid {
    grid-auto-rows: 20rem;
  }

  .category-cell {
    grid-column: span 6 !important;
  }

  .featured-showcase,
  .journal-grid {
    grid-template-rows: auto;
  }

  .featured-cell,
  .journal-cell {
    grid-column: span 6 !important;
    grid-row: auto !important;
  }

  .featured-cell-1,
  .journal-cell-1 {
    grid-column: span 12 !important;
  }

  .featured-cell-1 .product-editorial > a,
  .journal-cell-1 .journal-card > a {
    min-height: 38rem;
  }

  .why-layout,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding-top: 0.55rem;
  }

  .nav-island {
    height: 3.65rem;
  }

  .hero-luxury {
    min-height: auto;
    margin-top: -4.2rem;
    padding-top: 4.2rem;
  }

  .hero-inner {
    min-height: 52rem;
    padding: 7.2rem 1.2rem 4rem !important;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-title {
    max-width: 9ch;
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

  .hero-lede {
    max-width: 92%;
  }

  .hero-meta {
    display: none;
  }

  .hero-orbit {
    top: auto;
    right: auto;
    left: 72%;
    bottom: -2rem;
    width: 26rem;
    transform: translateX(-50%);
  }

  #hero-3d-container {
    right: auto !important;
    left: 72% !important;
    top: auto !important;
    bottom: -0.5rem !important;
    width: 19rem !important;
    height: 23rem !important;
    opacity: 0.94;
    transform: translateX(-50%) !important;
  }

  .whatsapp-float {
    top: auto !important;
    right: 1rem !important;
    bottom: 1rem !important;
    transform: none !important;
  }

  .whatsapp-link {
    padding: 0.85rem !important;
    border-radius: 999px !important;
    box-shadow: 0 14px 32px rgba(18, 26, 23, 0.2) !important;
  }

  .whatsapp-link > span {
    display: none;
  }

  .hero-index {
    display: none;
  }

  .home-decor-grid {
    inset: 2% 0;
    opacity: 0.28;
    background-size: 5.75rem 5.75rem;
  }

  .home-decor-orbit {
    right: -17rem;
    width: 31rem;
    box-shadow:
      0 0 0 3rem rgba(154, 106, 50, 0.025),
      0 0 0 7rem rgba(154, 106, 50, 0.014);
  }

  .home-section-decor--featured .home-decor-orbit,
  .home-section-decor--factory .home-decor-orbit {
    left: -19rem;
    width: 32rem;
  }

  .home-decor-label,
  .home-decor-crosshair {
    display: none;
  }

  .home-section-decor::before,
  .home-section-decor::after {
    left: 1.25rem;
  }

  .trust-grid {
    min-height: 8rem;
  }

  .trust-item {
    min-height: 4rem;
    border-right: 1px solid var(--lux-line-light);
    border-bottom: 1px solid var(--lux-line-light);
  }

  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-last-child(-n+2) { border-bottom: 0; }

  .luxury-section {
    padding-block: 6.5rem;
  }

  .editorial-heading,
  .split-heading {
    display: block;
  }

  .section-heading > p,
  .split-heading > p {
    margin-top: 1.5rem;
  }

  .display-md {
    font-size: clamp(2.9rem, 14vw, 4.1rem);
  }

  .category-bento,
  .featured-showcase,
  .journal-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .category-cell,
  .featured-cell,
  .journal-cell {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .category-card {
    min-height: 22rem;
  }

  .category-content {
    width: 100%;
  }

  .featured-cell .product-editorial > a,
  .journal-cell .journal-card > a {
    display: grid;
    min-height: 32rem;
    grid-template-columns: 1fr;
    grid-template-rows: 15rem 1fr;
  }

  .featured-cell-1 .product-editorial > a,
  .journal-cell-1 .journal-card > a {
    min-height: 34rem;
  }

  .product-copy h3,
  .featured-cell-2 .product-copy h3,
  .featured-cell-3 .product-copy h3,
  .journal-copy h3,
  .journal-cell-2 .journal-copy h3,
  .journal-cell-3 .journal-copy h3 {
    font-size: 1.75rem;
  }

  .why-layout {
    gap: 4rem;
  }

  .factory-signature {
    margin-top: 2.5rem;
  }

  .why-row {
    grid-template-columns: 2.5rem 1fr;
  }

  .why-arrow {
    display: none;
  }

  .inquiry-layout {
    gap: 3.5rem;
  }

  .inquiry-layout h2 {
    font-size: 3.8rem;
  }

  .inquiry-form {
    border-radius: 1.5rem !important;
  }

  .luxury-faq summary h3 {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .luxury-site *,
  .luxury-site *::before,
  .luxury-site *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-orbit::before,
  .hero-orbit::after {
    animation: none !important;
  }

  .cta-primary::before,
  .cta-secondary::before {
    display: none;
  }

  .motion-tilt {
    transform: none !important;
  }
}

/* ============================================================
   Product Center
   Editorial product catalog with engineering depth
   ============================================================ */

.products-center {
  --products-sage: #dfe5dc;
  --products-sage-soft: #eef1eb;
  --products-cream: #f2eadc;
  background:
    radial-gradient(circle at 82% 7%, rgba(154, 106, 50, 0.09), transparent 25rem),
    var(--lux-ivory);
}

.products-shell {
  width: min(100% - 3rem, 82rem);
  margin-inline: auto;
}

.products-breadcrumb {
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--lux-line);
  background: rgba(252, 250, 244, 0.56);
}

.products-hero {
  position: relative;
  overflow: hidden;
  min-height: 46rem;
  padding-block: clamp(5.5rem, 9vw, 8rem) 6rem;
  border-bottom: 1px solid var(--lux-line);
}

.products-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 9rem);
  width: 1px;
  content: "";
  background: var(--lux-line);
}

.products-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(25rem, 6fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.products-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}

.products-hero-copy h1 {
  max-width: 8.2ch;
  margin-top: 1.4rem;
  font-size: clamp(4.5rem, 8.5vw, 8rem);
  line-height: 0.82;
}

html[lang="zh-CN"] .products-hero-copy h1 {
  font-family: "Songti SC", "STSong", "SimSun", serif;
  letter-spacing: -0.1em;
  line-height: 0.9;
}

html[lang="zh-CN"] .products-hero-copy h1 > span {
  display: block;
  white-space: nowrap;
}

.products-hero-lead {
  max-width: 35rem;
  margin-top: 2.25rem;
  color: var(--lux-body);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.85;
}

.products-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
  align-items: center;
  margin-top: 2.8rem;
}

.products-main-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  min-height: 4rem;
  padding: 0.65rem 0.75rem 0.65rem 1.55rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.products-text-link {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--lux-line);
  color: var(--lux-ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.products-text-link:hover {
  border-color: var(--lux-brass);
  color: var(--lux-brass);
}

.products-hero-visual {
  position: relative;
  padding-bottom: 1rem;
}

.products-stage-label {
  display: flex;
  justify-content: space-between;
  padding: 0 0.25rem 0.9rem;
  color: var(--lux-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.products-hero-stage {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 31rem;
  place-items: center;
  border: 1px solid rgba(31, 42, 38, 0.1);
  border-radius: 10rem 10rem 1.8rem 1.8rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(230, 225, 213, 0.64)),
    var(--lux-paper);
  box-shadow: var(--lux-shadow);
}

.products-hero-stage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(31, 42, 38, 0.055));
}

.products-stage-orbit {
  position: absolute;
  width: min(80%, 26rem);
  aspect-ratio: 1;
  border: 1px solid rgba(154, 106, 50, 0.2);
  border-radius: 50%;
}

.products-stage-orbit::before,
.products-stage-orbit::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(154, 106, 50, 0.14);
  border-radius: inherit;
}

.products-stage-orbit::after {
  inset: 25%;
}

.adaptive-product-image {
  width: var(--product-image-scale, 92%);
  height: var(--product-image-scale, 92%);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: var(--product-image-position, center);
  transform-origin: var(--product-image-position, center);
}

.adaptive-product-image--portrait {
  max-width: 82%;
}

.adaptive-product-image--wide,
.adaptive-product-image--technical {
  max-width: 96%;
}

.product-category-media {
  position: relative;
  overflow: hidden;
}

.product-category-media > .adaptive-product-image {
  position: absolute;
  inset: 0;
  width: min(var(--product-image-scale, 90%), 88%);
  height: min(var(--product-image-scale, 90%), 84%);
  margin: auto;
}

.product-gallery-canvas {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.96), transparent 58%),
    var(--products-sage-soft, #eef1eb);
}

.product-gallery-canvas > .adaptive-product-image {
  position: absolute;
  inset: 0;
  width: min(var(--product-image-scale, 92%), 94%);
  height: min(var(--product-image-scale, 92%), 90%);
  margin: auto;
}

.product-gallery-canvas--portrait > .adaptive-product-image {
  max-width: 78%;
}

.product-gallery-canvas--wide > .adaptive-product-image,
.product-gallery-canvas--technical > .adaptive-product-image {
  width: min(var(--product-image-scale, 96%), 96%);
  height: min(var(--product-image-scale, 88%), 88%);
}

.products-hero-stage img {
  position: absolute;
  z-index: 1;
  inset: 0 0 4.75rem;
  width: min(var(--product-image-scale, 82%), 86%);
  height: min(var(--product-image-scale, 78%), 78%);
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 22px rgba(31, 42, 38, 0.19));
}

.products-hero-stage:hover img {
  transform: translateY(-0.7rem) scale(1.025);
}

.products-stage-name {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.35rem;
  left: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 42, 38, 0.12);
}

.products-stage-name span {
  color: var(--lux-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.products-stage-name strong {
  max-width: 15rem;
  color: var(--lux-ink);
  font-size: 0.82rem;
  text-align: right;
}

.products-stage-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.9rem;
  border-block: 1px solid var(--lux-line);
}

.products-stage-specs > div {
  min-width: 0;
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--lux-line);
}

.products-stage-specs > div:last-child {
  border-right: 0;
}

.products-stage-specs dt,
.products-stage-specs dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.products-stage-specs dt {
  color: var(--lux-body);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-stage-specs dd {
  margin-top: 0.3rem;
  color: var(--lux-ink);
  font-size: 0.76rem;
  font-weight: 700;
}

.products-category-section {
  padding-block: 6.5rem;
  background: var(--lux-paper);
}

.products-section-heading {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 4rem;
  align-items: end;
}

.products-section-heading h2,
.products-catalog-head h2,
.products-decision-copy h2,
.products-assurance-head h2,
.products-cta-panel h2 {
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  line-height: 0.94;
}

.products-section-heading > p,
.products-decision-copy > p,
.products-assurance-head > p {
  color: var(--lux-body);
  line-height: 1.8;
}

.product-search--catalog {
  width: min(100%, 52rem);
  margin-top: 3rem;
}

.product-search--catalog .product-search-form {
  height: 4.6rem;
  padding-inline: 1.35rem 0.8rem;
  border-radius: 1.2rem;
  background: var(--lux-ivory);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.product-search--catalog .product-search-icon {
  margin-right: 0.9rem;
  color: var(--lux-brass);
  font-size: 1.15rem;
}

.product-search--catalog .product-search-input {
  font-size: 0.9rem;
  font-weight: 600;
}

.product-search--catalog .product-search-clear {
  width: 2.5rem;
  height: 2.5rem;
}

.product-search--catalog .product-search-popover {
  right: auto;
  left: 0;
  width: min(100%, 42rem);
}

.products-category-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3.5rem;
  border-top: 1px solid var(--lux-line);
  border-left: 1px solid var(--lux-line);
}

.products-category-filter {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  min-height: 9.25rem;
  padding: 1.25rem;
  border-right: 1px solid var(--lux-line);
  border-bottom: 1px solid var(--lux-line);
  color: var(--lux-ink);
  text-align: left;
  background: rgba(247, 243, 234, 0.25);
}

.products-category-filter:hover {
  z-index: 1;
  background: var(--products-sage-soft);
  box-shadow: inset 0 0 0 1px rgba(31, 42, 38, 0.06);
}

.products-category-filter.is-active {
  color: var(--lux-paper);
  background: var(--lux-ink);
}

.products-filter-index {
  color: var(--lux-brass);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
}

.products-filter-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
}

.products-filter-copy strong {
  font-size: 0.82rem;
  line-height: 1.45;
}

.products-filter-copy small {
  color: var(--lux-body);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-category-filter.is-active .products-filter-copy small {
  color: rgba(255, 255, 255, 0.55);
}

.products-filter-arrow {
  align-self: end;
  font-size: 0.9rem;
}

.products-catalog-section {
  padding-block: 8rem;
  background:
    linear-gradient(rgba(31, 42, 38, 0.035) 1px, transparent 1px),
    var(--lux-ivory);
  background-size: 100% 11rem;
}

.products-catalog-head {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.products-catalog-head h2 {
  max-width: 10ch;
  margin-top: 1.25rem;
}

.products-catalog-intro {
  display: grid;
  gap: 1.8rem;
}

.products-catalog-intro p {
  color: var(--lux-body);
  line-height: 1.8;
}

#product-result-count {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  color: var(--lux-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#product-result-count strong {
  color: var(--lux-brass);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-style: italic;
  letter-spacing: 0;
}

.products-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.product-catalog-cell[hidden] {
  display: none !important;
}

.products-search-empty-state {
  display: grid;
  min-height: 24rem;
  margin-top: 1.15rem;
  place-items: center;
  align-content: center;
  border: 1px solid var(--lux-line);
  border-radius: 1.7rem;
  background: rgba(252, 250, 244, 0.72);
  text-align: center;
}

.products-search-empty-state > i {
  color: var(--lux-brass);
  font-size: 2rem;
}

.products-search-empty-state h3 {
  margin-top: 1.2rem;
  font-size: 1.1rem;
}

.products-search-empty-state p {
  max-width: 30rem;
  margin-top: 0.65rem;
  color: var(--lux-body);
  font-size: 0.78rem;
  line-height: 1.7;
}

.product-catalog-cell > * {
  height: 100%;
}

.product-catalog-cell:nth-child(1),
.product-catalog-cell:nth-child(6) {
  grid-column: span 2;
}

.product-catalog-card {
  display: grid;
  overflow: hidden;
  height: 100%;
  min-height: 38rem;
  grid-template-rows: 18rem 1fr;
  border: 1px solid var(--lux-line);
  border-radius: 1.7rem;
  background: var(--lux-paper);
  box-shadow: 0 10px 38px rgba(61, 48, 29, 0.045);
}

.product-catalog-cell:nth-child(1) .product-catalog-card,
.product-catalog-cell:nth-child(6) .product-catalog-card {
  min-height: 31rem;
  grid-template-columns: minmax(20rem, 1.08fr) minmax(23rem, 0.92fr);
  grid-template-rows: 1fr;
}

.product-catalog-card:hover {
  border-color: rgba(154, 106, 50, 0.34);
  box-shadow: var(--lux-shadow-soft);
  transform: translateY(-0.35rem);
}

.product-card-media {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.92), transparent 48%),
    var(--products-sage-soft);
}

.product-card-media::before {
  position: absolute;
  width: 13rem;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(154, 106, 50, 0.16);
  border-radius: 50%;
}

.product-card-media img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: min(var(--product-image-scale, 88%), 88%);
  height: min(var(--product-image-scale, 82%), 82%);
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(31, 42, 38, 0.15));
}

.product-catalog-card:hover .product-card-media img {
  transform: translateY(-0.45rem) scale(1.03);
}

.product-card-number {
  position: absolute;
  z-index: 2;
  top: 1.2rem;
  left: 1.2rem;
  color: var(--lux-brass);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
}

.product-media-line {
  position: absolute;
  right: 1.2rem;
  bottom: 1.15rem;
  left: 1.2rem;
  height: 1px;
  background: var(--lux-line);
}

.product-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.6rem;
}

.product-card-title > span {
  color: var(--lux-brass);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card-title h3 {
  margin-top: 0.55rem;
  color: var(--lux-ink);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.08;
}

.product-card-body > p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 1rem;
  color: var(--lux-body);
  font-size: 0.83rem;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card-facts {
  margin-top: 1.45rem;
  padding-top: 1rem;
  border-top: 1px solid var(--lux-line);
}

.product-card-facts > span {
  color: var(--lux-body);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card-facts dl {
  margin-top: 0.65rem;
}

.product-card-facts dl > div {
  display: grid;
  grid-template-columns: minmax(6.5rem, 0.85fr) 1.15fr;
  gap: 0.8rem;
  padding-block: 0.45rem;
  border-top: 1px solid rgba(31, 42, 38, 0.07);
  font-size: 0.66rem;
}

.product-card-facts dt {
  color: var(--lux-body);
}

.product-card-facts dd {
  overflow-wrap: anywhere;
  color: var(--lux-ink);
  font-weight: 700;
}

.product-certification {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(31, 42, 38, 0.07);
}

.product-certification small {
  color: var(--lux-body);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-certification strong {
  overflow: hidden;
  max-width: 65%;
  color: var(--lux-brass);
  font-size: 0.62rem;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card-link {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--lux-ink);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-card-link:hover {
  color: var(--lux-brass);
}

.products-decision-section {
  padding-block: 8rem;
  background: var(--products-sage);
}

.products-decision-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(3rem, 9vw, 8rem);
}

.products-decision-copy {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.products-decision-copy > p {
  max-width: 25rem;
  margin-top: 1.75rem;
}

.products-decision-list {
  border-top: 1px solid rgba(31, 42, 38, 0.17);
}

.products-decision-row {
  display: grid;
  grid-template-columns: 2.2rem minmax(12rem, 1fr) minmax(8rem, auto) auto;
  gap: 1.25rem;
  align-items: center;
  padding-block: 1.8rem;
  border-bottom: 1px solid rgba(31, 42, 38, 0.17);
  color: var(--lux-ink);
}

.products-decision-row > span {
  color: var(--lux-brass);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
}

.products-decision-row h3 {
  font-size: 1rem;
  font-weight: 700;
}

.products-decision-row p {
  margin-top: 0.4rem;
  color: var(--lux-body);
  font-size: 0.72rem;
  line-height: 1.55;
}

.products-decision-row > strong {
  font-size: 0.7rem;
  text-align: right;
}

.products-decision-row > i {
  font-style: normal;
}

.products-decision-row:hover {
  padding-inline: 0.7rem;
  background: rgba(252, 250, 244, 0.46);
}

.products-assurance-section {
  padding-block: 8rem;
  background: var(--lux-paper);
}

.products-assurance-head {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 4rem;
  align-items: end;
}

.products-assurance-head h2 {
  max-width: 10ch;
}

.products-assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4.5rem;
  border-top: 1px solid var(--lux-line);
}

.products-assurance-item {
  min-height: 17rem;
  padding: 1.5rem 1.4rem;
  border-right: 1px solid var(--lux-line);
}

.products-assurance-item:first-child {
  border-left: 1px solid var(--lux-line);
}

.products-assurance-item > span {
  color: var(--lux-brass);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
}

.products-assurance-item h3 {
  margin-top: 4.5rem;
  font-size: 1rem;
}

.products-assurance-item p {
  margin-top: 0.85rem;
  color: var(--lux-body);
  font-size: 0.76rem;
  line-height: 1.7;
}

.products-cta-section {
  padding: 1rem 0 8rem;
  background: var(--lux-paper);
}

.products-cta-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
  padding: clamp(2.5rem, 6vw, 5rem);
  border: 1px solid rgba(154, 106, 50, 0.23);
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(193, 154, 107, 0.27), transparent 26rem),
    var(--products-cream);
}

.products-cta-panel > div > span {
  color: var(--lux-brass);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.products-cta-panel h2 {
  max-width: 10ch;
  margin-top: 1rem;
}

.products-cta-panel p {
  max-width: 38rem;
  margin-top: 1.4rem;
  color: var(--lux-body);
  line-height: 1.8;
}

.products-cta-button {
  display: flex;
  gap: 2rem;
  align-items: center;
  min-width: 18rem;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid rgba(31, 42, 38, 0.35);
  color: var(--lux-ink);
  font-size: 0.75rem;
  font-weight: 700;
}

.products-cta-button:hover {
  padding-inline: 1.8rem 1.2rem;
  border-color: var(--lux-brass);
  color: var(--lux-brass);
}

@media (max-width: 1023px) {
  .products-hero::before {
    display: none;
  }

  .products-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .products-category-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-catalog-cell:nth-child(1) .product-catalog-card,
  .products-catalog-cell:nth-child(6) .product-catalog-card {
    grid-template-columns: minmax(17rem, 1fr) minmax(20rem, 1fr);
  }

  .products-decision-grid {
    grid-template-columns: 1fr;
  }

  .products-decision-copy {
    position: static;
  }

  .products-assurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-assurance-item:nth-child(3) {
    border-left: 1px solid var(--lux-line);
  }
}

@media (max-width: 767px) {
  .products-shell {
    width: min(100% - 2rem, 82rem);
  }

  .products-hero {
    min-height: auto;
    padding-block: 4.5rem 4rem;
  }

  .products-hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .products-hero-copy {
    padding-top: 0;
  }

  .products-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(4.1rem, 21vw, 5.3rem);
  }

  .products-hero-lead {
    font-size: 0.95rem;
  }

  .products-hero-actions {
    gap: 1.2rem;
  }

  .products-main-cta {
    min-height: 3.7rem;
  }

  .products-hero-stage {
    min-height: 27rem;
    border-radius: 6.5rem 6.5rem 1.4rem 1.4rem;
  }

  .products-hero-stage img {
    inset: 0 0 5rem;
    width: min(var(--product-image-scale, 86%), 86%);
    height: min(var(--product-image-scale, 76%), 76%);
  }

  .product-gallery-canvas {
    aspect-ratio: 1 / 1;
  }

  .products-stage-name {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-stage-name strong {
    text-align: left;
  }

  .products-stage-specs {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(9rem, 1fr));
  }

  .products-category-section,
  .products-catalog-section,
  .products-decision-section,
  .products-assurance-section {
    padding-block: 6rem;
  }

  .product-search--catalog {
    margin-top: 2rem;
  }

  .product-search--catalog .product-search-form {
    height: 4rem;
    padding-inline: 1rem 0.55rem;
  }

  .product-search--catalog .product-search-input {
    font-size: 0.78rem;
  }

  .product-search--catalog .product-search-popover {
    width: 100%;
  }

  .products-section-heading,
  .products-catalog-head,
  .products-assurance-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products-section-heading h2,
  .products-catalog-head h2,
  .products-decision-copy h2,
  .products-assurance-head h2,
  .products-cta-panel h2 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .products-category-rail {
    display: flex;
    overflow-x: auto;
    margin-right: -1rem;
    padding-right: 1rem;
    border-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .products-category-rail::-webkit-scrollbar {
    display: none;
  }

  .products-category-filter {
    min-width: 15rem;
    min-height: 8.5rem;
    flex: 0 0 15rem;
    border-top: 0;
    border-left: 1px solid var(--lux-line);
    scroll-snap-align: start;
  }

  .products-catalog-head {
    margin-bottom: 2.75rem;
  }

  .products-catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-catalog-cell:nth-child(1),
  .product-catalog-cell:nth-child(6) {
    grid-column: auto;
  }

  .product-catalog-cell:nth-child(1) .product-catalog-card,
  .product-catalog-cell:nth-child(6) .product-catalog-card,
  .product-catalog-card {
    min-height: 37rem;
    grid-template-columns: 1fr;
    grid-template-rows: 17rem 1fr;
    border-radius: 1.35rem;
  }

  .product-card-body {
    padding: 1.35rem;
  }

  .products-decision-row {
    grid-template-columns: 2rem 1fr auto;
  }

  .products-decision-row > strong {
    display: none;
  }

  .products-assurance-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .products-assurance-item,
  .products-assurance-item:nth-child(3) {
    min-height: auto;
    padding: 1.5rem 1.2rem 2rem;
    border-right: 1px solid var(--lux-line);
    border-bottom: 1px solid var(--lux-line);
    border-left: 1px solid var(--lux-line);
  }

  .products-assurance-item h3 {
    margin-top: 2.5rem;
  }

  .products-cta-section {
    padding-bottom: 6rem;
  }

  .products-cta-panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    border-radius: 1.5rem;
  }

  .products-cta-button {
    min-width: 0;
    width: 100%;
    padding-inline: 0;
  }
}
