:root {
  --ink: #0f1113;
  --muted: #5e646b;
  --line: #d9dde1;
  --soft: #f4f6f7;
  --paper: #ffffff;
  --accent: #6b6757;
  --accent-dark: #373329;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.is-menu-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

body.is-menu-open .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 81px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 30px;
}

.brand {
  display: flex;
  align-items: center;
  width: 264px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 16px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 81px;
  padding: 0 20px;
}

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

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

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

.site-nav a[data-nav="contact"] {
  min-height: 48px;
  margin-left: 20px;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.site-nav a[data-nav="contact"]::after {
  display: none;
}

.site-nav a[data-nav="contact"]:hover,
.site-nav a[data-nav="contact"].is-active {
  background: var(--ink);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  position: relative;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  min-height: calc(80dvh - 81px);
  max-width: none;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 92px) max(30px, calc((100vw - var(--max)) / 2 + 30px));
  overflow: hidden;
}

.hero-banner {
  isolation: isolate;
}

.hero-banner::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.74) 34%, rgba(255, 255, 255, 0.2) 68%, rgba(255, 255, 255, 0.08) 100%);
}
.hero-banner .reveal{max-width: 55%;}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg--one {
  background-image: url("../images/hero-bg-1.png");
}

.hero-bg--two {
  background-image: url("../images/hero-bg-2.png");
}

.hero-copy h1,
.page-hero h1,
.object-detail h1,
.article-detail h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 7vw, 48px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy p:not(.section-kicker),
.page-hero p,
.copy-block p,
.editorial-block p,
.article-body p,
.contact-note p,
.listing-content p {
  color: var(--muted);
  font-size: 16px;
}

.hero-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 14px 0 0;
  font-size: clamp(14px, 1.8vw, 21px);
}

.section-kicker {
  margin: 0 0 18px;
  color:var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 14px;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:active {
  transform: translateY(1px);
}

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

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: var(--paper);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--soft);
}

.hero-panel,
.object-media {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--soft);
}

.hero-panel img,
.object-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-panel figcaption,
.object-media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.hero-panel strong {
  color: var(--ink);
  font-weight: 500;
}

.section,
.detail-layout,
.article-detail {
  max-width: var(--max);
  margin: 0 auto;
  padding:clamp(24px, 4vw, 96px) clamp(20px, 4vw, 42px);
}

.page-hero {
  max-width: none;
  margin: 0;
  padding: clamp(28px, 3.5vw, 40px) max(20px, calc((100vw - var(--max)) / 2 + 20px));
  background: #f1f1f1;
}

.page-hero .section-kicker {
  margin-bottom: 10px;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.15;
}

.page-hero p:last-child {
  margin: 12px 0 0;
}

.page-breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.page-breadcrumb > a,
.page-breadcrumb > span:not(:last-child) {
  flex: 0 0 auto;
}

.page-breadcrumb > span:last-child {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-breadcrumb a {
  color: var(--muted);
}

.page-breadcrumb a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  border-bottom: 0;
}

.split-section::after,
.about-preview::after,
.feature-list::after {
  position: absolute;
  right: clamp(20px, 4vw, 42px);
  bottom: 0;
  left: clamp(20px, 4vw, 42px);
  height: 1px;
  background: var(--line);
  content: "";
}

.about-preview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px,1fr) minmax(260px,1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  border-bottom: 0;
}

.about-preview__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.about-preview__content .section-kicker {
  margin-bottom: 12px;
}

.about-preview__content p {
  margin:0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-preview__content .button {
  margin-top:22px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.about-preview__content .button:hover {
  background: var(--ink);
  color: var(--paper);
}

.about-preview__media {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  aspect-ratio: 4 / 3;
}

.about-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section h2,
.object-detail h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.section.about-preview .about-preview__content > h2 {
  margin: 0 0 48px;
}

.copy-block p {
  margin: 0 0 24px;
}

.text-link,
.back-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 14px;
}

.back-link {
  margin-bottom: 34px;
  color: var(--muted);
}

.feature-list,
.listing-section,
.article-list {
  border-bottom: 1px solid var(--line);
}

.feature-list {
  position: relative;
  border-bottom: 0;
}

.section-heading {
  margin-bottom: 34px;
}

.listing-row {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.large-row {
  grid-template-columns: minmax(220px, 310px) minmax(0, 1fr);
  padding-top: 0;
}

.auction-browser {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap:clamp(16px, 3vw, 64px);
  align-items: start;
}

.auction-categories {
  position: sticky;
  top: 88px;
}

.auction-filter-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 12px 20px;
  border: 0;
  background: #f2f2f2;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: left;
}

.auction-filter-toggle__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.auction-filter-toggle__icon::before,
.auction-filter-toggle__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.auction-filter-toggle__icon::before {
  width: 14px;
  height: 1.5px;
}

.auction-filter-toggle__icon::after {
  width: 1.5px;
  height: 14px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.auction-categories.is-open .auction-filter-toggle__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.auction-filter-panel__body {
  min-height: 0;
}

h2.auction-filter-title {
  margin: 0 0 8px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.15;
  color: var(--ink);
}

.auction-filter-list {
  display: flex;
  flex-direction: column;
}

.auction-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.auction-filter-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.auction-filter-item__value {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.auction-filter-item.is-active .auction-filter-item__value {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.auction-filter-item__chevron {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-right: 2px;
}

.auction-filter-item__chevron::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
}

.auction-filter-item:hover .auction-filter-item__value {
  color: var(--accent-dark);
}

.auction-results .listing-row {
  border-top: 1px solid var(--line);
}

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

.auction-card {
  min-width: 0;
}

.auction-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio:350 / 233;
  overflow: hidden;
  /*border: 1px solid var(--line);*/
  background: var(--paper);
}

.auction-card__image img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.auction-card__image:hover img {
  transform: scale(1.05);
}

.auction-card__body {
  padding-top: 16px;
}

.auction-card__body .meta {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
}

.auction-card__body h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size:clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.25;
}

.auction-card__spec {
  margin:4px 0 0;
  color: var(--muted);
  font-size:14px;
}

.auction-card__price {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.listing-image {
  display: block;
  border: 1px solid var(--line);
  background: var(--soft);
}

.listing-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.listing-content .meta {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
}

.listing-content h2,
.listing-content h3,
.article-row h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 3vw, 26px);
  font-weight: 400;
  line-height: 1.16;
  overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.listing-content p {
  max-width: 640px;
  margin: 18px 0 24px;
}

.compact-specs,
.detail-specs {
  margin: 28px 0;
}

.compact-specs div,
.detail-specs div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.compact-specs div:last-child,
.detail-specs div:last-child {
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 13px;
}

dd {
  margin: 0;
}

.news-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.news-strip .section-heading {
  margin-bottom: 0;
}

.news-strip .article-list {
  border-bottom: 0;
  min-width: 0;
}

.news-teaser {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-teaser__arrow,
.article-row__arrow {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--ink);
}

.news-teaser__arrow::before,
.article-row__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}

.news-teaser time,
.article-row time,
.article-detail time {
  color: var(--accent);
  font-size: 16px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.info-card {
  min-height: 170px;
  padding: 26px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.info-card:last-child {
  border-right: 0;
}

.info-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.info-card strong {
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.25;
}

.profile-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.profile-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.profile-list dt,
.profile-list dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.profile-list dt {
  color: var(--muted);
}

.profile-list dd {
  color: var(--ink);
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  border-top: 1px solid var(--line);
}

.scope-list p {
  position: relative;
  margin: 0;
  padding: 18px 0 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.8;
}

.scope-list p::before {
  position: absolute;
  top: 1.8em;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.editorial-block p {
  margin: 0 0 24px;
  font-size: clamp(22px, 3.8vw, 38px);
}

.editorial-visual {
  --scroll-shift: 0px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  max-width: none;
  min-height: clamp(520px, 70vh, 760px);
  margin: 0;
  padding: clamp(76px, 9vw, 128px) max(20px, calc((100vw - var(--max)) / 2 + 20px));
  background: #0e0e0e;
  color: var(--paper);
  isolation: isolate;
}

.editorial-visual__bg {
  position: absolute;
  inset: -8%;
  z-index: -2;
  background-image: url("../images/about/advisory-bg.png");
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--scroll-shift), 0) scale(1.08);
  transition: transform 120ms linear;
  will-change: transform;
}

.editorial-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:linear-gradient(90deg, rgb(0 0 0 / 0%) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.22) 78%, rgba(0, 0, 0, 0.12) 100%), linear-gradient(0deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 10%));
  content: "";
}

.editorial-visual__content {
  max-width: 620px;
  text-align: center;
}

.editorial-visual .section-kicker {
  color: #d6c8a0;
}

.editorial-visual h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--paper);
}

.editorial-visual p {
  color: rgba(255, 255, 255, 0.82);
}

.editorial-visual__content p:last-child {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.editorial-visual__statement {
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 400;
  line-height: 1.28;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 9px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 30px 0;
  color: var(--muted);
  font-size: 14px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.breadcrumb > a,
.breadcrumb > span[aria-hidden] {
  flex: 0 0 auto;
}

.breadcrumb > span:last-child {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.lot-detail {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 30px 72px;
}

.lot-heading h1 {
  margin: 0 0 18px;
  font-family: inherit;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.35;
}

.lot-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(320px, 0.98fr);
  grid-template-areas: "gallery side";
  gap: 36px;
  align-items: start;
}

.lot-gallery__stage {
  position: relative;
  display: block;
  width: 100%;
  background:var(--soft);
  overflow: hidden;
}

.lot-gallery {
  position: sticky;
  top: 111px;
  grid-area: gallery;
  min-width: 0;
}

.gallery-image-button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  aspect-ratio: 350 / 233;
}

.gallery-main-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 220ms ease;
}

.gallery-main-image.gallery-view-form,
.gallery-main-image.gallery-view-detail {
  width: min(76%, 720px);
  height: 390px;
  object-fit: cover;
}

.gallery-main-image.gallery-view-form {
  object-position: 50% 58%;
}

.gallery-main-image.gallery-view-detail {
  object-position: 44% 66%;
}

.gallery-main-image.is-changing {
  opacity: 0;
}

.gallery-arrow,
.zoom-trigger {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.gallery-arrow {
  top: 50%;
  width: 46px;
  height: 74px;
  transform: translateY(-50%);
}

.gallery-arrow::before {
  width: 20px;
  height: 20px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
}

.gallery-arrow--prev {
  left: 10px;
}

.gallery-arrow--prev::before {
  transform: rotate(-135deg);
}

.gallery-arrow--next {
  right: 10px;
}

.gallery-arrow--next::before {
  transform: rotate(45deg);
}

.gallery-arrow.is-disabled,
.gallery-arrow[aria-disabled="true"] {
  color: #d0d4d8;
  cursor: default;
  pointer-events: none;
}

.zoom-trigger {
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  aspect-ratio: 1 / 1;
  background:hsl(0deg 0% 100% / 70%);
  font-size: 0;
  line-height: 0;
}

.zoom-trigger img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  pointer-events: none;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.gallery-thumb {
  display: block;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  height: 66px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--ink);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lot-pager {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(240px, 2fr) minmax(120px, 1fr);
  grid-template-areas: "prev list next";
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}

.pager-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
}

.pager-button[aria-disabled="true"] {
  color: #c4c8cc;
  border-color: #d0d4d8;
  cursor: default;
  pointer-events: none;
}

.pager-button--prev {
  grid-area: prev;
  justify-content: flex-start;
  padding: 0 14px 0 58px;
  border: 0;
}

.pager-button--next {
  grid-area: next;
  justify-content: flex-end;
  padding: 0 58px 0 14px;
  border: 0;
}

.pager-button--wide {
  grid-area: list;
  padding: 0 48px 0 14px;
}

.pager-button--prev::before,
.pager-button--next::before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  content: "";
}

.pager-button--prev::before {
  left: 0;
  border-right: 0;
}

.pager-button--next::before {
  right: 0;
  border-left: 0;
}

.pager-button--prev::after,
.pager-button--next::after,
.pager-button--wide::after {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.pager-button--prev::after {
  left: 24px;
  transform: translate(-40%, -55%) rotate(-135deg);
}

.pager-button--next::after {
  right: 24px;
  transform: translate(40%, -55%) rotate(45deg);
}

.pager-button--wide::after {
  right: 18px;
  width: 8px;
  height: 8px;
  border-width: 1px;
  transform: translateY(-55%) rotate(45deg);
}

.lot-side {
  position: static;
  grid-area: side;
  align-self: start;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.lot-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin: 0 0 28px;
  border: 1px solid var(--ink);
  font-size:18px;
  font-weight: 700;
  text-align: center;
  order: 0;
}

.lot-action--dark {
  background: #2b2b2b;
  color: #fff;
}

.lot-action--light {
  background: #fff;
  color: var(--ink);
}

.lot-spec-list {
  margin: 0;
  order: 0;
}

.lot-pager--mobile {
  display: none;
}

.lot-spec-list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.lot-spec-list .lot-spec-list__stack {
  grid-template-columns: 1fr;
  gap: 8px;
}

.lot-spec-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.lot-spec-list dt {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.lot-spec-list dd {
  color: var(--ink);
  font-size: 16px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  flex-direction: column;
  background: #fff;
  color: var(--ink);
  touch-action: none;
}

.image-lightbox.is-open {
  display: flex;
}

.lightbox-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 18px 0 24px;
  pointer-events: none;
}

.lightbox-counter {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.lightbox-close {
  position: relative;
  pointer-events: auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 72px 110px;
  overflow: hidden;
}

.lightbox-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
}

.lightbox-viewport.is-zoomed {
  cursor: grab;
}

.lightbox-viewport.is-zoomed.is-dragging {
  cursor: grabbing;
}

.lightbox-image {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
  transition: transform 180ms ease;
}

.lightbox-viewport.is-dragging .lightbox-image,
.lightbox-viewport.is-pinching .lightbox-image {
  transition: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-top: -28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.lightbox-nav::before {
  width: 16px;
  height: 16px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
}

.lightbox-nav--prev {
  left: 12px;
}

.lightbox-nav--prev::before {
  transform: translateX(3px) rotate(-135deg);
}

.lightbox-nav--next {
  right: 12px;
}

.lightbox-nav--next::before {
  transform: translateX(-3px) rotate(45deg);
}

.lightbox-thumbs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px 22px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.lightbox-thumbs::-webkit-scrollbar {
  display: none;
}

.lightbox-thumb {
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid transparent;
  background: var(--soft);
  cursor: pointer;
}

.lightbox-thumb.is-active {
  border-color: var(--ink);
}

.lightbox-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.object-media {
  position: sticky;
  top: 111px;
}

.object-media figcaption {
  display: block;
}

.object-detail h1 {
  margin-bottom: 6px;
}

.description-box {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.description-box h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.7vw, 34px);
}

.description-box p {
  color: var(--muted);
}

.article-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.article-row__cover {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--soft);
}

.article-row__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.article-row:hover .article-row__cover img {
  transform: scale(1.03);
}

.article-row__body time {
  display: block;
  margin-bottom: 10px;
}

.article-row p {
  margin: 12px 0 0;
  color: var(--muted);
}

.article-detail {
  max-width: 1200px;
}

.article-detail h1 {
  margin-bottom: 18px;
}

.article-body {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-body p {
  margin: 0 0 24px;
  font-size: 17px;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
}

.legal-content h2:not(:first-child) {
  margin-top: 34px;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap:clamp(16px, 3vw, 56px);
  max-width: 820px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 17, 19, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-dialog.is-open {
  opacity: 1;
  visibility: visible;
}

.site-dialog__panel {
  width: min(100%, 420px);
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(15, 17, 19, 0.16);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-dialog.is-open .site-dialog__panel {
  transform: none;
}

.site-dialog__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--ink);
}

.site-dialog__message {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.site-dialog__actions {
  display: flex;
  justify-content: center;
}

.site-dialog__actions .button {
  min-width: 120px;
}

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

.contact-info-band {
  margin-top: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.contact-info-inner {
  padding: 22px 24px 20px;
}

.contact-info-inner h2 {
  margin: 0 0 14px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-info-inner p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
}

.site-footer {
  background: #000;
  color: #d8d3ca;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 30px 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  justify-content: space-between;
}

.footer-company {
  align-self: start;
}

.footer-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  filter: invert(1) brightness(1.35) contrast(0.92);
}

.footer-company p,
.footer-bottom p {
  margin: 0;
}

.footer-company p {
  font-size: 14px;
  line-height: 1.8;
  color: #cdcdcd;
}

.footer-qr {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  justify-content: flex-end;
  align-items: flex-start;
  justify-self: end;
}

.footer-qr__item {
  margin: 0;
  width: 96px;
  text-align: center;
}

.footer-qr__item img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: #fff;
}

.footer-qr__item figcaption {
  margin-top: 10px;
  color: #cdcdcd;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 48px;
}

.footer-nav--simple {
  grid-template-columns: repeat(3, max-content);
  justify-content: end;
  align-content: start;
  gap: 8px 34px;
}

.footer-nav__group h2 {
  margin: 0 0 12px;
  color: #d8d3ca;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.footer-nav__group a {
  display: block;
  position: relative;
  padding: 5px 0 5px 18px;
  color: #bdb7ae;
  font-size: 14px;
  line-height: 1.55;
}

.footer-nav--simple a {
  display: block;
  position: relative;
  padding: 5px 0 5px 18px;
  color: #cdcdcd;
  font-size: 14px;
  line-height: 1.55;
}

.footer-nav__group a::before,
.footer-nav--simple a::before {
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.footer-nav__group a:hover,
.footer-nav--simple a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid #2b2b2b;
  color: #818181;
  font-size: 12px;
}

.footer-policy a {
  color: #cdcdcd;
}

.footer-policy {
  display: flex;
  gap: 28px;
}

.footer-policy a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.reveal-left {
  transform: translateX(-24px);
}

.reveal-left.is-visible {
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(24px);
}

.reveal-right.is-visible {
  transform: translateX(0);
}

.reveal-scale {
  transform: translateY(16px) scale(0.97);
}

.reveal-scale.is-visible {
  transform: translateY(0) scale(1);
}

@media (max-width: 820px) {
  /* 移动端避免横向位移造成横向滚动条 */
  .reveal-left,
  .reveal-right {
    transform: translateY(24px);
  }

  .reveal-left.is-visible,
  .reveal-right.is-visible {
    transform: translateY(0);
  }
}

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

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

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 60px;
    padding: 8px 15px;
  }

  .brand {
    position: relative;
    z-index: 3;
    width: 196px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    width: 42px;
    min-height: 35px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    position: absolute;
    left: 10px;
    width: 20px;
    height: 2px;
    background: var(--ink);
    content: "";
    transition: transform 260ms ease, top 260ms ease;
  }

  .nav-toggle::before {
    top: 12px;
  }

  .nav-toggle::after {
    top: 21px;
  }

  .nav-toggle.is-active::before {
    top: 17px;
    transform: rotate(45deg);
  }

  .nav-toggle.is-active::after {
    top: 17px;
    transform: rotate(-45deg);
  }

  /* Expand below header; cover remaining viewport without overlaying logo */
  .site-nav {
    position: fixed;
    top: var(--header-offset, 60px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: flex;
    width: auto;
    max-width: none;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 28px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 220ms ease, visibility 280ms ease;
  }

  .site-nav.is-open,
  body.is-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    position: relative;
    min-height: auto;
    padding: 14px 42px 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
  }

  .site-nav a:last-child {
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: block;
    right: 4px;
    bottom: auto;
    left: auto;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--ink);
    border-right: 1px solid var(--ink);
    background: transparent;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
    transition: transform 180ms ease;
  }

  .site-nav a:hover::after,
  .site-nav a.is-active::after {
    transform: translateY(-50%) rotate(45deg);
  }

  .site-nav a[data-nav="contact"] {
 justify-content: center;
    min-height:54px;
    margin: 20px 0 0;
    margin-left: 0;
    padding: 0 24px;
    border: 1px solid var(--ink);
    color: var(--ink);
  }

  .site-nav a[data-nav="contact"]::after {
    display: none;
  }

  .site-nav a[data-nav="contact"]:hover,
  .site-nav a[data-nav="contact"].is-active {
    background: var(--ink);
    color: var(--paper);
  }

  .hero,
  .split-section,
  .about-preview,
  .news-strip,
  .detail-layout,
  .lot-layout,
  .contact-layout,
  .listing-row,
  .auction-browser,
  .article-row {
    grid-template-columns: 1fr;
  }

  .lot-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }

  .lot-gallery,
  .lot-side {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
  }

  .lot-gallery {
    position: static;
    gap: 18px;
  }

  .lot-side {
    gap:14px;
  }

  .gallery-thumbs {
    margin-top: 0;
  }

  .lot-gallery__stage,
  .gallery-image-button {
    width: 100%;
  }

  .gallery-main-image,
  .gallery-main-image.gallery-view-form,
  .gallery-main-image.gallery-view-detail {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
  }

  .lot-pager--desktop {
    display: none;
  }

  .lot-pager--mobile {
    display: grid;
    width: 100%;
    order: 3;
  }

  .lot-spec-list {
    order: 1;
    width: 100%;
  }
.lot-spec-list div:first-child {border-top:0;}
  .lot-action {
    order: 2;
    width: 100%;
    margin: 0;
  }

  .article-row__cover {
    max-width: 480px;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }
.hero-banner .reveal{max-width: none;}
  .hero-banner {
    display: block;
    min-height: auto;
    padding: 0;
    overflow: hidden;
    background: #f2f2f2;
  }

  .hero-banner::after {
    display: none;
  }

  .hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
    display: block;
    height:clamp(240px, 100vw, 520px);
    min-height: 240px;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 900ms ease, transform 5200ms ease;
  }

  .hero-bg--one {
    background-image: url("../images/hero-mobile-1.png");
  }

  .hero-bg--two {
    background-image: url("../images/hero-mobile-2.png");
  }

  .hero-bg.is-active {
    display: block;
    opacity: 1;
    transform: scale(1);
  }

  .hero-copy {
    position: relative;
    z-index: 1;
    margin-top:clamp(240px, 100vw, 520px);
    background: #f2f2f2;
    padding:24px 15px;
  }

  .hero-copy h1,
  .page-hero h1,
  .object-detail h1,
  .article-detail h1 {
    font-size:clamp(28px, 7vw, 58px);
  }

  .page-hero {
    padding: 22px 15px;
  }

  .page-hero h1 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .object-media {
    position: static;
  }

  .lot-side {
    position: static;
  }

  .lot-gallery {
    position: static;
  }

  .lot-detail,
  .breadcrumb {
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 14px;
  }


  .gallery-arrow {
    width: 30px;
    height: 48px;
  }

  .gallery-arrow::before {
    width: 12px;
    height: 12px;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  .gallery-arrow--prev {
    left: 4px;
  }

  .gallery-arrow--next {
    right: 4px;
  }

  .zoom-trigger {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .zoom-trigger img {
    width: 20px;
    height: 20px;
  }


  .gallery-main-image.gallery-view-form,
  .gallery-main-image.gallery-view-detail {
    width: 100%;
    height: 100%;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 0;
  }

  .gallery-thumb {
    height: 72px;
  }

  .lot-pager {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "list list"
      "prev next";
    gap: 12px;
    margin-top: 0;
  }

  .pager-button {
    min-height: 48px;
    font-size: 16px;
  }

  .pager-button--prev,
  .pager-button--next {
    padding-left: 52px;
    padding-right: 12px;
  }

  .pager-button--next {
    padding-left: 12px;
    padding-right: 52px;
  }

  .pager-button--prev::before,
  .pager-button--next::before {
    width: 44px;
  }

  .pager-button--prev::after {
    left: 22px;
  }

  .pager-button--next::after {
    right: 22px;
  }

  .image-lightbox .lightbox-stage {
    padding: 58px 18px 96px;
  }

  .lightbox-top {
    height: 56px;
    padding: 0 10px 0 16px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }

  .lightbox-nav--prev {
    left: 2px;
  }

  .lightbox-nav--next {
    right: 2px;
  }

  .lightbox-thumbs {
    gap: 8px;
    padding: 12px 14px 16px;
  }

  .lightbox-thumb {
    width: 48px;
    height: 48px;
  }

  .auction-categories {
    position: static;
  }

  .auction-filter-toggle {
    display: flex;
  }

  .auction-filter-panel {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 20px;
    border-bottom: 1px solid transparent;
    background: var(--paper);
    transition:
      grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      padding 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.28s ease;
  }

  .auction-filter-panel__body {
    overflow: hidden;
  }

  .auction-categories.is-open .auction-filter-panel {
    grid-template-rows: 1fr;
    padding: 4px 20px 8px;
    border-bottom-color: var(--line);
  }

  .auction-filter-title {
    display: none;
  }

  .auction-filter-item {
    padding: 16px 0;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease;
  }

  .auction-categories.is-open .auction-filter-item {
    opacity: 1;
    transform: translateY(0);
  }

  .auction-categories.is-open .auction-filter-item:nth-child(1) { transition-delay: 0.04s; }
  .auction-categories.is-open .auction-filter-item:nth-child(2) { transition-delay: 0.08s; }
  .auction-categories.is-open .auction-filter-item:nth-child(3) { transition-delay: 0.12s; }
  .auction-categories.is-open .auction-filter-item:nth-child(4) { transition-delay: 0.16s; }
  .auction-categories.is-open .auction-filter-item:nth-child(5) { transition-delay: 0.2s; }
  .auction-categories.is-open .auction-filter-item:nth-child(6) { transition-delay: 0.24s; }
  .auction-categories.is-open .auction-filter-item:nth-child(7) { transition-delay: 0.28s; }
  .auction-categories.is-open .auction-filter-item:nth-child(8) { transition-delay: 0.32s; }

  .auction-filter-item:last-child {
    border-bottom: 0;
  }

  .auction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:16px 12px;
  }
.feature-list .auction-grid{ grid-template-columns: 1fr;}

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

  .info-card {
    border-right: 0;
  }

  .scope-list {
    grid-template-columns: 1fr;
  }

  .profile-list div {
    gap: 4px;
  }

  .editorial-visual {
    min-height: 560px;
    padding: 70px 15px;
  }

  .editorial-visual::after {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 54%, rgba(0, 0, 0, 0.18) 100%);
  }

  .editorial-visual__bg {
    background-image: url("../images/about/advisory-bg-mb.png");
    background-position: center;
  }

  .editorial-visual__content {
    max-width: none;
  }

  .article-row {
    grid-template-columns: 128px minmax(0, 1fr) 28px;
    gap: 18px;
  }

  .article-row__cover {
    grid-column: auto;
    max-width: none;
  }

  .article-row h2 {
    font-size: clamp(20px, 4.5vw, 28px);
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;display: none;
  }

  .button {
    width: 100%;
  }
.section.about-preview .about-preview__content > h2 {
    margin: 0 0 14px;
}
  .compact-specs div,
  .detail-specs div, {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .news-teaser {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 16px;
  }
.article-body{margin-top: 24px;padding-top: 24px;}
.article-body p {
    margin: 0 0 14px;}
.article-detail h1 {
    margin-bottom: 8px;
}
  .news-teaser time {
    grid-column: 1 / -1;
  }

  .article-row {
    grid-template-columns:124px minmax(0, 1fr) 18px;
    gap: 12px;padding: 14px 0;
    align-items: center;
  }
.news-teaser time, .article-row time, .article-detail time {
    color: var(--accent);
    font-size: 14px;
}
  .article-row__cover {
    grid-column: auto;
    max-width: none;
  }

  .article-row h2 {
    font-size: 18px;
    line-height: 1.25;
  }

  .article-row p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.55;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .article-row__arrow {
    width: 22px;
    height: 22px;
  }

  .hero-panel figcaption {
    display: block;
  }

  .site-footer {
    display: block;
  }

  .footer-inner {
    padding: 38px 15px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
.footer-logo{margin-left:auto;margin-right: auto;}
.footer-company p{text-align: center;}
.lot-heading h1{line-height:1.2;margin-bottom:14px;}
.lot-spec-list div{grid-template-columns: 70px minmax(0, 1fr);}
.feature-list .auction-card__body h2{font-size: clamp(18px, 1.8vw, 22px);}
  .footer-qr {
    justify-content:center;
    justify-self: stretch;
    gap: 14px;
  }

  .footer-qr__item {
    width: 84px;
  }

  .footer-qr__item img {
    width: 84px;
    height: 84px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-nav--simple {
    grid-template-columns: repeat(2, 1fr);
    justify-content: stretch;
  }

  .footer-bottom {
    gap: 12px;
  }

  .footer-policy {
    flex-wrap: wrap;
    gap: 14px 24px;
  }

}
