:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --paper: #f5f5f7;
  --white: #fff;
  --line: rgba(29, 29, 31, 0.14);
  --max: 1400px;
  --page-pad: clamp(22px, 4vw, 64px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 52px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Helvetica Neue", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
a,
button {
  color: inherit;
}

body.search-is-open {
  overflow: hidden;
}

a {
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: #1d1d1f;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.catalog-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  background: rgba(245, 245, 247, 0);
  transition: background 320ms ease, border-color 320ms ease;
}

.catalog-header.is-scrolled {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 252, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.catalog-header:not(.is-scrolled) {
  background: rgba(13, 13, 13, 0.34);
}

.catalog-header:not(.is-scrolled) .brand-logo {
  filter: grayscale(1) invert(1) brightness(2.2) contrast(1.8);
}

.catalog-header:not(.is-scrolled) .catalog-nav a,
.catalog-header:not(.is-scrolled) .mobile-series-indicator {
  color: rgba(255, 255, 255, 0.82);
}

.catalog-header:not(.is-scrolled) .catalog-nav a::after,
.catalog-header:not(.is-scrolled) .mobile-menu-toggle span {
  background: #fff;
}

.catalog-brand {
  justify-self: start;
  width: 44px;
  height: 48px;
  display: grid;
  place-items: center;
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.mobile-menu-toggle {
  position: absolute;
  left: calc(var(--page-pad) + 52px);
  display: grid;
  appearance: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-items: center;
  align-content: center;
  gap: 7px;
  justify-self: end;
  border: 0;
  border-radius: 50%;
  outline: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 19px;
  height: 1.5px;
  display: block;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 300ms var(--ease-out),
    width 220ms ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

.mobile-menu-layer {
  position: fixed;
  inset: 52px 0 0;
  z-index: 49;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.mobile-menu-layer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: transparent;
}

.mobile-menu-panel {
  position: absolute;
  top: 8px;
  left: calc(var(--page-pad) + 52px);
  width: min(210px, calc(100% - (var(--page-pad) * 2)));
  display: grid;
  padding: 6px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 14px;
  background: rgba(250, 250, 252, 0.98);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  transition:
    opacity 180ms ease,
    transform 240ms var(--ease-out);
}

.mobile-menu-layer.is-open .mobile-menu-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-menu-panel a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 560;
  letter-spacing: -0.01em;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  background: #efeff1;
  outline: 0;
}

.mobile-menu-panel a span:last-child {
  color: #8e8e93;
  font-size: 13px;
  font-weight: 400;
}

.mobile-series-indicator {
  display: none;
  color: #424245;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.catalog-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.catalog-nav a {
  position: relative;
  padding: 17px 0 15px;
  color: #424245;
  font-size: 11px;
  white-space: nowrap;
}

.catalog-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 260ms var(--ease-out);
}

.catalog-nav a:hover::after,
.catalog-nav a:focus-visible::after,
.catalog-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.search-dock {
  position: fixed;
  top: 52px;
  right: 0;
  left: 0;
  z-index: 45;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px var(--page-pad);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 252, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
  transition:
    opacity 280ms ease,
    transform 420ms var(--ease-out);
}

.search-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.series-jump {
  position: absolute;
  top: calc(100% + 6px);
  left: max(10px, calc(var(--page-pad) / 2));
  z-index: 2;
}

.series-jump-toggle {
  width: 44px;
  min-height: 30px;
  appearance: none;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  color: #424245;
  font: inherit;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  cursor: pointer;
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.series-jump-toggle:hover,
.series-jump-toggle:focus-visible,
.series-jump.is-open .series-jump-toggle {
  background: #fff;
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.12);
  outline: 0;
  transform: translateY(-1px);
}

.series-jump-menu {
  position: absolute;
  top: 37px;
  left: 0;
  width: min(220px, calc(100vw - (var(--page-pad) * 2)));
  display: grid;
  gap: 2px;
  padding: 6px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 16px;
  background: rgba(250, 250, 252, 0.98);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.13);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 240ms var(--ease-out);
}

.series-jump.is-open .series-jump-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.series-jump-menu a {
  min-height: 42px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
  padding: 0 11px;
  border-radius: 11px;
  color: #1d1d1f;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.series-jump-menu a:hover,
.series-jump-menu a:focus-visible,
.series-jump-menu a.is-current {
  background: #ededf0;
  outline: 0;
}

.series-jump-menu a span {
  color: #8e8e93;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.series-jump-menu a strong {
  font-weight: 580;
}

.search-open,
.search-close,
.search-result {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.search-open {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.04);
  font-size: 12px;
  font-weight: 580;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.search-open:hover,
.search-open:focus-visible {
  background: #f0f0f2;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

.search-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  display: inline-block;
  border: 1.6px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -2px;
  width: 6px;
  height: 1.6px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.search-layer {
  position: fixed;
  inset: 52px 0 0;
  z-index: 60;
  padding: 10px var(--page-pad) var(--page-pad);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 260ms ease,
    visibility 260ms ease;
}

.search-layer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(18, 18, 20, 0.36);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: default;
}

.search-panel {
  position: relative;
  width: min(100%, 760px);
  max-height: calc(100svh - 82px);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-22px) scale(0.985);
  transition:
    opacity 300ms ease,
    transform 420ms var(--ease-out);
}

.search-layer.is-open .search-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.search-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.search-panel-head h2 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 590;
  line-height: 1;
  letter-spacing: -0.055em;
}

.search-close {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  background: #f0f0f2;
  font-size: 12px;
}

.search-close:hover,
.search-close:focus-visible {
  color: var(--ink);
  background: #e5e5e7;
}

.search-field {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 0 20px;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 16px;
  background: #f5f5f7;
  color: #6e6e73;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.search-field:focus-within {
  border-color: rgba(29, 29, 31, 0.32);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29, 29, 31, 0.06);
}

.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.search-field input::placeholder {
  color: #9b9ba0;
}

.search-status {
  min-height: 34px;
  padding: 13px 2px 8px;
  color: var(--muted);
  font-size: 11px;
}

.search-results {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.search-result {
  width: 100%;
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 15px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 14px;
  background: #fff;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.search-result:hover,
.search-result:focus-visible {
  border-color: rgba(29, 29, 31, 0.28);
  background: #f5f5f7;
  transform: translateY(-1px);
}

.search-result-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.search-result-copy strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-copy small {
  color: var(--muted);
  font-size: 10px;
}

.search-result-arrow {
  color: #8e8e93;
  font-size: 15px;
}

.search-empty {
  grid-column: 1 / -1;
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(29, 29, 31, 0.16);
  border-radius: 14px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 110px var(--page-pad) 80px;
  isolation: isolate;
  color: #f7f7f7;
  background: #121212;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 57% 44%, rgba(255, 255, 255, 0.032), transparent 34%),
    radial-gradient(circle at 15% 84%, rgba(92, 61, 45, 0.13), transparent 38%),
    linear-gradient(135deg, #0e0e0e 0%, #181818 54%, #111 100%);
}

.hero-atmosphere::before {
  content: "";
  position: absolute;
  top: clamp(-660px, -46vw, -420px);
  right: clamp(-630px, -41vw, -380px);
  width: clamp(820px, 78vw, 1320px);
  aspect-ratio: 1;
  border: 1.5px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.hero-atmosphere span {
  display: none;
}

.hero-brand-mark {
  position: absolute;
  left: clamp(-76px, -3.5vw, -24px);
  bottom: clamp(-128px, -8vw, -62px);
  z-index: 0;
  width: clamp(360px, 35vw, 610px);
  height: auto;
  overflow: visible;
  fill: rgba(82, 55, 42, 0.25);
  filter: drop-shadow(0 18px 48px rgba(0, 0, 0, 0.22));
}

.hero-materials {
  position: absolute;
  right: clamp(-48px, -1.2vw, -12px);
  bottom: clamp(-360px, -18vw, -230px);
  z-index: 1;
  width: clamp(520px, 45vw, 700px);
  height: clamp(620px, 58vw, 860px);
}

.hero-material {
  position: absolute;
  width: 47%;
  height: 80%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 7px;
  background: #1a1a1a;
  box-shadow:
    -18px 30px 58px rgba(0, 0, 0, 0.52),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform-origin: 50% 100%;
}

.hero-material:nth-child(1) {
  top: 16%;
  left: 0;
  z-index: 1;
  transform: rotate(11deg);
}

.hero-material:nth-child(2) {
  top: 10%;
  left: 25%;
  z-index: 2;
  transform: rotate(10deg);
}

.hero-material:nth-child(3) {
  top: 0;
  left: 50%;
  z-index: 3;
  transform: rotate(9deg);
}

.hero-material picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-material img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-material-maple img {
  filter: brightness(0.98) saturate(0.88);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1400px);
  padding-right: clamp(300px, 31vw, 480px);
  padding-left: clamp(260px, 30vw, 460px);
  text-align: left;
}

.hero-kicker,
.section-label,
.series-english {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: clamp(24px, 3.6vh, 42px);
  color: rgba(255, 255, 255, 0.76);
}

.catalog-hero h1 {
  margin: 0;
  letter-spacing: -0.055em;
}

.catalog-hero h1 span {
  display: block;
  white-space: nowrap;
}

.catalog-hero h1 span:first-child {
  color: #fff;
  font-size: clamp(4rem, 7.1vw, 7.3rem);
  font-weight: 700;
  line-height: 0.92;
}

.catalog-hero h1 span:last-child {
  margin-top: 0.2em;
  color: #eeeef0;
  font-size: clamp(3.1rem, 5.5vw, 5.7rem);
  font-weight: 560;
  line-height: 0.98;
}

.hero-summary {
  margin: clamp(34px, 5vh, 54px) 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.hero-enter {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(28px);
  animation: hero-enter 1.25s var(--ease-out) forwards;
}

.hero-inner h1 {
  animation-delay: 120ms;
}

.hero-summary {
  animation-delay: 250ms;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 12px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
  animation-delay: 500ms;
}

.scroll-cue.hero-enter {
  animation-name: scroll-cue-enter;
}

.scroll-line {
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-line::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: #fff;
  animation: scroll-line 2s ease-in-out infinite;
}

.hero-edition {
  position: absolute;
  right: var(--page-pad);
  bottom: 31px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0.18em;
}

@keyframes hero-enter {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes scroll-cue-enter {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translate(-50%, 28px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, 0);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(-18px);
  }
  55%,
  100% {
    transform: translateY(44px);
  }
}

.series-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.series-section {
  --section-bg: #f5f5f7;
  --next-section-bg: var(--section-bg);
  --card-bg: #e9e9eb;
  --accent: #7b7b80;
  --series-transition-size: clamp(120px, 11vw, 220px);
  position: relative;
  scroll-margin-top: 92px;
  padding: clamp(60px, 8vw, 115px) var(--page-pad);
  background-color: var(--section-bg);
  background-image: linear-gradient(
    to bottom,
    var(--section-bg) 0,
    var(--section-bg) calc(100% - var(--series-transition-size)),
    var(--next-section-bg) 100%
  );
}

.theme-nano {
  --section-bg: #f1f3f1;
  --next-section-bg: #e8e7e4;
  --card-bg: #e2e7e2;
  --accent: #6d7c70;
}

.theme-stone {
  --section-bg: #e8e7e4;
  --next-section-bg: #ede8e0;
  --card-bg: #d8d5cf;
  --accent: #77726b;
}

.theme-couture {
  --section-bg: #ede8e0;
  --next-section-bg: #f8f6f1;
  --card-bg: #ddd4c7;
  --accent: #806b55;
  color: var(--ink);
}

.theme-solid {
  --section-bg: #f8f6f1;
  --next-section-bg: #ddd6cb;
  --card-bg: #ece9e0;
  --accent: #9b8f7d;
}

.theme-wood {
  --section-bg: #ddd6cb;
  --next-section-bg: #e9edf2;
  --card-bg: #cec3b4;
  --accent: #755c43;
}

.theme-pet {
  --section-bg: #e9edf2;
  --card-bg: #d9e0e8;
  --accent: #667689;
}

.series-heading {
  display: grid;
  grid-template-columns: minmax(90px, 0.55fr) minmax(0, 2.1fr) minmax(260px, 1fr);
  gap: clamp(26px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(54px, 8vw, 110px);
  padding-top: 18px;
  border-top: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 18%, transparent);
}

.series-index {
  align-self: start;
  display: flex;
  gap: 8px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.series-english {
  color: var(--accent);
}

.series-title-wrap h2 {
  margin: 16px 0 -0.1em;
  font-size: clamp(3.6rem, 8vw, 8.8rem);
  font-weight: 590;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.series-description {
  max-width: 410px;
  margin: 0;
  color: color-mix(in srgb, currentColor 62%, transparent);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  letter-spacing: -0.01em;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 30px);
  align-items: start;
}

.sample-card {
  min-width: 0;
  margin: 0;
  scroll-margin-top: 122px;
}

.sample-card:nth-child(4n + 1) {
  grid-column: 1 / span 7;
}

.sample-card:nth-child(4n + 2) {
  grid-column: 8 / -1;
  margin-top: clamp(70px, 10vw, 150px);
}

.sample-card:nth-child(4n + 3) {
  grid-column: 1 / span 5;
  margin-top: clamp(26px, 5vw, 70px);
}

.sample-card:nth-child(4n + 4) {
  grid-column: 6 / -1;
  margin-top: clamp(110px, 15vw, 220px);
}

.sample-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: clamp(16px, 2.4vw, 34px);
  background: var(--card-bg);
  transform: translateZ(0);
}

.sample-card.is-located .sample-media {
  animation: product-located 1.8s var(--ease-out);
}

@keyframes product-located {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
  }
  22%,
  68% {
    box-shadow:
      0 0 0 5px rgba(0, 102, 204, 0.8),
      0 18px 48px rgba(0, 102, 204, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
  }
}

.sample-card:nth-child(4n + 1) .sample-media,
.sample-card:nth-child(4n + 4) .sample-media {
  aspect-ratio: 1.35 / 1;
}

.sample-media-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.sample-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.sample-media-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.sample-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 700ms ease, transform 1.4s var(--ease-out);
}

.sample-media.is-loaded img {
  opacity: 1;
  transform: scale(1);
}

.sample-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, transparent 25%, rgba(255, 255, 255, 0.32) 45%, transparent 65%),
    var(--card-bg);
  background-size: 220% 100%, 100% 100%;
  animation: loading-sheen 1.8s ease-in-out infinite;
  transition: opacity 450ms ease;
}

.sample-media.is-loaded .sample-loading,
.sample-media.is-error .sample-loading,
.sample-media.is-placeholder .sample-loading {
  opacity: 0;
}

.sample-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: color-mix(in srgb, currentColor 45%, transparent);
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0;
}

.sample-media.is-error .sample-fallback,
.sample-media.is-placeholder .sample-fallback {
  opacity: 1;
}

@keyframes loading-sheen {
  from {
    background-position: 120% 0, 0 0;
  }
  to {
    background-position: -120% 0, 0 0;
  }
}

.sample-card figcaption {
  display: grid;
  grid-template-columns: minmax(62px, auto) 1fr;
  gap: 12px;
  padding: 14px 2px 0;
  border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent);
}

.sample-card figcaption span {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.sample-card figcaption strong {
  font-size: 13px;
  font-weight: 520;
  letter-spacing: -0.01em;
}

.has-js [data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(42px);
  transition:
    opacity 900ms var(--ease-out),
    filter 900ms var(--ease-out),
    transform 1.05s var(--ease-out);
}

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

.has-js [data-reveal-group] .sample-card {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(48px);
  transition:
    opacity 900ms var(--ease-out),
    filter 900ms var(--ease-out),
    transform 1.05s var(--ease-out);
}

.has-js [data-reveal-group].is-visible .sample-card {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.has-js [data-reveal-group].is-visible .sample-card:nth-child(2) {
  transition-delay: 100ms;
}

.has-js [data-reveal-group].is-visible .sample-card:nth-child(3) {
  transition-delay: 180ms;
}

.has-js [data-reveal-group].is-visible .sample-card:nth-child(4) {
  transition-delay: 260ms;
}

.catalog-closing {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 6px 24px;
  padding: 13px var(--page-pad);
  color: #f5f5f7;
  background: #0b0b0c;
  text-align: center;
}

.catalog-closing .section-label {
  grid-column: 2;
  color: #f5f5f7;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
}

.catalog-color-notice {
  grid-column: 1 / -1;
  margin: 0 0 1px;
  color: #a1a1a6;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.catalog-records {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: #8e8e93;
  font-size: 10px;
  line-height: 1.35;
  white-space: nowrap;
}

.catalog-records a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 180ms ease;
}

.catalog-records a:hover,
.catalog-records a:focus-visible {
  color: #f5f5f7;
}

.catalog-records img {
  width: 14px;
  height: 16px;
  object-fit: contain;
}

.info-body {
  background: #f5f5f7;
}

.info-page-shell {
  min-height: 100svh;
  overflow: clip;
}

.info-catalog-header .info-header-title {
  grid-column: 2;
  justify-self: center;
  color: #424245;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.info-catalog-header + .mobile-menu-layer .mobile-menu-panel a[aria-current="page"] {
  background: #efeff1;
}

.info-page {
  padding-top: 52px;
}

.info-hero {
  position: relative;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--max));
  min-height: clamp(620px, 82svh, 860px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: clamp(28px, 5vw, 88px);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 138px) clamp(34px, 6vw, 96px);
  overflow: hidden;
  border-radius: 0 0 36px 36px;
  background:
    radial-gradient(circle at 84% 22%, rgba(221, 225, 221, 0.66), transparent 22%),
    linear-gradient(145deg, #fff 0%, #fbfbfd 64%, #f1f0ed 100%);
}

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

.info-hero .section-label,
.info-section-heading .section-label,
.contact-location-summary .section-label {
  color: #6e6e73;
  font-size: 11px;
  letter-spacing: 0.24em;
}

.info-hero h1 {
  max-width: 920px;
  margin: 28px 0 0;
  font-size: clamp(4rem, 7.4vw, 7.6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.info-hero h1 span {
  color: #8e8e93;
}

.info-summary {
  max-width: 700px;
  margin: 44px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  line-height: 1.8;
}

.info-hero-sculpture {
  position: relative;
  width: min(29vw, 380px);
  aspect-ratio: 0.82 / 1;
  justify-self: end;
}

.info-hero-sculpture span {
  position: absolute;
  display: block;
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.66),
    0 30px 90px rgba(45, 45, 48, 0.08);
}

.info-hero-sculpture span:nth-child(1) {
  inset: 3% 18% 42% 2%;
  background: linear-gradient(145deg, rgba(215, 220, 214, 0.95), rgba(246, 247, 244, 0.8));
  transform: rotate(-13deg);
}

.info-hero-sculpture span:nth-child(2) {
  inset: 34% 0 6% 27%;
  background: linear-gradient(145deg, rgba(221, 211, 198, 0.8), rgba(250, 247, 243, 0.9));
  transform: rotate(12deg);
}

.info-hero-sculpture span:nth-child(3) {
  width: 30%;
  aspect-ratio: 1;
  top: 26%;
  left: 8%;
  background: rgba(185, 189, 193, 0.32);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.info-metrics,
.info-story,
.contact-directory {
  width: min(calc(100% - (var(--page-pad) * 2)), 1240px);
  margin-inline: auto;
}

.info-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-block: clamp(72px, 9vw, 132px);
}

.info-metrics article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 42px);
  border-radius: 30px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.04);
}

.info-metrics article:nth-child(2) {
  background: #e9ece7;
}

.info-metrics article:nth-child(3) {
  background: #e9e6e2;
}

.info-metrics strong {
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  font-weight: 590;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.info-metrics sup {
  position: relative;
  top: -0.55em;
  font-size: 0.32em;
  letter-spacing: 0;
}

.info-metrics p {
  margin: 0;
  color: #6e6e73;
  font-size: 13px;
}

.info-story {
  padding-bottom: clamp(100px, 12vw, 180px);
}

.info-story article {
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: center;
  padding: clamp(50px, 8vw, 110px) clamp(28px, 6vw, 88px);
  border-top: 1px solid var(--line);
}

.info-story article:last-child {
  border-bottom: 1px solid var(--line);
}

.info-story-index {
  align-self: start;
  margin: 8px 0 0;
  color: #8e8e93;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.info-story h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 590;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.info-story article div > p {
  max-width: 680px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.85;
}

.contact-directory {
  padding-block: clamp(70px, 8vw, 118px) clamp(92px, 11vw, 160px);
}

.info-section-heading {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  padding-bottom: clamp(38px, 5vw, 62px);
}

.info-section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.13vw, 4.2rem);
  font-weight: 590;
  line-height: 1;
  letter-spacing: -0.07em;
}

.contact-details-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "contacts"
    "location"
    "map";
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 34px;
  background: rgba(29, 29, 31, 0.1);
}

.contact-list-2026 {
  grid-area: contacts;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.contact-row-2026 {
  min-height: 118px;
  flex: 1;
  display: grid;
  grid-template-columns: 34px minmax(240px, 1fr) auto 72px;
  gap: clamp(14px, 2.4vw, 34px);
  align-items: center;
  padding: 20px clamp(22px, 3vw, 38px);
  border-bottom: 1px solid rgba(29, 29, 31, 0.1);
}

.contact-row-2026:last-child {
  border-bottom: 0;
}

.contact-row-2026 > span {
  color: #8e8e93;
  font-size: 10px;
}

.contact-row-2026 h3 {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 590;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.info-phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.info-phone-list a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink);
  background: #f1f1f3;
  font-size: 11px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.info-phone-list a:hover,
.info-phone-list a:focus-visible {
  background: #e5e5e8;
  transform: translateY(-1px);
}

.contact-row-2026 > p {
  margin: 0;
  color: #6e6e73;
  font-size: 10px;
  text-align: right;
  white-space: nowrap;
}

.contact-location-summary {
  grid-area: location;
  padding: clamp(28px, 3.5vw, 46px);
  color: var(--ink);
  background: #fff;
}

.contact-location-summary .section-label {
  color: #6e6e73;
}

.contact-location-summary h3 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 590;
  line-height: 1;
  letter-spacing: -0.065em;
}

.contact-location-summary address {
  max-width: 420px;
  margin-top: 18px;
  color: #6e6e73;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-style: normal;
  line-height: 1.75;
}

.info-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.info-map-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border-radius: 999px;
  color: #1d1d1f;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.08);
  font-size: 12px;
}

.info-map {
  grid-area: map;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, #f6f6f3, transparent 32%),
    #d9ddd7;
}

.info-map img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.info-footer {
  padding: 28px var(--page-pad) 24px;
  color: #f5f5f7;
  background: #0b0b0c;
}

.info-footer-main,
.info-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.info-footer-main {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.info-footer-main .section-label {
  color: #f5f5f7;
  font-size: 11px;
}

.info-footer-slogan {
  max-width: 620px;
  margin: 12px 0 0;
  color: #8e8e93;
  font-size: 10px;
  line-height: 1.6;
}

.info-footer-main > a {
  font-size: 12px;
}

.info-footer-meta {
  padding-top: 20px;
}

.info-footer-meta > p {
  margin: 0;
  color: #8e8e93;
  font-size: 10px;
}

.info-footer .catalog-records {
  grid-column: auto;
}

.has-js [data-info-reveal] {
  opacity: 0;
  filter: blur(9px);
  transform: translateY(42px);
  transition:
    opacity 880ms var(--ease-out),
    filter 880ms var(--ease-out),
    transform 1s var(--ease-out);
}

.has-js [data-info-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (max-width: 900px) {
  .catalog-closing {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 11px;
  }

  .catalog-closing .section-label,
  .catalog-color-notice,
  .catalog-records {
    grid-column: 1;
    justify-self: center;
  }

  .catalog-records {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 14px;
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .catalog-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .catalog-nav {
    display: none;
  }

  .hero-inner {
    padding-right: clamp(280px, 38vw, 380px);
    padding-left: clamp(54px, 10vw, 112px);
  }

  .hero-materials {
    right: -92px;
  }

  .mobile-series-indicator {
    display: block;
    justify-self: center;
    max-width: 46vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-menu-toggle {
    position: static;
  }

  .mobile-menu-panel {
    right: var(--page-pad);
    left: auto;
    transform-origin: top right;
  }

  .info-hero {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr);
    padding-inline: clamp(30px, 6vw, 64px);
  }

  .info-hero-sculpture {
    width: min(34vw, 320px);
  }

  .info-story article {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .info-section-heading {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .contact-row-2026 {
    grid-template-columns: 30px minmax(190px, 1fr) auto 62px;
    gap: 16px;
    padding-inline: 22px;
  }

  .contact-row-2026 h3 {
    font-size: 15px;
  }

  .info-phone-list {
    gap: 5px;
  }

  .info-phone-list a {
    padding-inline: 10px;
  }

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

  .series-heading {
    grid-template-columns: 80px 1fr;
  }

  .series-description {
    grid-column: 2;
    margin-top: 14px;
  }
}

@media (max-width: 700px) {
  :root {
    --page-pad: 20px;
  }

  .catalog-header {
    min-height: 48px;
  }

  .mobile-menu-layer {
    inset: 48px 0 0;
  }

  .mobile-menu-panel {
    top: 6px;
    right: 12px;
    width: 180px;
  }

  .info-page {
    padding-top: 48px;
  }

  .info-hero {
    width: 100%;
    min-height: 720px;
    grid-template-columns: 1fr;
    align-content: center;
    padding: 92px var(--page-pad) 76px;
    border-radius: 0;
  }

  .info-hero h1 {
    font-size: clamp(3.4rem, 14.5vw, 5.6rem);
  }

  .info-summary {
    margin-top: 32px;
  }

  .info-hero-sculpture {
    position: absolute;
    right: -14%;
    bottom: -5%;
    width: 64vw;
    max-width: 300px;
    opacity: 0.68;
  }

  .info-metrics {
    grid-template-columns: 1fr;
    padding-block: 72px;
  }

  .info-metrics article {
    min-height: 220px;
    border-radius: 24px;
  }

  .info-story {
    padding-bottom: 96px;
  }

  .info-story article {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 64px 4px;
  }

  .info-story h2 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  .info-story article div > p {
    margin-top: 28px;
  }

  .contact-directory {
    padding-block: 34px 72px;
  }

  .info-section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 26px;
  }

  .info-section-heading h2 {
    font-size: clamp(2.1rem, 9.1vw, 3.36rem);
  }

  .contact-details-card {
    border-radius: 22px;
  }

  .contact-location-summary {
    padding: 22px 18px 20px;
  }

  .contact-location-summary h3 {
    margin-top: 12px;
    font-size: clamp(1.65rem, 7.6vw, 2.35rem);
  }

  .contact-location-summary address {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .contact-location-summary .info-map-actions {
    margin-top: 16px;
  }

  .contact-location-summary .info-map-actions a {
    min-height: 34px;
    padding-inline: 12px;
  }

  .contact-row-2026 {
    min-height: 0;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px 14px;
    padding: 18px;
  }

  .contact-row-2026 h3 {
    font-size: 15px;
  }

  .contact-row-2026 .info-phone-list {
    grid-column: 2;
    justify-content: flex-start;
  }

  .contact-row-2026 > p {
    grid-column: 2;
    text-align: left;
  }

  .contact-row-2026 .info-phone-list a {
    min-height: 32px;
    font-size: 11px;
  }

  .info-map {
    min-height: 220px;
  }

  .info-map img {
    min-height: 220px;
  }

  .info-footer {
    padding: 24px 20px;
  }

  .info-footer-main,
  .info-footer-meta {
    align-items: flex-start;
  }

  .info-footer-meta {
    flex-direction: column;
  }

  .info-footer .catalog-records {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .info-footer .catalog-records a {
    text-align: left;
  }

  .search-dock {
    top: 48px;
    min-height: 50px;
  }

  .search-open {
    width: 100%;
    max-width: 340px;
  }

  .search-layer {
    inset: 48px 0 0;
    padding: 8px;
  }

  .search-panel {
    max-height: calc(100svh - 64px);
    padding: 24px 18px 18px;
    border-radius: 20px;
  }

  .search-field {
    margin-top: 26px;
  }

  .search-results {
    grid-template-columns: 1fr;
  }

  .catalog-hero {
    min-height: 760px;
    place-items: start stretch;
    padding-top: 128px;
    padding-bottom: 126px;
  }

  .hero-atmosphere::before {
    top: -330px;
    right: -390px;
    width: 720px;
  }

  .hero-brand-mark {
    left: -154px;
    bottom: -54px;
    width: 410px;
    fill: rgba(82, 55, 42, 0.2);
  }

  .hero-inner {
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .hero-kicker {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .hero-summary {
    max-width: 330px;
    margin-top: 30px;
    font-size: 0.93rem;
    line-height: 1.72;
    white-space: normal;
  }

  .hero-materials {
    right: -270px;
    bottom: -224px;
    z-index: 1;
    width: 540px;
    height: 650px;
    opacity: 0.7;
  }

  .hero-edition {
    display: none;
  }

  .catalog-hero h1 span:first-child {
    font-size: clamp(3.45rem, 16.5vw, 5.2rem);
  }

  .catalog-hero h1 span:last-child {
    margin-top: 0.3em;
    font-size: clamp(2.38rem, 11.5vw, 4.1rem);
  }

  .series-section {
    padding-block: 55px;
  }

  .series-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 54px;
  }

  .series-description {
    grid-column: auto;
    margin-top: 10px;
  }

  .series-title-wrap h2 {
    font-size: clamp(3.5rem, 16vw, 5.4rem);
  }

  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 12px;
  }

  .sample-card:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }

  .sample-card:nth-child(even) {
    margin-top: 58px;
  }

  .sample-card:nth-child(n) .sample-media {
    aspect-ratio: 0.82 / 1;
    border-radius: 18px;
  }

  /* 手机端卡片较窄，进一步截取高分辨率细节图的中心区域，
     让真实皮纹在双列布局下仍有足够的视觉尺寸。 */
  .sample-card.is-texture-detail .sample-media img {
    transform: scale(3.5);
  }

  .sample-card.is-texture-detail .sample-media.is-loaded img {
    transform: scale(3.4);
  }

  .sample-card figcaption {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }

  .sample-card figcaption span {
    display: block;
    margin-bottom: 1px;
    font-size: 9px;
  }

  .sample-card figcaption strong {
    font-size: 12px;
  }

  .catalog-closing {
    min-height: 0;
    padding-block: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-enter,
  .has-js [data-reveal],
  .has-js [data-info-reveal],
  .has-js [data-reveal-group] .sample-card {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
