/* Sales page — intentionally isolated from the rest of the site */
.sales-page {
  position: relative;
  overflow: hidden;
  padding: 155px clamp(24px, 4.5vw, 72px) 72px;
  background:
    radial-gradient(circle at 16% 13%, rgba(255,255,255,.9), transparent 22rem),
    radial-gradient(circle at 88% 72%, rgba(199,154,63,.09), transparent 28rem),
    linear-gradient(108deg, #fbf7eb 0%, #f3ead3 52%, #faf4e5 100%);
}

.sales-page::before,
.sales-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 180px;
  height: 180px;
  opacity: .42;
}

.sales-page::before {
  top: 24px;
  left: 24px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  border-radius: 92px 0 0 0;
}

.sales-page::after {
  right: 24px;
  bottom: 24px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  border-radius: 0 0 92px 0;
}

.sales-heading {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto 42px;
  text-align: center;
}


.sales-heading h1 {
  margin: 0;
  color: #173b2f;
  font-family: var(--display);
  font-size: clamp(4.3rem, 7vw, 7.2rem);
  font-weight: 400;
  line-height: .86;
}

.sales-divider {
  position: relative;
  width: min(260px, 70%);
  height: 25px;
  margin: 13px auto 7px;
}

.sales-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
  border-top: 1px solid var(--gold);
}

.sales-divider span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 12px;
  color: var(--gold);
  background: #f8f1df;
}

.sales-heading h2 {
  margin: 4px 0 5px;
  color: #173b2f;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 400;
}

.sales-intro {
  margin: 0 auto;
  max-width: 620px;
  color: #494137;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.45;
}

.sales-intro a {
  color: #173b2f;
  text-decoration-color: var(--gold);
  text-underline-offset: .18em;
}

.sales-updated {
  margin: 7px 0 0;
  color: #78674d;
  font-size: .98rem;
  font-style: italic;
}

.sales-sections {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.sales-group {
  margin: 0 0 38px;
}

.sales-group:last-child {
  margin-bottom: 0;
}

.sales-group > h2 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 10px;
  color: #173b2f;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  font-weight: 400;
  line-height: 1;
}

.sales-group > h2::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--gold);
  margin-top: .15em;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(183,140,51,.68);
  border-radius: 14px;
  background: rgba(255,252,244,.74);
  box-shadow: 0 13px 30px rgba(52,47,30,.07);
}

.sales-group table {
  width: 100%;
  min-width: 930px;
  border-collapse: collapse;
  font-size: 1rem;
}

.sales-group th,
.sales-group td {
  padding: 10px 12px;
  border-right: 1px solid rgba(183,140,51,.25);
  border-bottom: 1px solid rgba(183,140,51,.25);
  text-align: left;
  vertical-align: top;
}

.sales-group th:last-child,
.sales-group td:last-child {
  border-right: 0;
}

.sales-group tbody tr:last-child td {
  border-bottom: 0;
}

.sales-group thead th {
  background: #174334;
  color: #f8e7b0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .015em;
}

.sales-group tbody tr:nth-child(even) {
  background: rgba(219,196,144,.08);
}

.sales-group tbody tr:hover {
  background: rgba(226,200,137,.15);
}

.sales-group th:first-child,
.sales-group td:first-child {
  width: 64px;
  text-align: center;
}

.sales-group th:nth-child(2),
.sales-group td:nth-child(2) {
  width: 170px;
}

.sales-group th:nth-child(4),
.sales-group td:nth-child(4) {
  width: 280px;
}

.sales-group th:last-child,
.sales-group td:last-child {
  width: 88px;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .sales-page {
    padding: 38px 16px 52px;
  }

  .sales-heading {
    margin-bottom: 32px;
  }

  .sales-heading h1 {
    font-size: 4.2rem;
  }

  .sales-heading h2 {
    font-size: 2rem;
  }

  .sales-intro {
    font-size: 1rem;
  }

  .sales-group {
    margin-bottom: 30px;
  }

  .sales-group > h2 {
    font-size: 1.8rem;
  }

  .table-scroll {
    border-radius: 11px;
  }

  .sales-group table {
    min-width: 860px;
    font-size: .95rem;
  }

  .sales-group th,
  .sales-group td {
    padding: 9px 10px;
  }
}
