.sales-public-page {
  background: #fff;
  color: #111;
}

.sales-site-container {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.sales-site-header {
  background: #000;
}

.sales-site-brandbar {
  padding: 28px 0 22px;
}

.sales-site-brandbar .sales-site-container {
  display: flex;
  justify-content: center;
}

.sales-site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sales-site-brand img {
  display: block;
  width: auto;
  height: 76px;
  max-width: 260px;
}

.sales-site-navbar {
  border-top: 1px solid #a28b00;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sales-site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px 54px;
  padding: 22px 0;
}

.sales-site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.sales-site-nav a:hover,
.sales-site-nav a[aria-current="page"] {
  color: #a28b00;
}

.sales-page-hero {
  position: relative;
  overflow: hidden;
  background: #000;
}

.sales-page-hero-copy {
  position: relative;
  z-index: 2;
  padding: 82px 16px 246px;
  text-align: center;
  background: #000;
}

.sales-page-hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.98;
  font-weight: 600;
}

.sales-page-hero-subtitle {
  margin: 22px 0 0;
  color: #a28b00;
  font-size: clamp(1.45rem, 3.8vw, 3rem);
  line-height: 1.08;
  font-weight: 400;
}

.sales-page-hero-image {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
}

.sales-page-hero-image img {
  display: block;
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  object-position: center bottom;
}

.sales-listings-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf9 100%);
  padding: 72px 0 82px;
}

.sales-listings-intro {
  margin: 0 auto 42px;
  max-width: 820px;
  text-align: center;
}

.sales-listings-kicker {
  margin: 0 0 14px;
  color: #a28b00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sales-listings-copy {
  margin: 0;
  color: #232323;
  font-size: 18px;
  line-height: 1.8;
}

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

.piano-sale-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.piano-sale-card:hover {
  transform: translateY(-4px);
  border-color: rgba(162, 139, 0, 0.28);
  box-shadow: 0 24px 52px rgba(17, 17, 17, 0.1);
}

.piano-sale-card-media {
  aspect-ratio: 4 / 3;
  background: #f3f3f3;
  overflow: hidden;
}

.piano-sale-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.piano-sale-card:hover .piano-sale-card-media img {
  transform: scale(1.03);
}

.piano-sale-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #61758d;
}

.piano-sale-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 26px 25px 28px;
}

.piano-sale-card-body h3 {
  margin: 0;
  color: #111;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
}

.piano-sale-card-price {
  margin: 0;
  color: #a28b00;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
}

.piano-sale-card-spec {
  margin: 0;
  color: #5e5644;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.piano-sale-card-copy {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.piano-sale-card-footer {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}

.piano-sale-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.piano-sale-card-button::after {
  content: "\203A";
  font-size: 16px;
  line-height: 1;
}

.piano-sale-card:hover .piano-sale-card-button {
  background: #a28b00;
  border-color: #a28b00;
  transform: translateY(-1px);
}

.sales-listings-empty {
  padding: 30px 32px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.05);
}

.sales-listings-empty h2 {
  margin: 0;
  color: #111;
  font-size: 28px;
}

.sales-listings-empty p {
  margin: 12px 0 0;
  color: #5c5c5c;
  line-height: 1.7;
}

.sales-showroom-section {
  background: #000;
}

.sales-showroom-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 40px;
  align-items: center;
  padding: 66px 0;
}

.sales-showroom-kicker {
  margin: 0 0 14px;
  color: #a28b00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sales-showroom-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.3vw, 3.3rem);
  line-height: 1.06;
  font-weight: 600;
}

.sales-showroom-text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.8;
}

.sales-showroom-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.sales-showroom-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.65;
}

.sales-showroom-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 10px;
  border-radius: 999px;
  background: #a28b00;
  flex: 0 0 9px;
}

.sales-showroom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sales-showroom-button,
.sales-site-footer-button,
.sales-preview-banner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sales-showroom-button.is-gold,
.sales-site-footer-button.is-gold {
  background: #a28b00;
  border-color: #a28b00;
  color: #fff;
}

.sales-showroom-button.is-dark {
  background: #111;
  border-color: #111;
  color: #fff;
}

.sales-showroom-button:hover,
.sales-site-footer-button:hover,
.sales-preview-banner-link:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.sales-showroom-button.is-gold:hover,
.sales-site-footer-button.is-gold:hover {
  background: #766600;
  border-color: #766600;
  color: #fff;
}

.sales-showroom-button.is-dark:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: #fff;
}

.sales-showroom-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.35);
}

.sales-showroom-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sales-site-footer {
  background: #050505;
  padding: 56px 0 28px;
  color: rgba(255, 255, 255, 0.86);
}

.sales-site-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.sales-site-footer-column h2,
.sales-site-footer-column h3 {
  margin: 0 0 16px;
  color: #fff;
  line-height: 1.2;
}

.sales-site-footer-column h2 {
  font-size: 28px;
}

.sales-site-footer-column h3 {
  font-size: 19px;
}

.sales-site-footer-column p,
.sales-site-footer-column li,
.sales-site-footer-column a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.8;
  text-decoration: none;
}

.sales-site-footer-column a:hover {
  color: #a28b00;
}

.sales-site-footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sales-site-footer-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.sales-site-footer-copy {
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.sales-preview-banner {
  background: #111;
  color: #fff;
}

.sales-preview-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.sales-preview-banner strong {
  display: block;
  font-size: 15px;
}

.sales-preview-banner span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.sales-detail-hero {
  background: #000;
  padding: 24px 0 30px;
  border-bottom: 1px solid rgba(162, 139, 0, 0.2);
}

.sales-detail-hero-copy {
  max-width: 860px;
}

.sales-detail-back {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sales-detail-back:hover {
  color: #a28b00;
}

.sales-detail-kicker {
  margin: 0 0 8px;
  color: #a28b00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.92;
}

.sales-detail-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.sales-detail-meta {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.75;
}

.sales-detail-hero-status {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sales-detail-hero-status p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
  max-width: 760px;
}

.sales-detail-main {
  background: #fff;
  padding: 42px 0 78px;
}

.sales-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 36px;
  align-items: start;
}

.sales-detail-gallery {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.sales-detail-main-image {
  display: flex;
  min-height: 470px;
  max-height: 560px;
  padding: 12px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfbf8 0%, #ece4d6 100%);
  box-shadow: 0 24px 52px rgba(17, 17, 17, 0.12);
}

.sales-detail-main-image img,
.sales-detail-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sales-detail-main-image img {
  flex: 1;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1);
}

.sales-detail-image-placeholder {
  min-height: 420px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px;
  border-radius: 24px;
  text-align: center;
  color: #60758f;
  background: rgba(255, 255, 255, 0.78);
}

.sales-detail-thumbnails {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  overflow: hidden;
}

.sales-detail-thumb {
  appearance: none;
  flex: 0 0 82px;
  width: 82px;
  max-width: 82px;
  padding: 0;
  border: 2px solid transparent;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.06);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sales-detail-thumb.is-active {
  border-color: #a28b00;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.1);
}

.sales-detail-thumb:hover {
  transform: translateY(-2px);
}

.sales-detail-panel {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  padding: 4px 0 0 28px;
  border-left: 1px solid rgba(17, 17, 17, 0.1);
  background: transparent;
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  box-shadow: none;
}

.sales-detail-panel-head {
  order: 1;
  display: grid;
  gap: 10px;
}

.sales-detail-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-detail-status.is-sold {
  background: #fbe8ea;
  color: #9b3743;
}

.sales-detail-price-label {
  margin: 4px 0 0;
  color: #a28b00;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sales-detail-price {
  margin: 0;
  color: #111;
  font-size: clamp(2rem, 2.8vw, 2.65rem);
  line-height: 1;
  font-weight: 700;
}

.sales-detail-archive-note {
  order: 2;
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(155, 55, 67, 0.18);
  border-radius: 18px;
  background: #fff6f7;
}

.sales-detail-archive-note strong {
  color: #9b3743;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-detail-archive-note p {
  margin: 0;
  color: #5b4950;
  font-size: 14px;
  line-height: 1.75;
}

.sales-detail-specs-wrap {
  order: 3;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.sales-detail-specs-kicker {
  margin: 0 0 16px;
  color: #786e54;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sales-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin-top: 0;
}

.sales-detail-specs article {
  display: grid;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
}

.sales-detail-specs span {
  display: block;
  margin-bottom: 0;
  color: #8b836f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sales-detail-specs strong {
  color: #111;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

.sales-detail-copy {
  order: 2;
  margin-top: 24px;
}

.sales-detail-copy p {
  margin: 0;
  color: #4c4c4c;
  font-size: 15px;
  line-height: 2.02;
  white-space: pre-line;
}

.sales-detail-actions {
  order: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.sales-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.6rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.18);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.sales-detail-button.is-gold {
  background: #cdb000;
  border-color: #cdb000;
  color: #fff;
}

.sales-detail-button.is-dark {
  background: #000;
  border-color: #000;
  color: #fff;
}

.sales-detail-button:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sales-detail-button.is-gold:hover {
  background: #a28b00;
  border-color: #a28b00;
  color: #fff;
}

.sales-detail-button.is-dark:hover {
  background: #2b2b2b;
  border-color: #2b2b2b;
  color: #fff;
}

@media (max-width: 1100px) {
  .sales-public-grid,
  .sales-site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-detail-grid,
  .sales-showroom-wrap {
    grid-template-columns: 1fr;
  }

  .sales-detail-panel {
    position: static;
    padding: 26px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }
}

@media (max-width: 760px) {
  .sales-site-container {
    width: min(100% - 28px, 1320px);
  }

  .sales-site-brand img {
    height: 60px;
  }

  .sales-site-nav {
    gap: 18px 24px;
    padding: 18px 0;
  }

  .sales-site-nav a {
    font-size: 13px;
  }

  .sales-page-hero-copy {
    padding: 52px 16px 128px;
  }

  .sales-page-hero-image img {
    max-height: 300px;
  }

  .sales-listings-section,
  .sales-detail-main {
    padding: 46px 0 56px;
  }

  .sales-detail-hero {
    padding: 20px 0 24px;
  }

  .sales-public-grid,
  .sales-site-footer-grid,
  .sales-detail-specs {
    grid-template-columns: 1fr;
  }

  .piano-sale-card-body,
  .sales-detail-panel {
    padding: 22px 20px;
  }

  .sales-detail-panel {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .sales-detail-main-image,
  .sales-detail-image-placeholder {
    min-height: 320px;
  }

  .sales-detail-main-image {
    padding: 10px;
  }

  .sales-detail-actions {
    display: grid;
  }

  .sales-detail-specs-wrap {
    order: 2;
  }

  .sales-detail-copy {
    order: 3;
  }

  .sales-showroom-wrap {
    gap: 28px;
    padding: 48px 0;
  }

  .sales-showroom-actions,
  .sales-site-footer-actions {
    grid-template-columns: 1fr;
  }

  .sales-showroom-actions {
    display: grid;
  }

  .sales-showroom-button,
  .sales-detail-button,
  .sales-site-footer-button {
    width: 100%;
  }

  .sales-preview-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .sales-detail-thumbnails {
    gap: 8px;
  }

  .sales-detail-thumb {
    flex-basis: 64px;
    width: 64px;
    max-width: 64px;
  }
}
