/* Deployment-level responsive fixes for the static Astro build. */
@font-face {
  font-family: "MiSans Latin";
  src: url("/fonts/MISANSLATINVF.TTF") format("truetype");
  font-weight: 150 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Massenan Source Han Serif";
  src: url("/fonts/SourceHanSerifCN-Regular-1.otf") format("opentype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+2E80-2FDF,
    U+3000-303F,
    U+31C0-31EF,
    U+3400-4DBF,
    U+4E00-9FFF,
    U+F900-FAFF,
    U+FE10-FE1F,
    U+FE30-FE4F,
    U+FF00-FFEF,
    U+20000-2FA1F;
}

@font-face {
  font-family: "Rigelstar";
  src: url("/fonts/rigelstar-2.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:where(
  html,
  body,
  body *,
  button,
  input,
  textarea,
  select,
  ::placeholder,
  body *::before,
  body *::after
) {
  font-family:
    "Massenan Source Han Serif", "MiSans Latin", "Source Han Sans CN", "Noto Sans SC",
    "Microsoft YaHei", sans-serif !important;
}

.site-header {
  padding-inline: clamp(18px, 4vw, 96px);
}

.site-header::after {
  left: clamp(18px, 4vw, 96px);
  right: clamp(18px, 4vw, 96px);
}

.site-header__inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  grid-template-columns: minmax(max-content, auto) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 120px);
}

.brand {
  gap: clamp(10px, 1vw, 18px);
}

.brand-mark {
  width: clamp(44px, 2.9vw, 62px);
  height: clamp(44px, 2.9vw, 62px);
  font-size: clamp(18px, 1.1vw, 24px);
}

.brand-text b {
  font-size: clamp(22px, 1.55vw, 34px);
}

.brand-text small {
  font-size: clamp(11px, 0.75vw, 15px);
}

.nav {
  width: 100%;
  justify-content: flex-end;
  gap: clamp(16px, 2.45vw, 58px);
  font-size: clamp(14px, 0.92vw, 20px);
}

.nav a {
  min-height: clamp(40px, 2.6vw, 52px);
}

.nav-group-toggle {
  width: clamp(24px, 1.65vw, 34px);
  height: clamp(24px, 1.65vw, 34px);
}

.banner-gallery {
  padding-top: clamp(76px, 4.8vw, 96px);
}

.banner-slide {
  height: calc(100svh - clamp(76px, 4.8vw, 96px));
}

/* Keep the fixed homepage header and first banner on one exact shared edge. */
.site-header + main > .home-hero {
  --home-header-height: 88px;
  padding-top: var(--home-header-height);
}

.site-header + main > .home-hero .banner-slide {
  height: calc(100svh - var(--home-header-height));
}

.slide-copy {
  left: clamp(24px, 7vw, 136px);
  top: clamp(150px, 22vh, 280px);
  width: min(760px, 88vw);
}

.home-hero .slide-copy::before {
  opacity: 0.3;
}

.slide-kicker,
.label {
  font-size: clamp(13px, 0.86vw, 18px);
}

.slide-copy h1,
.slide-copy h2 {
  max-width: min(780px, 88vw);
  font-size: clamp(42px, 4.2vw, 88px);
}

.slide-copy h2 {
  font-size: clamp(36px, 3.5vw, 72px);
}

.slide-copy p:not(.slide-kicker) {
  max-width: min(620px, 86vw);
  font-size: clamp(16px, 1.05vw, 22px);
}

.slide-actions {
  gap: clamp(10px, 0.85vw, 18px);
  margin-top: clamp(20px, 1.7vw, 34px);
}

.story-link,
.panel-link {
  min-height: clamp(42px, 2.7vw, 54px);
  padding-inline: clamp(18px, 1.35vw, 28px);
  font-size: clamp(13px, 0.82vw, 17px);
}

@media (min-width: 1800px) {
  .site-header__inner {
    gap: clamp(72px, 6vw, 148px);
  }
}

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 12px;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 104px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .banner-gallery {
    padding-top: 104px;
  }

  .banner-slide {
    height: calc(100svh - 104px);
    min-height: 560px;
  }

  .slide-copy {
    left: 18px;
    right: 18px;
    top: 22%;
    width: auto;
  }
}

.artists-band {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 8%, rgba(224, 195, 122, 0.12), transparent 28%),
    linear-gradient(180deg, #0b1220 0%, #071226 48%, #050608 100%);
}

.artists-band::before {
  color: rgba(255, 253, 247, 0.055);
}

.artists-band::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 195, 122, 0.24),
    rgba(224, 195, 122, 0.5),
    transparent
  );
}

.artists-band .label,
.artists-head h2 {
  color: var(--white);
}

.artists-head p:not(.label) {
  color: rgba(255, 253, 247, 0.72);
}

.artist-curation span {
  color: rgba(255, 253, 247, 0.82);
  background: rgba(255, 253, 247, 0.08);
  border-color: rgba(224, 195, 122, 0.18);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.artist-main-card,
.artist-float-grid .artist-card {
  border-color: rgba(224, 195, 122, 0.18);
  background: rgba(255, 253, 247, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.artist-card img {
  background:
    linear-gradient(135deg, rgba(216, 224, 234, 0.18), rgba(255, 253, 247, 0.08)), #0d1424;
  border-bottom-color: rgba(224, 195, 122, 0.14);
}

.artist-card .artist-card-index,
.artist-card h3 {
  color: var(--white);
}

.artist-card p {
  color: rgba(255, 253, 247, 0.66);
}

/* Current-stage refinement overrides. Keep the built layout, polish the presentation. */
.brand-text--wordmark {
  gap: 4px;
}
.brand-text--wordmark b {
  color: var(--white);
  font-size: clamp(26px, 1.78vw, 38px);
  font-weight: 800;
  letter-spacing: 0;
}
.brand-text--wordmark small {
  color: rgba(224, 195, 122, 0.9);
  font-size: clamp(12px, 0.82vw, 16px);
  letter-spacing: 0;
}
.brand-invert .brand-text--wordmark b {
  color: var(--white);
}
.nav-group {
  position: relative;
}
.nav-dropdown {
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown,
.nav-group.is-active .nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  min-height: 46px;
  font-size: clamp(14px, 0.86vw, 17px);
}
.nav-dropdown-copy small,
.footer-heading,
.footer-bottom {
  letter-spacing: 0;
}
.about-stage {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.16), rgba(244, 239, 228, 0) 18%),
    linear-gradient(135deg, rgba(27, 46, 100, 0.08), transparent 42%),
    linear-gradient(180deg, var(--ivory), var(--ivory-2));
}
.about-copy p:not(.label),
.section-lede,
.product-panel-head p,
.contact-copy p,
.contact-route p,
.footer-brand p,
.footer-contact p {
  font-size: clamp(16px, 0.96vw, 19px);
  line-height: 1.85;
}
.metric span,
.product-tab small {
  font-size: clamp(13px, 0.78vw, 15px);
}

/* Keep the three homepage brand metrics evenly distributed. */
.about-stage .metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-stage .metric {
  min-width: 0;
}

.about-stage .metric strong {
  white-space: nowrap;
}

.about-stage .metric:nth-child(1) {
  text-align: left;
}

.about-stage .metric:nth-child(2) {
  text-align: center;
}

.about-stage .metric:nth-child(3) {
  text-align: right;
}
.product-section {
  background: linear-gradient(180deg, #071226 0%, #0b1220 18%, #0b1220 72%, #071226 100%);
}
.product-panel-head h3 {
  font-size: clamp(30px, 2vw, 42px);
}
.product-image-viewer__image,
.product-lightbox__stage img,
.product-thumb-rail__button img,
.product-lightbox__thumb img {
  object-fit: contain !important;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.04), rgba(216, 224, 234, 0.05));
}
.product-image-viewer__image {
  max-width: 100%;
  max-height: 100%;
  padding: clamp(28px, 4vw, 70px) !important;
}
.honors-proof-page {
  padding: clamp(58px, 6vw, 108px) clamp(22px, 5vw, 88px);
  color: var(--ink);
  background: linear-gradient(180deg, #f7f2ea 0%, #eef2f6 52%, #f7f2ea 100%);
}
.honors-proof-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
  width: min(1480px, 100%);
  margin: 0 auto clamp(28px, 3vw, 48px);
}
.honors-proof-head h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 3.2vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
}
.honors-proof-head p:not(.label) {
  margin: 0;
  color: rgba(16, 19, 24, 0.72);
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.9;
}
.honors-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(18px, 2vw, 30px);
  width: min(1480px, 100%);
  margin: 0 auto;
}
.honors-proof-card {
  overflow: hidden;
  border: 1px solid rgba(27, 46, 100, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 26px 70px rgba(27, 46, 100, 0.14);
}
.honors-proof-card > span,
.honors-proof-card > h3,
.honors-proof-card > p,
.honors-proof-card > dl {
  margin-left: clamp(22px, 2.3vw, 38px);
  margin-right: clamp(22px, 2.3vw, 38px);
}
.honors-proof-card > span {
  display: block;
  margin-top: clamp(24px, 2.4vw, 40px);
  color: var(--gold);
  font-size: clamp(13px, 0.82vw, 16px);
}
.honors-proof-card h3 {
  margin-top: 10px;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(28px, 2vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}
.honors-proof-card p {
  color: rgba(16, 19, 24, 0.72);
  font-size: clamp(16px, 0.98vw, 19px);
  line-height: 1.86;
}
.honors-proof-card dl {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  margin-bottom: 26px;
}
.honors-proof-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(27, 46, 100, 0.12);
}
.honors-proof-card dt,
.honors-proof-card dd {
  margin: 0;
  font-size: clamp(14px, 0.86vw, 16px);
}
.honors-proof-card dt {
  color: rgba(16, 19, 24, 0.56);
}
.honors-proof-card dd {
  color: rgba(16, 19, 24, 0.78);
  text-align: right;
}
.honors-proof-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0 clamp(18px, 2vw, 30px) clamp(18px, 2vw, 30px);
}
.honors-proof-collage figure,
.honors-proof-feature figure {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 280px;
  padding: 16px;
  border: 1px solid rgba(27, 46, 100, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f3f0e8);
}
.honors-proof-collage figure:nth-child(even) {
  transform: translateY(16px);
}
.honors-proof-collage img,
.honors-proof-feature img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.honors-proof-feature {
  display: grid;
  gap: 16px;
  padding: 0 clamp(18px, 2vw, 30px) clamp(18px, 2vw, 30px);
}
.honors-proof-feature figure {
  min-height: 360px;
}
.honors-proof-feature b,
.honors-proof-feature small {
  display: block;
}
.honors-proof-feature b {
  color: var(--blue);
  font-size: clamp(20px, 1.3vw, 28px);
}
.honors-proof-feature small {
  color: rgba(16, 19, 24, 0.58);
  font-size: clamp(14px, 0.86vw, 16px);
}
.contact-entry__copy h1 {
  font-size: clamp(48px, 4vw, 82px) !important;
  letter-spacing: 0 !important;
}
.contact-entry__copy span,
.contact-entry__card p,
.contact-entry__mail,
.contact-entry__scopes b,
.contact-entry__button {
  font-size: clamp(16px, 1vw, 20px) !important;
}
.contact-entry__mail {
  line-height: 1.25 !important;
  overflow-wrap: anywhere;
}
.back-to-top {
  position: fixed;
  right: clamp(18px, 2vw, 34px);
  bottom: clamp(18px, 2vw, 34px);
  z-index: 80;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--blue);
  border: 1px solid rgba(224, 195, 122, 0.76);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--ivory));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1440px) {
  .nav {
    gap: clamp(12px, 1.7vw, 30px);
  }
}
@media (max-width: 1180px) {
  .honors-proof-head,
  .honors-proof-grid {
    grid-template-columns: 1fr;
  }
  .honors-proof-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 920px) {
  .product-image-viewer__image {
    padding: 20px 14px 116px !important;
  }
}

/* Navigation dropdown alignment and click-first interaction refinement. */
.nav-group {
  position: relative !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: clamp(44px, 3.1vw, 58px);
}

.nav-group > .nav-link {
  cursor: pointer;
}

.nav-group-toggle {
  flex: 0 0 auto;
  cursor: pointer;
}

.nav-dropdown {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 50% !important;
  right: auto !important;
  width: max-content;
  min-width: 220px;
  max-width: min(520px, calc(100vw - 48px));
  margin: 0 !important;
  transform: translate(-50%, 8px) !important;
  transform-origin: top center;
}

.nav-dropdown-wide {
  min-width: 360px;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) !important;
}

.nav-dropdown a {
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

@media (max-width: 1180px) {
  .nav-group {
    position: static !important;
  }

  .nav-dropdown,
  .nav-dropdown-wide {
    left: 0 !important;
    right: auto !important;
    top: calc(100% + 6px) !important;
    width: min(520px, calc(100vw - 36px));
    min-width: 0;
    transform: translateY(8px) !important;
  }

  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown,
  .nav-group.is-open .nav-dropdown {
    transform: translateY(0) !important;
  }
}

/* Header wordmark only: remove temporary logo mark and subtitles. */
.site-header .brand-wordmark-only {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  color: var(--white);
  font-family: "Rigelstar", "MiSans Latin", Arial, sans-serif !important;
  font-size: clamp(30px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  font-synthesis: none;
}

/* Unified official face for every visible MASSENAN wordmark. */
.massenan-wordmark,
.site-footer .brand-wordmark-only,
.brand-invert.brand-wordmark-only {
  font-family: "Rigelstar", "MiSans Latin", Arial, sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-synthesis: none;
}

.site-footer .brand-wordmark-only,
.brand-invert.brand-wordmark-only {
  color: var(--white);
  font-size: clamp(24px, 1.6vw, 34px);
}

/* Fallback: if any older header markup remains cached, force the header brand to MASSENAN only. */
.site-header .brand-mark,
.site-header .brand:not(.brand-wordmark-only) .brand-text {
  display: none !important;
}

.site-header .brand:not(.brand-wordmark-only)::before {
  content: "MASSENAN";
  color: var(--white);
  font-family: "Rigelstar", "MiSans Latin", Arial, sans-serif !important;
  font-size: clamp(30px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.065em;
  font-synthesis: none;
}

/* Homepage product series refinement. */
.product-section .product-browser {
  align-items: stretch;
}

.product-section .product-tab {
  grid-template-columns: 44px minmax(0, 1fr);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.72);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.product-section .product-tab.product-tab-overview {
  grid-template-columns: minmax(0, 1fr);
  padding-left: clamp(16px, 1.3vw, 22px);
}

.product-section .product-tab b {
  border: 1px solid rgba(224, 195, 122, 0.34);
  background: rgba(7, 18, 38, 0.76);
  color: rgba(224, 195, 122, 0.82);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.product-section .product-tab span,
.product-section .product-tab small {
  color: currentColor;
  transition: color 0.2s ease;
}

.product-section .product-tab small {
  opacity: 0.78;
  white-space: nowrap;
}

.product-section .product-tab:not(.product-tab-overview) b {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.product-section .product-tab:not(.product-tab-overview) span {
  grid-column: 2;
  grid-row: 1;
}

.product-section .product-tab:not(.product-tab-overview) small {
  grid-column: 2;
  grid-row: 2;
}

.product-section .product-tab.product-tab-overview span,
.product-section .product-tab.product-tab-overview small {
  grid-column: 1;
}

.product-section .product-tab:hover,
.product-section .product-tab.is-active {
  border-color: rgba(224, 195, 122, 0.5);
  background: linear-gradient(135deg, rgba(224, 195, 122, 0.16), rgba(255, 255, 255, 0.045));
  color: var(--gold-2);
  transform: translateX(2px);
}

.product-section .product-tab:hover b,
.product-section .product-tab.is-active b {
  border-color: rgba(224, 195, 122, 0.82);
  background: rgba(224, 195, 122, 0.16);
  color: var(--gold-2);
}

.product-section .product-tab:hover small,
.product-section .product-tab.is-active small {
  opacity: 1;
}

/* Keep bilingual product labels on one line at desktop widths. */
.product-section .product-nav-toggle {
  display: flex;
}

.product-section .product-tab-overview::before {
  content: "00";
  display: none;
  place-items: center;
  width: 38px;
  height: 38px;
  color: rgba(224, 195, 122, 0.82);
  background: rgba(7, 18, 38, 0.76);
  border: 1px solid rgba(224, 195, 122, 0.34);
  border-radius: 50%;
  line-height: 1;
}

.product-section .product-browser.is-collapsed .product-nav {
  justify-items: center;
}

.product-section .product-browser.is-collapsed .product-tab {
  box-sizing: border-box;
  grid-template-columns: 1fr;
  gap: 0;
  justify-content: center;
  justify-items: center;
  width: 48px;
  padding: 8px 4px;
}

.product-section .product-browser.is-collapsed .product-tab:hover,
.product-section .product-browser.is-collapsed .product-tab.is-active {
  transform: none;
}

.product-section .product-browser.is-collapsed .product-tab b,
.product-section .product-browser.is-collapsed .product-tab-overview::before {
  margin-inline: auto;
}

.product-section .product-browser.is-collapsed .product-tab span,
.product-section .product-browser.is-collapsed .product-tab small,
.product-section .product-browser.is-collapsed .product-nav-toggle span {
  display: none;
}

.product-section .product-browser.is-collapsed .product-tab-overview::before {
  display: grid;
}

@media (min-width: 961px) {
  .product-section #productBrowser {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .product-section #productBrowser .product-nav {
    position: sticky;
    display: grid;
    overflow-x: visible;
  }

  .product-section #productBrowser .product-tab {
    flex: initial;
    width: auto;
  }

  .product-section #productBrowser.is-collapsed {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .product-section #productBrowser.is-collapsed .product-tab {
    width: 48px;
  }
}

/* Navigation dropdown rebuild: single-state, stable positioning and full-row links. */
.site-header {
  overflow: visible;
}

.site-header .nav {
  position: relative;
  overflow-y: visible;
}

.site-header .nav-group {
  position: relative !important;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 58px;
  isolation: isolate;
}

.site-header .nav-group > .nav-link {
  min-height: 56px;
  padding-inline: 4px;
  cursor: pointer;
  touch-action: manipulation;
}

.site-header .nav-group-toggle {
  display: grid;
  flex: 0 0 36px;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  color: #e0c37a;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    color 0.2s ease,
    background-color 0.14s ease,
    border-color 0.14s ease;
}

.site-header .nav-group-toggle:hover,
.site-header .nav-group-toggle:focus-visible,
.site-header .nav-group.is-open > .nav-group-toggle {
  color: #e0c37a;
  background: rgba(255, 253, 247, 0.07);
  border-color: rgba(224, 195, 122, 0.22);
}

.site-header .nav-group-toggle:focus-visible,
.site-header .nav-dropdown > a:focus-visible {
  outline: 2px solid rgba(224, 195, 122, 0.78);
  outline-offset: 2px;
}

.site-header .nav-group-toggle > span {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.2s ease;
}

.site-header .nav-group.is-open > .nav-group-toggle {
  color: #fffdf7;
}

.site-header .nav-group.is-open > .nav-group-toggle > span {
  transform: rotate(225deg) translate(-1px, -1px) scale(1.12);
}

.site-header .nav-group .nav-dropdown {
  position: absolute !important;
  z-index: 100;
  top: calc(100% - 1px) !important;
  left: 50% !important;
  right: auto !important;
  display: grid;
  grid-template-columns: 1fr;
  width: 270px;
  min-width: 270px;
  max-width: min(520px, calc(100vw - 36px));
  max-height: min(70svh, 620px);
  margin: 0 !important;
  padding: 8px;
  overflow-y: auto;
  color: #f7f2ea;
  background:
    linear-gradient(145deg, rgba(15, 27, 61, 0.98), rgba(5, 6, 8, 0.985)),
    #071226;
  border: 1px solid rgba(224, 195, 122, 0.24);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.46);
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate(-50%, 6px) !important;
  transform-origin: top center;
  will-change: opacity, transform;
  transition:
    opacity 0.14s ease,
    transform 0.14s ease,
    visibility 0s linear 0.14s;
}

.site-header .nav-group .nav-dropdown-wide {
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  width: 480px;
  min-width: 480px;
}

.site-header .nav-group.is-open > .nav-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) !important;
  transition:
    opacity 0.14s ease,
    transform 0.14s ease,
    visibility 0s linear 0s;
}

.site-header .nav-dropdown > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 10px 14px;
  box-sizing: border-box;
  color: rgba(247, 242, 234, 0.86);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    color 0.14s ease,
    background-color 0.14s ease,
    border-color 0.14s ease;
}

.site-header .nav-dropdown > a::after {
  display: none !important;
}

.site-header .nav-dropdown > a:hover,
.site-header .nav-dropdown > a:focus-visible,
.site-header .nav-dropdown > a.is-active {
  color: #fffdf7;
  background: rgba(224, 195, 122, 0.11);
  border-color: rgba(224, 195, 122, 0.2);
  transform: none;
}

.site-header .nav-dropdown-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
  line-height: 1.28;
}

.site-header .nav-dropdown-copy > span {
  font-size: 15px;
  font-weight: 650;
}

.site-header .nav-dropdown-copy small {
  color: rgba(216, 224, 234, 0.58);
  font-size: 12px;
  font-weight: 450;
  line-height: 1.3;
}

.site-header .nav-dropdown > a:hover small,
.site-header .nav-dropdown > a:focus-visible small,
.site-header .nav-dropdown > a.is-active small {
  color: rgba(224, 195, 122, 0.8);
}

.site-header .nav-dropdown > a > i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  color: #fffdf7;
  background: transparent;
  border: 1px solid #fffdf7;
  border-radius: 50%;
  font-style: normal;
  line-height: 1;
  pointer-events: none;
  transform: scale(1);
  transform-origin: center;
  transition:
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    border-color 0.2s ease-out,
    transform 0.2s ease-out;
}

.site-header .nav-dropdown > a:hover > i,
.site-header .nav-dropdown > a:focus-visible > i {
  color: #e0c37a;
  background: transparent;
  border-color: #e0c37a;
  transform: scale(1.1);
}

.site-header .nav-dropdown > a:active > i {
  color: #e0c37a;
  background: transparent;
  border-color: #e0c37a;
  transform: scale(0.95);
}

.site-header .nav-dropdown > a.is-active > i,
.site-header .nav-dropdown > a[aria-current="page"] > i {
  color: #e0c37a;
  background: transparent;
  border-color: #e0c37a;
  transform: scale(1.1);
}

@media (max-width: 1180px) {
  .site-header .nav.has-open-menu {
    overflow: visible;
  }

  .site-header .nav-group {
    position: static !important;
  }

  .site-header .nav-group .nav-dropdown,
  .site-header .nav-group .nav-dropdown-wide {
    position: fixed !important;
    top: var(--nav-dropdown-top, 116px) !important;
    left: 18px !important;
    right: 18px !important;
    width: auto;
    min-width: 0;
    max-width: none;
    max-height: calc(100svh - var(--nav-dropdown-top, 116px) - 16px);
    transform: translateY(6px) !important;
  }

  .site-header .nav-group.is-open > .nav-dropdown {
    transform: translateY(0) !important;
  }
}

@media (max-width: 640px) {
  .site-header .nav-group .nav-dropdown-wide {
    grid-template-columns: 1fr;
  }

  .site-header .nav-dropdown > a {
    min-height: 52px;
    padding-block: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .nav-group .nav-dropdown,
  .site-header .nav-group-toggle > span,
  .site-header .nav-dropdown > a,
  .site-header .nav-dropdown > a > i {
    transition: none !important;
  }
}


/* Product category detail gallery control alignment and view-button state. */
.product-immersive-gallery .product-image-viewer {
  position: relative;
}

.product-immersive-gallery .product-thumb-rail__handle,
.product-immersive-gallery .product-image-viewer__arrow,
.product-immersive-gallery .product-image-viewer__zoom {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  line-height: 1;
}

@media (min-width: 861px) {
  .product-immersive-gallery .product-thumb-rail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-block: 14px 16px !important;
  }

  .product-immersive-gallery .product-thumb-rail__handle {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 46px;
    align-self: center;
    transform: none;
  }

  .product-immersive-gallery .product-thumb-rail__list {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
  }
}

.product-immersive-gallery .product-thumb-rail__handle > span {
  display: block;
  margin: 0;
}

.product-immersive-gallery .product-image-viewer__arrow {
  top: 50%;
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 50%;
  line-height: 0;
  transform: translateY(-50%);
}

.product-immersive-gallery .product-image-viewer__arrow.is-prev {
  right: auto;
  left: 22px;
}

.product-immersive-gallery .product-image-viewer__arrow.is-next {
  right: 22px;
  left: auto;
}

.product-immersive-gallery .product-image-viewer__arrow > svg {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  pointer-events: none;
}

.product-immersive-gallery .product-image-viewer__arrow:hover {
  transform: translateY(-50%);
}

.product-immersive-gallery .product-image-viewer__zoom {
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.product-immersive-gallery .product-image-viewer__zoom.is-visible {
  opacity: 0.72;
  visibility: visible;
  pointer-events: auto;
}

.product-immersive-gallery .product-image-viewer__zoom:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.product-immersive-gallery .product-image-viewer__zoom > span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
  font-size: 0 !important;
  line-height: 1 !important;
}

.product-immersive-gallery .product-image-viewer__zoom > span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.product-immersive-gallery .product-image-viewer__zoom > span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

@media (max-width: 860px) {
  .product-immersive-gallery .product-image-viewer__arrow {
    display: none;
  }

  .product-immersive-gallery .product-image-viewer__zoom {
    width: 46px;
    height: 46px;
  }
}


/* Shared interaction feedback for real links, controls and clickable cards. */
:root {
  --interaction-duration: 0.2s;
  --interaction-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --interaction-focus: rgba(224, 195, 122, 0.88);
}

body :where(a[href], button:not(:disabled)) {
  transform-origin: center;
  transition-duration: var(--interaction-duration);
  transition-timing-function: var(--interaction-ease);
  -webkit-tap-highlight-color: rgba(224, 195, 122, 0.14);
}

body a[href]:focus-visible,
body button:not(:disabled):focus-visible {
  outline: 2px solid var(--interaction-focus);
  outline-offset: 3px;
}

body :where(a[href], button:not(:disabled)):active {
  filter: brightness(0.97);
  opacity: 0.94;
}

body :where(.story-link, .panel-link, .about-visual-link, .about-more-link, .contact-entry__button, .credential-button, .product-nav-toggle, .product-tab, [data-news-filter], .product-info-panel__toggle, .product-info-float, .honors-bottom-cta a) {
  transition-property: color, background-color, border-color, box-shadow, opacity, filter, translate, scale;
  transition-duration: var(--interaction-duration);
  transition-timing-function: var(--interaction-ease);
}

body :where(.story-link, .panel-link, .about-visual-link, .about-more-link, .contact-entry__button, .credential-button, .product-nav-toggle, .product-tab, [data-news-filter], .product-info-panel__toggle, .product-info-float, .honors-bottom-cta a):focus-visible {
  transform: none;
  translate: 0 -2px;
  scale: 1.04;
}

body :where(.story-link, .panel-link, .about-visual-link, .about-more-link, .contact-entry__button, .credential-button, .product-nav-toggle, .product-tab, [data-news-filter], .product-info-panel__toggle, .product-info-float, .honors-bottom-cta a):active {
  transform: none;
  translate: 0 1px;
  scale: 0.96;
}

body :where(.site-header .nav-link, .site-header .brand, .site-header .nav-dropdown > a, .site-footer a, .contact-entry__mail, .news-detail-back, .product-info-panel__back, .lookbook-back) {
  transition-property: color, border-color, opacity, filter, translate, scale;
  transition-duration: var(--interaction-duration);
  transition-timing-function: var(--interaction-ease);
}

body :where(.site-header .nav-link, .site-header .brand, .site-header .nav-dropdown > a, .site-footer a, .contact-entry__mail, .news-detail-back, .product-info-panel__back, .lookbook-back):focus-visible {
  transform: none;
  translate: 0 -2px;
  scale: 1.015;
}

body :where(.site-header .nav-link, .site-header .brand, .site-header .nav-dropdown > a, .site-footer a, .contact-entry__mail, .news-detail-back, .product-info-panel__back, .lookbook-back):active {
  transform: none;
  translate: 0 1px;
  scale: 0.98;
}

body :where(.nav-group-toggle, .banner-arrow, .back-to-top, .product-thumb-rail__handle, .product-image-viewer__arrow, .product-image-viewer__zoom, .product-lightbox__arrow, .product-lightbox__close, .lookbook-lightbox__close, .lookbook-lightbox__nav, .product-thumb-rail__button, .product-lightbox__thumb) {
  transition-property: color, background-color, border-color, box-shadow, opacity, filter, transform, translate, scale, visibility;
  transition-duration: var(--interaction-duration);
  transition-timing-function: var(--interaction-ease);
}

body :where(.nav-group-toggle, .banner-arrow, .back-to-top, .product-thumb-rail__handle, .product-image-viewer__arrow, .product-image-viewer__zoom, .product-lightbox__arrow, .product-lightbox__close, .lookbook-lightbox__close, .lookbook-lightbox__nav, .product-thumb-rail__button, .product-lightbox__thumb):focus-visible {
  translate: 0 -2px;
  scale: 1.05;
}

.banner-arrow:focus-visible {
  transform: none;
}

body :where(.nav-group-toggle, .banner-arrow, .back-to-top, .product-thumb-rail__handle, .product-image-viewer__arrow, .product-image-viewer__zoom, .product-lightbox__arrow, .product-lightbox__close, .lookbook-lightbox__close, .lookbook-lightbox__nav, .product-thumb-rail__button, .product-lightbox__thumb):active {
  translate: 0 1px;
  scale: 0.96;
}

body :where(.product-series-section, .lookbook-photo, a[target="_blank"][aria-label^="打开原图"]) {
  transform-origin: center;
  transition-property: color, border-color, box-shadow, opacity, filter, translate, scale;
  transition-duration: var(--interaction-duration);
  transition-timing-function: var(--interaction-ease);
}

body :where(.product-series-section, .lookbook-photo, a[target="_blank"][aria-label^="打开原图"]):focus-visible {
  translate: 0 -3px;
  scale: 1.003;
  filter: brightness(1.035);
}

body :where(.product-series-section, .lookbook-photo, a[target="_blank"][aria-label^="打开原图"]):active {
  translate: 0 1px;
  scale: 0.995;
}

.news-list-card {
  transform-origin: center;
  transition: translate var(--interaction-duration) var(--interaction-ease), scale var(--interaction-duration) var(--interaction-ease), box-shadow var(--interaction-duration) var(--interaction-ease), border-color var(--interaction-duration) var(--interaction-ease);
}

.news-list-card:has(> .news-list-card__link:focus-visible) {
  transform: none;
  translate: 0 -3px;
  scale: 1.003;
  border-color: rgba(224, 195, 122, 0.42);
  box-shadow: 0 24px 58px rgba(4, 8, 18, 0.24);
}

.news-list-card:has(> .news-list-card__link:active) {
  transform: none;
  translate: 0 1px;
  scale: 0.995;
}

@media (hover: hover) and (pointer: fine) {
  body :where(a[href], button:not(:disabled)):hover {
    filter: brightness(1.035);
  }

  body :where(.story-link, .panel-link, .about-visual-link, .about-more-link, .contact-entry__button, .credential-button, .product-nav-toggle, .product-tab, [data-news-filter], .product-info-panel__toggle, .product-info-float, .honors-bottom-cta a):hover {
    transform: none;
    translate: 0 -2px;
    scale: 1.04;
  }

  body :where(.site-header .nav-link, .site-header .brand, .site-header .nav-dropdown > a, .site-footer a, .contact-entry__mail, .news-detail-back, .product-info-panel__back, .lookbook-back):hover {
    transform: none;
    translate: 0 -2px;
    scale: 1.015;
  }

  body :where(.nav-group-toggle, .banner-arrow, .back-to-top, .product-thumb-rail__handle, .product-image-viewer__arrow, .product-image-viewer__zoom, .product-lightbox__arrow, .product-lightbox__close, .lookbook-lightbox__close, .lookbook-lightbox__nav, .product-thumb-rail__button, .product-lightbox__thumb):hover {
    translate: 0 -2px;
    scale: 1.05;
  }

  .banner-arrow:hover {
    transform: none;
  }

  .product-immersive-gallery .product-image-viewer__zoom:hover {
    transform: translate(-50%, -50%);
  }

  body :where(.product-series-section, .lookbook-photo, a[target="_blank"][aria-label^="打开原图"]):hover {
    translate: 0 -3px;
    scale: 1.003;
    filter: brightness(1.035);
  }

  .news-list-card:has(> .news-list-card__link:hover) {
    transform: none;
    translate: 0 -3px;
    scale: 1.003;
    border-color: rgba(224, 195, 122, 0.42);
    box-shadow: 0 24px 58px rgba(4, 8, 18, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  body :where(a[href], button:not(:disabled)),
  .news-list-card {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    translate: none !important;
    scale: 1 !important;
  }

  body :where(a[href], button:not(:disabled)):hover,
  body :where(a[href], button:not(:disabled)):active,
  body :where(a[href], button:not(:disabled)):focus-visible {
    filter: none;
    opacity: 1;
  }

  .product-series-section img,
  .lookbook-photo img,
  .news-list-card img {
    transition-duration: 0.01ms !important;
    transform: none !important;
  }

  .story-link::after,
  .about-more-link::after,
  .contact-entry__button span,
  .credential-button i,
  .news-list-card .news-read-more span,
  .product-series-section__copy b {
    transition-duration: 0.01ms !important;
    transform: none !important;
  }
}


/* Homepage heading rhythm, uniform primary navigation spacing and transform-compatible feedback. */
.site-header .nav {
  gap: 20px;
}

.site-header .nav > .nav-link,
.site-header .nav-group > .nav-link {
  justify-content: center;
  min-height: 56px;
  padding-inline: 10px;
}

#products > .section-head,
#artists > .artists-head,
#news > .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: end;
  width: 100%;
  margin-inline: auto;
  margin-bottom: clamp(24px, 2.4vw, 38px);
}

#products > .section-head {
  max-width: 1780px;
}

#artists > .artists-head,
#news > .section-head {
  max-width: 1760px;
}

#products > .section-head > p,
#artists > .artists-head > p,
#news > .section-head > p {
  justify-self: end;
  width: min(100%, 640px);
  margin: 0;
  text-align: left;
}

body :where(.story-link, .panel-link, .about-visual-link, .about-more-link, .contact-entry__button, .credential-button, .product-nav-toggle, .product-tab, [data-news-filter], .product-info-panel__toggle, .product-info-float, .honors-bottom-cta a) {
  translate: none;
  scale: 1;
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition: color 0.2s var(--interaction-ease), background-color 0.2s var(--interaction-ease), border-color 0.2s var(--interaction-ease), box-shadow 0.2s var(--interaction-ease), opacity 0.2s var(--interaction-ease), filter 0.2s var(--interaction-ease), transform 0.2s var(--interaction-ease) !important;
}

body :where(.story-link, .panel-link, .about-visual-link, .about-more-link, .contact-entry__button, .credential-button, .product-nav-toggle, .product-tab, [data-news-filter], .product-info-panel__toggle, .product-info-float, .honors-bottom-cta a):focus-visible {
  translate: none;
  scale: 1;
  transform: translateY(-2px) scale(1.04) !important;
}

body :where(.site-header .nav-link, .site-header .brand, .site-header .nav-dropdown > a, .site-footer a, .contact-entry__mail, .news-detail-back, .product-info-panel__back, .lookbook-back) {
  translate: none;
  scale: 1;
  transform-origin: center;
  transition: color 0.2s var(--interaction-ease), border-color 0.2s var(--interaction-ease), opacity 0.2s var(--interaction-ease), filter 0.2s var(--interaction-ease), transform 0.2s var(--interaction-ease) !important;
}

body :where(.site-header .nav-link, .site-header .brand, .site-header .nav-dropdown > a, .site-footer a, .contact-entry__mail, .news-detail-back, .product-info-panel__back, .lookbook-back):focus-visible {
  translate: none;
  scale: 1;
  transform: translateY(-2px) scale(1.015) !important;
}

.banner-arrow {
  translate: none;
  scale: 1;
  transform: translateY(0) scale(1);
  transform-origin: center;
}

.banner-arrow:focus-visible {
  transform: translateY(-2px) scale(1.05) !important;
}

body :where(.product-series-section, .lookbook-photo, a[target="_blank"][aria-label^="打开原图"]) {
  translate: none;
  scale: 1;
  transform: translateY(0) scale(1);
  transition: color 0.2s var(--interaction-ease), border-color 0.2s var(--interaction-ease), box-shadow 0.2s var(--interaction-ease), opacity 0.2s var(--interaction-ease), filter 0.2s var(--interaction-ease), transform 0.2s var(--interaction-ease) !important;
}

body :where(.product-series-section, .lookbook-photo, a[target="_blank"][aria-label^="打开原图"]):focus-visible {
  transform: translateY(-3px) scale(1.003) !important;
}

.news-list-card:has(> .news-list-card__link:focus-visible) {
  translate: none;
  scale: 1;
  transform: translateY(-3px) scale(1.003) !important;
}

@media (hover: hover) and (pointer: fine) {
  body :where(.story-link, .panel-link, .about-visual-link, .about-more-link, .contact-entry__button, .credential-button, .product-nav-toggle, .product-tab, [data-news-filter], .product-info-panel__toggle, .product-info-float, .honors-bottom-cta a):hover {
    translate: none;
    scale: 1;
    transform: translateY(-2px) scale(1.04) !important;
  }

  body :where(.site-header .nav-link, .site-header .brand, .site-header .nav-dropdown > a, .site-footer a, .contact-entry__mail, .news-detail-back, .product-info-panel__back, .lookbook-back):hover {
    translate: none;
    scale: 1;
    transform: translateY(-2px) scale(1.015) !important;
  }

  .banner-arrow:hover {
    translate: none;
    scale: 1;
    transform: translateY(-2px) scale(1.05) !important;
  }

  body :where(.product-series-section, .lookbook-photo, a[target="_blank"][aria-label^="打开原图"]):hover {
    translate: none;
    scale: 1;
    transform: translateY(-3px) scale(1.003) !important;
  }

  .news-list-card:has(> .news-list-card__link:hover) {
    translate: none;
    scale: 1;
    transform: translateY(-3px) scale(1.003) !important;
  }
}

body :where(.story-link, .panel-link, .about-visual-link, .about-more-link, .contact-entry__button, .credential-button, .product-nav-toggle, .product-tab, [data-news-filter], .product-info-panel__toggle, .product-info-float, .honors-bottom-cta a):active {
  translate: none;
  scale: 1;
  transform: translateY(1px) scale(0.96) !important;
}

body :where(.site-header .nav-link, .site-header .brand, .site-header .nav-dropdown > a, .site-footer a, .contact-entry__mail, .news-detail-back, .product-info-panel__back, .lookbook-back):active {
  translate: none;
  scale: 1;
  transform: translateY(1px) scale(0.98) !important;
}

.banner-arrow:active {
  translate: none;
  scale: 1;
  transform: translateY(1px) scale(0.96) !important;
}

body :where(.product-series-section, .lookbook-photo, a[target="_blank"][aria-label^="打开原图"]):active,
.news-list-card:has(> .news-list-card__link:active) {
  translate: none;
  scale: 1;
  transform: translateY(1px) scale(0.995) !important;
}

.product-immersive-gallery .product-image-viewer__arrow:focus-visible {
  translate: none;
  scale: 1;
  transform: translateY(calc(-50% - 2px)) scale(1.05) !important;
}

.product-immersive-gallery .product-image-viewer__zoom:focus-visible {
  translate: none;
  scale: 1;
  transform: translate(-50%, calc(-50% - 2px)) scale(1.05) !important;
}

@media (hover: hover) and (pointer: fine) {
  .product-immersive-gallery .product-image-viewer__arrow:hover {
    translate: none;
    scale: 1;
    transform: translateY(calc(-50% - 2px)) scale(1.05) !important;
  }

  .product-immersive-gallery .product-image-viewer__zoom:hover {
    translate: none;
    scale: 1;
    transform: translate(-50%, calc(-50% - 2px)) scale(1.05) !important;
  }
}

.product-immersive-gallery .product-image-viewer__arrow:active {
  translate: none;
  scale: 1;
  transform: translateY(calc(-50% + 1px)) scale(0.96) !important;
}

.product-immersive-gallery .product-image-viewer__zoom:active {
  translate: none;
  scale: 1;
  transform: translate(-50%, calc(-50% + 1px)) scale(0.96) !important;
}

.back-to-top.is-visible:focus-visible {
  translate: none;
  scale: 1;
  transform: translateY(-2px) scale(1.05) !important;
}

@media (hover: hover) and (pointer: fine) {
  .back-to-top.is-visible:hover {
    translate: none;
    scale: 1;
    transform: translateY(-2px) scale(1.05) !important;
  }
}

.back-to-top.is-visible:active {
  translate: none;
  scale: 1;
  transform: translateY(1px) scale(0.96) !important;
}

@media (max-width: 1440px) {
  .site-header .nav {
    gap: 16px;
  }
}

@media (max-width: 760px) {
  #products > .section-head,
  #artists > .artists-head,
  #news > .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    margin-bottom: 24px;
  }

  #products > .section-head > p,
  #artists > .artists-head > p,
  #news > .section-head > p {
    justify-self: start;
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .site-header .nav {
    gap: 12px;
  }

  .site-header .nav > .nav-link,
  .site-header .nav-group > .nav-link {
    padding-inline: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body :where(.story-link, .panel-link, .about-visual-link, .about-more-link, .contact-entry__button, .credential-button, .product-nav-toggle, .product-tab, [data-news-filter], .product-info-panel__toggle, .product-info-float, .honors-bottom-cta a),
  body :where(.site-header .nav-link, .site-header .brand, .site-header .nav-dropdown > a, .site-footer a, .contact-entry__mail, .news-detail-back, .product-info-panel__back, .lookbook-back),
  .banner-arrow,
  body :where(.product-series-section, .lookbook-photo, a[target="_blank"][aria-label^="打开原图"]),
  .news-list-card {
    translate: none !important;
    scale: 1 !important;
    transform: none !important;
  }

  .product-immersive-gallery .product-image-viewer__arrow {
    transform: translateY(-50%) !important;
  }

  .product-immersive-gallery .product-image-viewer__zoom {
    transform: translate(-50%, -50%) !important;
  }

  .back-to-top.is-visible {
    transform: translateY(0) !important;
  }
}


/* Cross-device responsive audit: keep shared layout geometry stable from
   compact phones through iPad landscape without masking real overflow. */
:where(
  .site-header__inner,
  .site-header .nav,
  .about-stage-inner,
  .section-head,
  .artists-head,
  .product-browser,
  .product-panel,
  .product-panel-head,
  .contact-inner,
  .footer-inner,
  .footer-inner > *,
  .news-center-head,
  .news-detail-layout,
  .product-immersive-gallery,
  .product-image-viewer,
  .product-info-panel
) {
  min-width: 0;
}

:where(img, video, svg) {
  max-width: 100%;
}

.site-footer {
  overflow: clip;
}

.footer-contact a,
.footer-bottom span,
.contact-entry__mail,
.mail {
  overflow-wrap: anywhere;
}

@media (min-width: 761px) and (max-width: 1180px) {
  .site-header {
    min-height: 84px;
    padding-inline: 20px;
  }

  .site-header::after {
    left: 20px;
    right: 20px;
  }

  .site-header__inner {
    grid-template-columns: minmax(max-content, auto) minmax(0, 1fr);
    gap: clamp(12px, 2vw, 24px);
    min-height: 84px;
    padding-block: 0;
  }

  .site-header .brand-wordmark-only {
    font-size: clamp(24px, 3vw, 30px);
    letter-spacing: 0.045em;
  }

  .site-header .nav {
    justify-content: flex-end;
    gap: clamp(2px, 0.6vw, 8px);
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 0;
    font-size: clamp(12px, 1.45vw, 15px);
    overscroll-behavior-inline: contain;
  }

  .site-header .nav > .nav-link,
  .site-header .nav-group > .nav-link {
    min-height: 56px;
    padding-inline: clamp(4px, 0.6vw, 8px);
  }

  .site-header .nav-group {
    gap: 0;
    min-height: 56px;
  }

  .site-header .nav-group-toggle {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 132px;
  }

  .site-header + main > .home-hero {
    --home-header-height: 132px;
  }

  .banner-gallery {
    padding-top: 132px;
  }

  .banner-slide {
    height: calc(100svh - 132px);
  }

  .slide-copy {
    top: auto;
    bottom: clamp(28px, 6svh, 54px);
  }

  .slide-copy h1,
  .slide-copy h2 {
    max-width: 100%;
    font-size: clamp(34px, 10.5vw, 42px);
  }

  .about-stage .metrics {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-stage .metric:nth-child(n) {
    text-align: left;
  }

  .product-section .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(210px, 34vw, 260px);
    gap: 10px;
  }

  body .product-immersive-gallery,
  body .product-immersive-gallery.is-info-collapsed,
  body .product-immersive-gallery.is-thumbs-open {
    min-height: 100svh;
    padding-top: 132px !important;
  }

  .product-immersive-gallery .product-image-viewer {
    height: calc(100svh - 132px) !important;
  }

  .product-immersive-gallery .product-info-panel {
    max-height: calc(100svh - 132px) !important;
  }

  body .contact-entry {
    min-height: 100svh;
    padding-top: 132px !important;
  }

  body .contact-entry__inner {
    min-height: calc(100svh - 132px) !important;
  }

  .news-center-hero,
  .news-center-hero.is-light {
    padding-top: 152px;
  }

  .news-detail-page,
  .news-detail-page.is-light {
    padding-top: 148px;
  }

  .footer-bottom {
    width: 100%;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .site-header .brand-wordmark-only {
    font-size: 27px;
    letter-spacing: 0.045em;
  }

  .site-header .nav {
    gap: 8px;
    overscroll-behavior-inline: contain;
  }

  .product-section .product-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(250px, 76vw, 310px);
  }

  .product-panel-head h3 {
    font-size: 28px;
  }

  .footer-bottom {
    gap: 10px;
  }
}


/* Mobile about-page heading visibility and product-series tap reliability. */
.product-series-section {
  touch-action: manipulation;
}

.product-series-section__veil,
.product-series-section__frame {
  pointer-events: none;
}

/* Keep the homepage product category label static on touch layouts. */
@media (max-width: 960px) {
  .product-section #productBrowser,
  .product-section #productBrowser.is-collapsed {
    grid-template-columns: 1fr !important;
  }

  .product-section #productBrowser .product-nav {
    position: static;
    display: flex !important;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  .product-section #productBrowser .product-nav-toggle,
  .product-section #productBrowser.is-collapsed .product-nav-toggle {
    flex: 0 0 auto;
    width: auto !important;
    padding: 0 12px !important;
    cursor: default;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-x pan-y;
    opacity: 1 !important;
    filter: none !important;
    translate: none !important;
    scale: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .product-section #productBrowser .product-nav-toggle:hover,
  .product-section #productBrowser .product-nav-toggle:focus,
  .product-section #productBrowser .product-nav-toggle:active {
    outline: none !important;
    opacity: 1 !important;
    filter: none !important;
    translate: none !important;
    scale: 1 !important;
    transform: none !important;
  }

  .product-section #productBrowser.is-collapsed .product-tab {
    flex: 0 0 auto;
    width: 180px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    justify-content: initial;
    justify-items: initial;
    padding: 10px 12px;
  }

  .product-section #productBrowser.is-collapsed .product-tab-overview {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-section #productBrowser.is-collapsed .product-tab span,
  .product-section #productBrowser.is-collapsed .product-tab small,
  .product-section #productBrowser.is-collapsed .product-nav-toggle span {
    display: block;
  }

  .product-section #productBrowser.is-collapsed .product-tab-overview::before {
    display: none;
  }
}

/* Native touch scrolling for product-gallery thumbnail rails. */
@media (max-width: 860px) {
  .product-immersive-gallery .product-thumb-rail__handle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .product-immersive-gallery .product-thumb-rail,
  .product-immersive-gallery .product-thumb-rail:hover,
  .product-immersive-gallery .product-thumb-rail:focus-within,
  .product-immersive-gallery.is-thumbs-open .product-thumb-rail {
    left: 0;
    right: 0;
    width: auto !important;
    height: 94px;
    padding: 12px 14px 14px !important;
  }

  .product-immersive-gallery .product-thumb-rail__list {
    display: flex !important;
    width: 100%;
    min-width: 0;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-inline: contain;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .product-immersive-gallery .product-lightbox__thumbs {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-inline: contain;
    touch-action: pan-x pan-y;
  }

  .product-immersive-gallery .product-thumb-rail__list::-webkit-scrollbar,
  .product-immersive-gallery .product-lightbox__thumbs::-webkit-scrollbar {
    display: none;
  }

  .product-immersive-gallery .product-thumb-rail__button {
    flex: 0 0 62px;
    touch-action: manipulation;
    pointer-events: auto;
  }

  .product-immersive-gallery .product-lightbox__thumb {
    flex-shrink: 0;
    touch-action: manipulation;
    pointer-events: auto;
  }

  .product-immersive-gallery .product-thumb-rail__button img,
  .product-immersive-gallery .product-lightbox__thumb img {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
  }
}

@media (max-width: 760px) {
  .about-hero-simple {
    padding-top: 156px !important;
  }

  .about-hero-copy > p {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    overflow: visible;
  }
}
