:root {
  --ink: #111311;
  --charcoal: #1d211f;
  --charcoal-soft: #2b302d;
  --platinum: #c9c7bf;
  --platinum-bright: #ece9e1;
  --warm-white: #f7f4ed;
  --paper: #fffdf8;
  --line: #dedbd2;
  --muted: #686c68;
  --green: #354a3b;
  --gold: #a98b56;
  --red: #a53c34;
  --shadow: 0 24px 70px rgba(15, 18, 16, 0.12);
  --shadow-small: 0 14px 36px rgba(15, 18, 16, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h3 {
  line-height: 1.2;
}

::selection {
  background: var(--platinum);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid #8aa792;
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.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;
}

.eyebrow {
  margin-bottom: 17px;
  color: #727670;
  font-size: 0.72rem;
  font-weight: 740;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.78rem;
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.button-dark:hover {
  background: #303532;
  border-color: #303532;
}

.button-platinum {
  background: var(--platinum-bright);
  border-color: var(--platinum-bright);
  color: var(--ink);
}

.button-platinum:hover {
  background: white;
  border-color: white;
}

.button-light {
  background: #f1efe9;
  border-color: #f1efe9;
  color: var(--ink);
}

.button-light:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
}

.button-outline-light {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.48);
  color: white;
}

.button-outline-light:hover {
  background: white;
  border-color: white;
  color: var(--ink);
}

.button-disabled,
.button-disabled:hover {
  width: 100%;
  background: #e3e1db;
  border-color: #e3e1db;
  color: #686b67;
  cursor: not-allowed;
  transform: none;
}

.announcement {
  background: #0d0f0e;
  color: #d3d3ce;
  font-size: 0.69rem;
  letter-spacing: 0.04em;
}

.announcement-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement a {
  color: white;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 40;
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid rgba(17, 19, 17, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 43px;
  height: 43px;
  border: 1px solid #a5a59e;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(196, 195, 188, 0.75));
  box-shadow:
    inset 0 0 0 3px var(--warm-white),
    inset 0 0 0 4px #a5a59e;
  color: var(--ink);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 8px;
  height: 1px;
  background: #62655f;
}

.brand-mark::before {
  left: 4px;
  transform: rotate(18deg);
}

.brand-mark::after {
  right: 4px;
  transform: rotate(-18deg);
}

.brand-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: #656964;
  font-size: 0.56rem;
  font-weight: 720;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2vw, 34px);
}

.primary-nav > a {
  position: relative;
  padding-block: 27px;
  color: #424642;
  font-size: 0.76rem;
  font-weight: 650;
}

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

.primary-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.text-button {
  color: #4e534f;
  font-size: 0.76rem;
  font-weight: 660;
}

.menu-toggle,
.mobile-nav-actions {
  display: none;
}

.hero {
  min-height: 682px;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #171b18;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("/media/hero-cattle.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 12, 11, 0.93) 0%, rgba(10, 12, 11, 0.75) 37%, rgba(10, 12, 11, 0.26) 72%, rgba(10, 12, 11, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 11, 10, 0.55), transparent 55%);
}

.hero-inner {
  padding-block: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.23fr) minmax(330px, 0.63fr);
  align-items: end;
  gap: clamp(55px, 8vw, 115px);
}

.hero-copy {
  max-width: 720px;
  color: white;
}

.hero-copy .eyebrow {
  color: #d2d0c8;
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6.2vw, 5.9rem);
  letter-spacing: -0.057em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 31px;
  color: #e1e1dc;
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.hero-trust {
  padding: 0;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #d4d6d1;
  font-size: 0.72rem;
  font-weight: 590;
  list-style: none;
}

.featured-auction-card {
  padding: 31px;
  background: rgba(249, 247, 240, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.card-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #646963;
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.live-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(169, 139, 86, 0.13);
}

.sale-kicker {
  margin: 26px 0 7px;
  color: #686d68;
  font-size: 0.72rem;
  font-weight: 650;
}

.featured-auction-card h2 {
  margin-bottom: 13px;
  font-size: 2rem;
}

.sale-date {
  margin-bottom: 1px;
  font-size: 0.82rem;
  font-weight: 720;
}

.sale-location {
  margin-bottom: 22px;
  color: #70746f;
  font-size: 0.77rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.countdown-unit {
  min-width: 0;
  padding: 13px 8px;
  border: 1px solid rgba(17, 19, 17, 0.13);
  border-right: 0;
  display: grid;
  justify-items: center;
  background: rgba(255, 255, 255, 0.04);
}

.countdown-unit:last-child {
  border-right: 1px solid rgba(17, 19, 17, 0.13);
}

.countdown-unit strong {
  font-family: var(--font-geist-mono), monospace;
  font-size: 1.15rem;
  line-height: 1;
}

.countdown-unit span {
  margin-top: 5px;
  color: #777b76;
  font-size: 0.52rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-card-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
}

.catalog-link {
  color: #4a4e4a;
}

.arrow-link span {
  transition: transform 180ms ease;
}

.arrow-link:hover span {
  transform: translateX(4px);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(169, 139, 86, 0.12);
}

.section {
  padding-block: 112px;
}

.section-heading {
  margin-bottom: 43px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading > div:first-child {
  max-width: 750px;
}

.section-heading h2 {
  margin-bottom: 15px;
  font-size: clamp(2.5rem, 4vw, 4.1rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-action {
  padding-bottom: 8px;
  flex-shrink: 0;
}

.featured-lots {
  padding-top: 100px;
}

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

.lot-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(17, 19, 17, 0.02);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.lot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-small);
}

.lot-image-wrap {
  aspect-ratio: 4 / 3;
  position: relative;
  display: block;
  overflow: hidden;
  background: #d9dad3;
}

.lot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.lot-card:hover .lot-image {
  transform: scale(1.025);
}

.lot-number,
.lot-status {
  position: absolute;
  top: 14px;
  min-height: 27px;
  padding: 6px 9px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.lot-number {
  left: 14px;
  background: rgba(13, 15, 14, 0.9);
  color: white;
}

.lot-status {
  right: 14px;
  background: rgba(250, 248, 242, 0.92);
  color: var(--ink);
}

.lot-card-body {
  padding: 23px;
}

.lot-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #777b76;
  font-size: 0.64rem;
  font-weight: 670;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lot-card h3 {
  margin: 8px 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.lot-card h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.lot-location {
  margin-bottom: 20px;
  color: #6e726d;
  font-size: 0.71rem;
}

.lot-price-row {
  padding: 16px 0;
  border-top: 1px solid #e6e3dc;
  border-bottom: 1px solid #e6e3dc;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.lot-price-row > div {
  display: grid;
}

.lot-price-row span {
  color: #7b7e79;
  font-size: 0.58rem;
  font-weight: 670;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lot-price-row strong {
  margin-top: 4px;
  font-size: 1rem;
}

.lot-close {
  text-align: right;
}

.lot-close strong {
  font-size: 0.73rem;
}

.lot-card-actions {
  margin-top: 17px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.watch-button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: white;
  font-size: 1.25rem;
  cursor: pointer;
}

.watch-button:hover {
  border-color: var(--ink);
}

.dark-section {
  background:
    radial-gradient(circle at 95% 10%, rgba(128, 137, 130, 0.13), transparent 24%),
    var(--charcoal);
  color: white;
}

.dark-section .eyebrow,
.dark-section .section-heading p {
  color: #aeb3ae;
}

.trust-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-card {
  min-height: 260px;
  padding: 31px 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-card:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-card > span {
  color: #8f9690;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
}

.trust-card h3 {
  margin: 45px 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.trust-card p {
  margin-bottom: 0;
  color: #b5bab5;
  font-size: 0.76rem;
  line-height: 1.75;
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(70px, 11vw, 150px);
}

.process-grid h2 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 4.4vw, 4.6rem);
}

.section-copy {
  margin-bottom: 29px;
  color: var(--muted);
  line-height: 1.75;
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
}

.step-list li:first-child {
  padding-top: 0;
}

.step-list li > span {
  width: 36px;
  height: 36px;
  border: 1px solid #bebdb7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #666a66;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.66rem;
}

.step-list h3 {
  margin: 3px 0 9px;
  font-size: 1rem;
}

.step-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.seller-section {
  background:
    linear-gradient(90deg, rgba(16, 19, 17, 0.95), rgba(16, 19, 17, 0.76)),
    url("/media/pickup-ranch.webp") center / cover;
  color: white;
}

.seller-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 90px;
}

.seller-panel .eyebrow {
  color: #c8cbc6;
}

.seller-panel h2 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.seller-panel-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 31px;
  color: #d0d3ce;
  line-height: 1.75;
}

.seller-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.seller-points {
  padding: 8px 0 8px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
}

.seller-points span {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #e1e3df;
  font-size: 0.76rem;
  font-weight: 620;
}

.seller-points span::before {
  content: "✓";
  margin-right: 11px;
  color: var(--platinum);
}

.results-section {
  background: #f0ede6;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.results-grid h2 {
  font-size: clamp(2.6rem, 4.3vw, 4.3rem);
}

.results-empty {
  padding: 28px;
  border: 1px solid #d3d0c7;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 20px;
  background: rgba(255, 253, 248, 0.7);
}

.results-empty .arrow-link,
.results-empty .button {
  grid-column: 2;
  justify-self: start;
}

.result-seal,
.aside-mark {
  width: 54px;
  height: 54px;
  border: 1px solid #969991;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #555a55;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.results-empty h3,
.results-empty h2 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.results-empty p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.7;
}

.results-empty.large {
  max-width: 850px;
  min-height: 280px;
  margin-inline: auto;
  padding: 50px;
}

.published-results {
  display: grid;
  gap: 20px;
}

.results-search {
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid #d3d0c7;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: center;
  gap: 20px;
  background: #f1eee6;
}

.results-search > span {
  color: var(--muted);
  font-size: 0.68rem;
}

.results-auction-card {
  overflow: hidden;
  border: 1px solid #d3d0c7;
  border-radius: 5px;
  background: #fffdf8;
  box-shadow: 0 18px 45px rgba(28, 31, 28, 0.06);
}

.results-auction-card > header {
  padding: 24px 28px;
  border-bottom: 1px solid #dedbd2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: #f1eee6;
}

.results-auction-card header span,
.results-auction-card header time {
  color: #6d736e;
  font-size: 0.6rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-auction-card header h2 {
  margin: 6px 0 4px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.results-auction-card header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.results-auction-card header time {
  flex-shrink: 0;
  text-align: right;
}

.results-lot-list {
  display: grid;
}

.results-lot-list > a {
  padding: 17px 28px;
  border-bottom: 1px solid #ebe8e0;
  display: grid;
  grid-template-columns: 78px minmax(180px, 1.4fr) minmax(150px, 1fr) minmax(130px, 0.7fr) minmax(130px, auto);
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.results-lot-list > a:last-child {
  border-bottom: 0;
}

.results-lot-list > a:hover {
  background: #faf8f2;
}

.results-lot-list span,
.results-lot-list small,
.results-lot-list em {
  color: var(--muted);
  font-size: 0.64rem;
}

.results-lot-list em {
  font-style: normal;
  text-transform: capitalize;
}

.results-lot-list b {
  justify-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.84rem;
}

.alerts-section {
  padding-block: 84px;
  background: var(--platinum-bright);
  border-top: 1px solid #d8d5cd;
}

.alerts-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: 80px;
}

.alerts-inner h2 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
}

.alerts-inner > div > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.alert-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 10px;
}

.alert-form label,
.contact-form label,
.catalog-toolbar label {
  display: grid;
  gap: 6px;
}

.alert-form label > span,
.contact-form label > span,
.catalog-toolbar label > span {
  color: #656a65;
  font-size: 0.62rem;
  font-weight: 690;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbc8bf;
  border-radius: 3px;
  background: white;
  color: var(--ink);
  outline: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

input,
select {
  min-height: 48px;
  padding: 10px 13px;
}

textarea {
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #6d7a70;
  box-shadow: 0 0 0 3px rgba(109, 122, 112, 0.12);
}

.alert-form small {
  grid-column: 1 / -1;
  color: #777b77;
  font-size: 0.58rem;
  line-height: 1.5;
}

.form-error {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--red);
  font-size: 0.7rem;
}

.success-message {
  min-height: 100px;
  padding: 24px;
  border: 1px solid #bdc6bd;
  display: grid;
  align-content: center;
  background: rgba(255, 255, 255, 0.58);
}

.success-message strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.success-message span {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-footer {
  padding-top: 77px;
  background: #101211;
  color: white;
}

.site-footer .brand-mark {
  background: #d8d7d1;
  box-shadow:
    inset 0 0 0 3px #101211,
    inset 0 0 0 4px #8f928d;
}

.site-footer .brand-copy small {
  color: #9da19c;
}

.footer-grid {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 50px;
}

.footer-intro > p {
  max-width: 380px;
  margin: 24px 0;
  color: #aeb2ad;
  font-size: 0.75rem;
  line-height: 1.75;
}

.footer-contact {
  display: grid;
  gap: 5px;
  color: #d6d9d5;
  font-size: 0.73rem;
}

.footer-grid > div:not(.footer-intro) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid h3 {
  margin-bottom: 9px;
  color: #7f8580;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-intro) a {
  color: #c7cbc6;
  font-size: 0.72rem;
}

.footer-grid > div:not(.footer-intro) a:hover {
  color: white;
}

.footer-bottom {
  min-height: 63px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #777d78;
  font-size: 0.6rem;
}

/* Catalog */

.auction-masthead {
  padding-block: 78px 92px;
  background:
    radial-gradient(circle at 85% 40%, rgba(201, 199, 191, 0.12), transparent 28%),
    var(--charcoal);
  color: white;
}

.auction-masthead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(400px, 0.8fr);
  align-items: center;
  gap: 85px;
}

.auction-masthead .eyebrow {
  color: #b3b8b3;
}

.auction-masthead h1 {
  margin-bottom: 23px;
  font-size: clamp(3.3rem, 5vw, 5.4rem);
}

.auction-masthead-grid > div:first-child > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 30px;
  color: #bdc1bd;
  line-height: 1.75;
}

.auction-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.auction-facts span {
  display: grid;
  color: #d8dad7;
  font-size: 0.7rem;
}

.auction-facts b {
  margin-bottom: 3px;
  color: #848a85;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.masthead-countdown {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.04);
}

.masthead-countdown > span {
  color: #9fa5a0;
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.masthead-countdown .countdown {
  margin: 13px 0 20px;
}

.masthead-countdown .countdown-unit {
  border-color: rgba(255, 255, 255, 0.17);
}

.masthead-countdown .countdown-unit:last-child {
  border-right-color: rgba(255, 255, 255, 0.17);
}

.masthead-countdown .countdown-unit span {
  color: #9da29d;
}

.masthead-countdown .button {
  width: 100%;
}

.catalog-section {
  padding-block: 50px 120px;
}

.catalog-toolbar {
  padding: 20px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, 0.7fr);
  align-items: end;
  gap: 12px;
  background: var(--paper);
}

.search-field {
  height: 48px;
  border: 1px solid #cbc8bf;
  border-radius: 3px;
  display: flex !important;
  align-items: center;
  gap: 9px !important;
  background: white;
}

.search-field > span {
  padding-left: 13px;
  color: #777c77;
  font-size: 1.1rem !important;
}

.search-field input {
  min-height: 44px;
  padding-left: 0;
  border: 0;
  box-shadow: none;
}

.catalog-toolbar select {
  padding-right: 32px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #777 50%),
    linear-gradient(135deg, #777 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 20px,
    calc(100% - 10px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.catalog-results-line {
  padding: 24px 2px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #70746f;
  font-size: 0.72rem;
}

.catalog-results-line button {
  padding: 5px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.empty-state {
  min-height: 350px;
  border: 1px dashed #c7c5be;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.empty-state > span {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border: 1px solid #bebeb8;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #777b76;
}

.empty-state h2 {
  margin-bottom: 6px;
  font-size: 1.8rem;
}

.empty-state p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Lot details */

.breadcrumbs {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #777b76;
  font-size: 0.64rem;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.breadcrumbs strong {
  color: var(--ink);
  font-weight: 650;
}

.lot-detail {
  padding-bottom: 80px;
}

.lot-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.58fr);
  align-items: start;
  gap: 34px;
}

.primary-image {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: #d6d8d1;
}

.primary-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approved-lot-video {
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  display: block;
  background: #111311;
}

.thumbnail-row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 92px);
  gap: 10px;
}

.thumbnail-row button {
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.thumbnail-row button.active {
  border-color: var(--ink);
}

.thumbnail-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bid-panel {
  padding: 29px;
  border: 1px solid #d2d0c8;
  border-radius: 4px;
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.lot-title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #676c67;
  font-size: 0.64rem;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lot-title-line small {
  padding: 5px;
  color: #4b504c;
  font-size: 0.58rem;
  font-weight: 670;
  text-transform: none;
}

.bid-panel h1 {
  margin: 14px 0 5px;
  font-size: 2.45rem;
}

.lot-subtitle {
  margin-bottom: 25px;
  color: #6f746f;
  font-size: 0.75rem;
}

.bid-summary {
  padding: 20px;
  display: grid;
  background: #eeece6;
}

.bid-summary > span,
.closing-box > span {
  color: #6b706b;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bid-summary strong {
  margin: 3px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
}

.bid-summary small {
  color: #737873;
  font-size: 0.64rem;
}

.closing-box {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
}

.closing-box strong {
  margin-top: 5px;
  font-size: 0.86rem;
}

.closing-box p {
  margin: 4px 0 0;
  color: #737773;
  font-size: 0.66rem;
}

.fee-box {
  padding: 17px 0 19px;
}

.fee-box > div {
  padding-block: 4px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.68rem;
}

.fee-box > div span {
  color: #6c716c;
}

.fee-box a {
  margin-top: 9px;
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 680;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bid-disclaimer {
  margin: 13px 0 0;
  color: #777c77;
  font-size: 0.61rem;
  line-height: 1.55;
}

.lot-information {
  padding-block: 0 110px;
}

.tabs {
  border-bottom: 1px solid #cac8c1;
  display: flex;
  gap: 28px;
  overflow-x: auto;
}

.tabs button {
  min-width: max-content;
  padding: 15px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #6e736e;
  font-size: 0.74rem;
  font-weight: 650;
  cursor: pointer;
}

.tabs button.active {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.tab-panel {
  padding-top: 37px;
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
  gap: 85px;
}

.details-layout h2,
.terms-panel h2 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.details-layout > div:first-child > p {
  color: var(--muted);
  line-height: 1.8;
}

.details-layout h3 {
  margin: 31px 0 13px;
  font-size: 0.85rem;
}

.check-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: #5f645f;
  font-size: 0.76rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.spec-grid {
  margin: 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.spec-grid > div {
  padding: 16px 12px 16px 0;
  border-bottom: 1px solid var(--line);
}

.spec-grid dt {
  margin-bottom: 4px;
  color: #767a75;
  font-size: 0.57rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 650;
}

.pedigree-grid {
  max-width: 850px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pedigree-grid > div {
  min-height: 150px;
  padding: 28px;
  border: 1px solid var(--line);
  display: grid;
  align-content: center;
}

.pedigree-grid span {
  color: #777b77;
  font-size: 0.59rem;
  font-weight: 680;
  text-transform: uppercase;
}

.pedigree-grid strong {
  margin: 6px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.pedigree-grid small {
  color: #777b77;
}

.document-list {
  max-width: 850px;
  display: grid;
  gap: 10px;
}

.document-list > div {
  padding: 17px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 15px;
  background: var(--paper);
}

.document-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #eceae4;
  color: #646964;
  font-size: 0.55rem;
  font-weight: 760;
}

.document-list strong {
  font-size: 0.76rem;
}

.document-list > div > span:last-child {
  color: #777c77;
  font-size: 0.62rem;
}

.terms-panel {
  max-width: 860px;
}

.terms-panel ul {
  padding-left: 19px;
  color: #5f645f;
}

.terms-panel p {
  padding: 18px;
  background: #eceae4;
  color: #606560;
  font-size: 0.75rem;
}

/* Interior pages */

.interior-hero {
  padding-block: 96px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, #1b201d, #303633);
  color: white;
}

.interior-hero::after {
  content: "PCS";
  position: absolute;
  right: -1vw;
  bottom: -78px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(11rem, 25vw, 25rem);
  font-weight: 700;
  line-height: 0.8;
}

.interior-hero-inner {
  position: relative;
  z-index: 1;
}

.interior-hero .eyebrow {
  color: #b6bbb6;
}

.interior-hero h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
}

.interior-hero-inner > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #c4c8c4;
  font-size: 1.02rem;
  line-height: 1.8;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 100px;
}

.info-sections {
  max-width: 760px;
}

.info-sections article {
  padding: 0 0 33px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.info-sections h2 {
  margin-bottom: 13px;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 690;
  letter-spacing: -0.02em;
}

.info-sections article > p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.85;
}

.info-sections .check-list {
  margin-top: 20px;
}

.legal-note {
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: #ece9e1;
  color: #555a55;
  font-size: 0.75rem;
  line-height: 1.7;
}

.info-aside {
  padding: 29px;
  border: 1px solid var(--line);
  position: sticky;
  top: 25px;
  display: grid;
  background: var(--paper);
}

.info-aside .aside-mark {
  margin-bottom: 31px;
}

.info-aside h2 {
  margin-bottom: 13px;
  font-size: 1.8rem;
}

.info-aside p {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.75;
}

.info-aside .button {
  margin-top: 8px;
}

.info-aside .arrow-link {
  margin-top: 18px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 75px;
}

.faq-list {
  border-top: 1px solid #c9c7c0;
}

.faq-list article {
  border-bottom: 1px solid #c9c7c0;
}

.faq-list button {
  width: 100%;
  padding: 24px 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 690;
  text-align: left;
  cursor: pointer;
}

.faq-list button b {
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-list article > p {
  max-width: 760px;
  padding: 0 40px 26px 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.faq-contact {
  min-height: 330px;
  padding: 32px;
  display: grid;
  align-content: center;
  background: var(--charcoal);
  color: white;
}

.faq-contact > span {
  color: #aab0aa;
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.faq-contact h2 {
  margin: 20px 0 12px;
  font-size: 2.2rem;
}

.faq-contact p {
  color: #b8bdb8;
  font-size: 0.76rem;
}

.faq-contact .button {
  margin-top: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: start;
  gap: 100px;
}

.contact-details {
  display: grid;
  gap: 36px;
}

.contact-details > div:not(.contact-notice) {
  display: grid;
}

.contact-details span {
  margin-bottom: 8px;
  color: #727772;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin-bottom: 3px;
  color: #4f544f;
  font-size: 0.79rem;
}

.contact-notice {
  padding: 17px;
  border: 1px solid #d0cdc5;
  color: #666b66;
  font-size: 0.68rem;
  line-height: 1.65;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  background: var(--paper);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form .button {
  justify-self: start;
  min-width: 160px;
}

.contact-success {
  min-height: 400px;
  padding: 50px;
  border: 1px solid #cbd3cb;
  display: grid;
  align-content: center;
  justify-items: start;
  background: #f9fbf7;
}

.contact-success > span {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
}

.contact-success h2 {
  margin-bottom: 9px;
  font-size: 2rem;
}

.contact-success p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
}

/* Registration */

.registration-page {
  min-height: 720px;
  padding-block: 85px 110px;
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 199, 191, 0.2), transparent 21%),
    #202522;
  color: white;
}

.registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.55fr);
  align-items: center;
  gap: 100px;
}

.registration-intro .eyebrow {
  color: #b2b8b2;
}

.registration-intro h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 5.7vw, 5.8rem);
}

.registration-intro > p:not(.eyebrow) {
  max-width: 620px;
  color: #bdc2bd;
}

.role-toggle {
  max-width: 480px;
  margin: 31px 0;
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.08);
}

.role-toggle button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #bbc0bb;
  font-size: 0.72rem;
  font-weight: 680;
  cursor: pointer;
}

.role-toggle button.active {
  background: #f0eee8;
  color: var(--ink);
}

.registration-intro ol {
  max-width: 620px;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}

.registration-intro li {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d2d5d1;
  font-size: 0.72rem;
}

.registration-intro li span {
  width: 29px;
  height: 29px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-size: 0.6rem;
}

.registration-card {
  padding: 34px;
  display: grid;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.registration-card h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.registration-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.78rem;
}

.registration-card small {
  margin-top: 15px;
  color: #777c77;
  font-size: 0.62rem;
  line-height: 1.55;
}

.signed-in-label {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 730;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Dashboard */

.dashboard-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px 1fr;
  background: #f2f1ed;
}

.dashboard-sidebar {
  height: 100vh;
  padding: 25px 20px;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  background: #171a18;
  color: white;
}

.dashboard-sidebar .brand-mark {
  background: #d8d7d1;
  box-shadow:
    inset 0 0 0 3px #171a18,
    inset 0 0 0 4px #8f928d;
}

.dashboard-sidebar .brand-copy small {
  color: #8f958f;
}

.workspace-label {
  margin: 34px 0 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  display: grid;
}

.workspace-label span {
  color: #868d87;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workspace-label strong {
  margin-top: 4px;
  font-size: 0.78rem;
}

.dashboard-sidebar nav {
  display: grid;
  gap: 3px;
}

.dashboard-sidebar nav button {
  min-height: 42px;
  padding: 9px 12px;
  border: 0;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: transparent;
  color: #aeb4ae;
  font-size: 0.72rem;
  text-align: left;
  cursor: pointer;
}

.dashboard-sidebar nav button span {
  width: 18px;
  color: #777e78;
}

.dashboard-sidebar nav button.active,
.dashboard-sidebar nav button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.sidebar-bottom {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 8px;
}

.sidebar-bottom a {
  color: #8e958f;
  font-size: 0.65rem;
}

.dashboard-nav-close,
.dashboard-menu {
  display: none;
}

.dashboard-main {
  min-width: 0;
}

.dashboard-header {
  min-height: 105px;
  padding: 19px 35px;
  border-bottom: 1px solid #d9d7d1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #faf9f6;
}

.dashboard-header .eyebrow {
  margin-bottom: 3px;
  font-size: 0.54rem;
}

.dashboard-header h1 {
  margin-bottom: 0;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 1.38rem;
  font-weight: 660;
  letter-spacing: -0.03em;
}

.dashboard-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-header-actions label {
  display: grid;
}

.dashboard-header-actions label span {
  color: #777c77;
  font-size: 0.51rem;
  font-weight: 680;
  text-transform: uppercase;
}

.dashboard-header-actions select {
  min-width: 150px;
  min-height: 35px;
  padding: 5px 8px;
  background: transparent;
  font-size: 0.67rem;
}

.notification-button {
  width: 37px;
  height: 37px;
  border: 1px solid #d1cfc9;
  border-radius: 50%;
  position: relative;
  background: white;
  cursor: pointer;
}

.notification-button > span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-size: 0.48rem;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  color: white;
  font-size: 0.62rem;
  font-weight: 720;
}

.dashboard-content {
  max-width: 1500px;
  padding: 28px 35px 50px;
}

.configuration-banner {
  min-height: 54px;
  padding: 11px 15px;
  border: 1px solid #d7c69f;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff8e8;
}

.configuration-banner span {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 2px;
  background: #b4924f;
  color: white;
  font-size: 0.51rem;
  font-weight: 740;
  text-transform: uppercase;
}

.configuration-banner p {
  margin: 0;
  color: #6c624e;
  font-size: 0.67rem;
}

.metrics-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.metric-card {
  min-height: 136px;
  padding: 19px;
  border: 1px solid #dad8d2;
  display: grid;
  align-content: space-between;
  background: #faf9f6;
}

.metric-card > span {
  color: #707570;
  font-size: 0.63rem;
  font-weight: 630;
}

.metric-card strong {
  margin-top: 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 500;
}

.metric-card small {
  color: #8a8e8a;
  font-size: 0.56rem;
}

.dashboard-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 12px;
}

.dashboard-panel {
  border: 1px solid #dad8d2;
  background: #faf9f6;
}

.panel-heading {
  min-height: 74px;
  padding: 17px 20px;
  border-bottom: 1px solid #e0ded8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-heading span {
  color: #818681;
  font-size: 0.53rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-heading h2 {
  margin: 3px 0 0;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 680;
  letter-spacing: -0.01em;
}

.panel-heading button {
  border: 0;
  background: transparent;
  font-size: 0.61rem;
  font-weight: 690;
  cursor: pointer;
}

.empty-dashboard {
  min-height: 250px;
  padding: 35px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.empty-dashboard > span {
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8eee8;
  color: var(--green);
}

.empty-dashboard h3 {
  margin-bottom: 5px;
  font-size: 0.82rem;
}

.empty-dashboard p {
  max-width: 410px;
  margin-bottom: 0;
  color: #7b807b;
  font-size: 0.64rem;
  line-height: 1.6;
}

.activity-panel ul {
  padding: 19px 20px;
  margin: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.activity-panel li {
  display: flex;
  align-items: start;
  gap: 9px;
  color: #606560;
  font-size: 0.63rem;
  line-height: 1.5;
}

.activity-panel li span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: #e8eee8;
  color: var(--green);
  font-size: 0.5rem;
}

.workflow-panel {
  margin-top: 12px;
}

.workflow-scroll {
  padding: 20px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.workflow-scroll > div {
  min-width: 142px;
  min-height: 82px;
  padding: 12px;
  border: 1px solid #dfddd7;
  display: grid;
  align-content: space-between;
  background: white;
}

.workflow-scroll span {
  color: #929692;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.53rem;
}

.workflow-scroll strong {
  font-size: 0.62rem;
  line-height: 1.35;
}

.auth-required {
  min-height: 680px;
  padding: 80px 20px;
  display: grid;
  place-items: center;
  background: #e9e7e1;
}

.auth-card {
  max-width: 550px;
  padding: 50px;
  border: 1px solid #d3d0c8;
  display: grid;
  justify-items: start;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.auth-card .aside-mark {
  margin-bottom: 33px;
}

.auth-card h1 {
  margin-bottom: 15px;
  font-size: 3rem;
}

.auth-card > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.not-found {
  min-height: 650px;
  padding: 80px 20px;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found > div {
  max-width: 620px;
}

.not-found > div > span {
  color: #a7aaa5;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.8rem;
}

.not-found h1 {
  margin: 15px 0;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.not-found p {
  margin-bottom: 27px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 17px;
  }

  .primary-nav > a {
    font-size: 0.7rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.65fr);
    gap: 45px;
  }

  .lot-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-card:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .auction-masthead-grid,
  .alerts-inner {
    gap: 50px;
  }

  .catalog-toolbar {
    grid-template-columns: 1.4fr repeat(3, 0.7fr);
  }

  .lot-detail-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.72fr);
  }

  .info-layout,
  .contact-grid {
    gap: 55px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .header-actions,
  .primary-nav {
    display: none;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
    padding: 11px;
    border: 1px solid #cfcdc5;
    border-radius: 2px;
    display: grid;
    align-content: center;
    gap: 5px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 1px;
    display: block;
    background: var(--ink);
  }

  .primary-nav.is-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 14px 20px 22px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0;
    background: var(--paper);
    box-shadow: var(--shadow-small);
  }

  .primary-nav.is-open > a {
    padding: 13px 0;
    border-bottom: 1px solid #e8e5df;
    font-size: 0.8rem;
  }

  .primary-nav.is-open > a::after {
    display: none;
  }

  .mobile-nav-actions {
    padding-top: 17px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    padding-block: 80px 55px;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 12, 11, 0.9), rgba(10, 12, 11, 0.45)),
      linear-gradient(0deg, rgba(9, 11, 10, 0.7), transparent 70%);
  }

  .hero-copy {
    max-width: 670px;
  }

  .featured-auction-card {
    width: min(100%, 600px);
  }

  .process-grid,
  .seller-panel,
  .results-grid,
  .auction-masthead-grid,
  .lot-detail-grid,
  .details-layout,
  .alerts-inner,
  .info-layout,
  .faq-layout,
  .contact-grid,
  .registration-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .seller-panel,
  .results-grid,
  .info-layout,
  .faq-layout,
  .contact-grid,
  .registration-grid {
    gap: 55px;
  }

  .seller-panel {
    align-items: start;
  }

  .seller-points {
    max-width: 620px;
  }

  .alerts-inner {
    gap: 35px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .search-field {
    grid-column: 1 / -1;
  }

  .catalog-toolbar > label:last-child {
    grid-column: 1 / -1;
  }

  .lot-detail-grid {
    gap: 22px;
  }

  .bid-panel {
    max-width: none;
  }

  .details-layout {
    gap: 45px;
  }

  .info-aside {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .announcement-inner {
    min-height: 36px;
    justify-content: center;
    text-align: center;
  }

  .announcement-inner a {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

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

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-block: 68px 38px;
    gap: 42px;
  }

  .hero-media {
    background-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 12, 11, 0.93), rgba(10, 12, 11, 0.54)),
      linear-gradient(0deg, rgba(9, 11, 10, 0.86) 0%, transparent 75%);
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 4.9rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.92rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .seller-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 10px 17px;
  }

  .featured-auction-card {
    padding: 24px 20px;
  }

  .featured-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .featured-card-actions .button {
    width: 100%;
  }

  .section {
    padding-block: 78px;
  }

  .featured-lots {
    padding-top: 70px;
  }

  .section-heading {
    margin-bottom: 30px;
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .section-heading h2,
  .process-grid h2,
  .results-grid h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .lot-grid,
  .catalog-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card,
  .trust-card:first-child,
  .trust-card:nth-child(3) {
    min-height: 225px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-card h3 {
    margin-top: 32px;
  }

  .process-grid {
    gap: 44px;
  }

  .seller-panel h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .seller-actions {
    display: grid;
  }

  .seller-points {
    padding-left: 20px;
  }

  .results-empty,
  .results-empty.large {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .results-empty .arrow-link,
  .results-empty .button {
    grid-column: 1;
  }

  .alert-form {
    grid-template-columns: 1fr;
  }

  .alert-form small,
  .alert-form .form-error {
    grid-column: 1;
  }

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

  .footer-bottom {
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .auction-masthead {
    padding-block: 65px 78px;
  }

  .auction-masthead h1,
  .interior-hero h1,
  .registration-intro h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .auction-masthead-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .auction-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .masthead-countdown {
    padding: 22px 18px;
  }

  .catalog-section {
    padding-top: 30px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .search-field,
  .catalog-toolbar > label:last-child {
    grid-column: 1;
  }

  .catalog-results-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .breadcrumbs {
    min-height: 52px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .lot-detail {
    padding-bottom: 58px;
  }

  .lot-detail-grid {
    width: 100%;
  }

  .lot-gallery {
    width: 100%;
  }

  .thumbnail-row {
    padding-inline: 14px;
  }

  .bid-panel {
    margin-inline: 14px;
    padding: 23px 20px;
  }

  .lot-information {
    padding-bottom: 75px;
  }

  .tabs {
    padding-inline: 14px;
  }

  .tab-panel {
    padding-inline: 14px;
  }

  .spec-grid,
  .pedigree-grid {
    grid-template-columns: 1fr;
  }

  .document-list > div {
    grid-template-columns: 45px 1fr;
  }

  .document-list > div > span:last-child {
    grid-column: 2;
  }

  .interior-hero {
    padding-block: 74px;
  }

  .interior-hero-inner > p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .info-section {
    padding-top: 65px;
  }

  .faq-list article > p {
    padding-right: 0;
  }

  .contact-grid {
    gap: 45px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 23px 18px;
  }

  .registration-page {
    padding-block: 68px 85px;
  }

  .registration-grid {
    gap: 45px;
  }

  .registration-intro ol {
    grid-template-columns: 1fr;
  }

  .registration-card {
    padding: 27px 21px;
  }

  .dashboard-shell {
    display: block;
  }

  .dashboard-sidebar {
    width: min(86vw, 290px);
    position: fixed;
    z-index: 90;
    top: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-104%);
    transition: transform 200ms ease;
  }

  .dashboard-sidebar.open {
    transform: translateX(0);
    box-shadow: 20px 0 80px rgba(0, 0, 0, 0.28);
  }

  .dashboard-nav-close {
    width: 37px;
    height: 37px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 18px;
    right: 15px;
    display: block;
    background: transparent;
    color: white;
    font-size: 1.3rem;
  }

  .dashboard-header {
    min-height: 90px;
    padding: 17px 15px;
  }

  .dashboard-header > div:first-child {
    display: flex;
    align-items: center;
    gap: 11px;
  }

  .dashboard-header > div:first-child .eyebrow {
    display: none;
  }

  .dashboard-menu {
    width: 38px;
    height: 38px;
    border: 1px solid #d2d0ca;
    display: grid;
    place-items: center;
    background: white;
  }

  .dashboard-header h1 {
    font-size: 1rem;
  }

  .dashboard-header-actions label {
    display: none;
  }

  .dashboard-content {
    padding: 16px 14px 35px;
  }

  .configuration-banner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .metric-card {
    min-height: 125px;
  }

  .metric-card strong {
    font-size: 1.7rem;
  }

  .workflow-scroll {
    padding: 15px;
  }

  .auth-card {
    padding: 33px 23px;
  }
}

/* Final launch-quality interaction and workflow refinements. */
.readiness-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(169, 139, 86, 0.42);
  background:
    radial-gradient(circle at 100% 0, rgba(201, 199, 191, 0.26), transparent 36%),
    linear-gradient(135deg, #fffdf8 0%, #f3efe6 100%);
}

.readiness-card::before {
  content: "";
  width: 4px;
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(var(--gold), var(--green));
}

.readiness-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.readiness-heading .eyebrow {
  margin-bottom: 8px;
}

.readiness-heading h3 {
  margin: 0 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 500;
}

.readiness-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.readiness-heading > strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.readiness-meter {
  width: 100%;
  height: 8px;
  margin: 22px 0 18px;
  appearance: none;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #dcd9d1;
}

.readiness-meter::-webkit-progress-bar {
  border-radius: inherit;
  background: #dcd9d1;
}

.readiness-meter::-webkit-progress-value {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #71806f);
}

.readiness-meter::-moz-progress-bar {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #71806f);
}

.readiness-steps {
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.readiness-steps span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 680;
}

.readiness-steps .complete {
  border-color: rgba(53, 74, 59, 0.28);
  color: var(--green);
}

.verified-note,
.readonly-field {
  padding: 12px 14px;
  border: 1px solid rgba(53, 74, 59, 0.24);
  background: #edf2ec;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 680;
}

.readonly-field {
  display: grid;
  gap: 3px;
}

.readonly-field span {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.submitted-file-list {
  display: grid;
  gap: 8px;
}

.submitted-file-list a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.submitted-file-list a:hover {
  border-color: #aaa89f;
  box-shadow: var(--shadow-small);
  transform: translateY(-1px);
}

.submitted-file-list span {
  color: var(--muted);
  font-size: 0.68rem;
  text-align: right;
}

.transaction-progress li.complete {
  color: var(--ink);
}

.transaction-progress li.complete > span {
  border-color: var(--green);
  background: var(--green);
  box-shadow: inset 0 0 0 2px white;
}

.transaction-progress li.complete:not(:last-child)::before {
  background: var(--green);
}

.transaction-exception {
  margin: 14px 0 20px;
  padding: 14px;
  border: 1px solid #d5aaa5;
  background: #f7e7e4;
  color: #702d28;
}

.transaction-exception strong,
.transaction-exception p {
  display: block;
  margin: 0;
}

.transaction-exception p {
  margin-top: 4px;
  font-size: 0.7rem;
  line-height: 1.5;
}

.bid-gate {
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #f3f1eb, #fffdf8);
}

.bid-gate p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 620px) {
  .readiness-heading,
  .submitted-file-list a {
    align-items: flex-start;
    flex-direction: column;
  }

  .submitted-file-list span {
    text-align: left;
  }

  .readiness-card .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .mobile-nav-actions,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .countdown-unit {
    padding-inline: 4px;
  }

  .countdown-unit strong {
    font-size: 1rem;
  }

  .auction-facts {
    grid-template-columns: 1fr;
  }

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

  .role-toggle {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Production marketplace application */

.catalog-disclosure {
  padding-block: 38px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.catalog-disclosure-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 70px;
}

.catalog-disclosure h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.fee-disclosure-list {
  border-top: 1px solid var(--line);
  display: grid;
}

.fee-disclosure-list > span {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.74rem;
}

.fee-disclosure-list b {
  color: var(--ink);
}

.featured-auction-empty > p:not(.sale-kicker) {
  color: #5f635e;
  font-size: 0.76rem;
  line-height: 1.65;
}

.live-toolbar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.live-toolbar .search-field {
  grid-column: span 2;
}

.auction-catalog-group {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.auction-catalog-group > header {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.auction-catalog-group > header span,
.catalog-group-fees {
  color: var(--muted);
  font-size: 0.64rem;
}

.auction-catalog-group > header > div:first-child > span {
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auction-catalog-group h2 {
  margin: 7px 0 4px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.auction-catalog-group p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.catalog-group-fees {
  max-width: 440px;
  display: grid;
  justify-items: end;
  gap: 5px;
  text-align: right;
}

.catalog-group-fees b {
  color: var(--ink);
}

.catalog-group-fees a {
  margin-top: 3px;
  color: var(--ink);
  font-weight: 720;
}

.live-watch-wrap {
  min-width: 0;
  display: grid;
}

.live-watch-wrap small {
  margin-top: 4px;
  color: var(--red);
  font-size: 0.58rem;
}

.production-ribbon {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 2px;
  background: rgba(16, 18, 17, 0.92);
  color: white;
  font-size: 0.6rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-record-note {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--paper);
}

.live-record-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.live-bid-panel .live-watch-wrap {
  display: block;
}

.live-bid-panel .watch-button {
  min-height: 36px;
  padding-inline: 10px;
}

.live-closing-box .countdown {
  margin-block: 12px;
}

.live-bid-form,
.auction-registration-box {
  margin-top: 17px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.live-bid-form label,
.auction-registration-box label,
.workspace-form label,
.inline-record-form label,
.inline-code-form label {
  display: grid;
  gap: 6px;
}

.live-bid-form label > span,
.workspace-form label > span,
.inline-record-form label > span,
.inline-code-form label > span {
  color: #656a65;
  font-size: 0.62rem;
  font-weight: 690;
}

.live-bid-form small {
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.55;
}

.auction-registration-box > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.auction-registration-box > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-success {
  margin: 12px 0 0;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 650;
}

.live-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
}

.live-details-grid h2 {
  margin-bottom: 26px;
  font-size: clamp(2.25rem, 3.2vw, 3.5rem);
}

.live-details-grid h3 {
  margin: 28px 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.document-list {
  display: grid;
  gap: 8px;
}

.document-list a {
  padding: 13px 15px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--paper);
}

.document-list a span {
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: capitalize;
}

.document-list a strong {
  font-size: 0.72rem;
}

.document-list > p {
  color: var(--muted);
  font-size: 0.75rem;
}

.bid-history-section {
  background: #efede7;
}

.bid-history-table {
  border-top: 1px solid #cfccc3;
}

.bid-history-table > div {
  min-height: 57px;
  border-bottom: 1px solid #cfccc3;
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr 0.7fr;
  align-items: center;
  gap: 18px;
  font-size: 0.73rem;
}

.bid-history-table > div span,
.bid-history-table > div time,
.bid-history-table > div em {
  color: var(--muted);
}

.bid-history-table > div em {
  justify-self: end;
  font-style: normal;
  text-transform: capitalize;
}

.bid-history-table > p {
  padding-block: 25px;
  color: var(--muted);
}

.workspace-panel,
.workspace-form {
  padding: 28px;
  border: 1px solid #dedbd3;
  border-radius: 5px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(17, 19, 17, 0.02);
}

.workspace-form {
  display: grid;
  align-content: start;
  gap: 14px;
}

.offline-method-options {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
}

.offline-method-options legend {
  padding-inline: 5px;
  color: #656a65;
  font-size: 0.62rem;
  font-weight: 690;
}

.offline-method-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.68rem;
}

.offline-method-options input {
  width: 16px;
  min-height: 16px;
  margin: 0;
}

.workspace-stack {
  display: grid;
  gap: 22px;
}

.workspace-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
}

.workspace-page-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.workspace-page-heading > span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 730;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.workspace-page-heading h1 {
  margin: 9px 0 13px;
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
}

.workspace-page-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.workspace-role-toggle {
  max-width: 520px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.workspace-role-toggle button {
  min-height: 46px;
  border: 0;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.workspace-role-toggle button.active {
  background: var(--ink);
  color: white;
}

.workspace-message {
  margin-bottom: 18px;
  padding: 13px 15px;
  border: 1px solid #bac7bb;
  background: #f2f7f1;
  color: #294130;
  font-size: 0.73rem;
}

.workspace-message.error {
  border-color: #d6aaa6;
  background: #fff2f0;
  color: #7d2822;
}

.workspace-status {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #eceae4;
  color: #545953;
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.status-approved,
.status-verified,
.status-ready,
.status-published,
.status-live,
.status-transaction-completed,
.status-cleared-for-pickup {
  background: #dfe9e1;
  color: #2c4a35;
}

.status-pending,
.status-review,
.status-platform-fees-due,
.status-awaiting-payment-selection,
.status-purchase-payment-processing {
  background: #f0e6cf;
  color: #75571f;
}

.status-denied,
.status-suspended,
.status-revoked,
.status-defaulted,
.status-disputed,
.status-failed,
.status-canceled {
  background: #f1dcd8;
  color: #7f2b24;
}

.check-field {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  gap: 10px !important;
}

.check-field input {
  width: 17px;
  min-height: 17px;
  margin-top: 2px;
}

.check-field > span {
  color: var(--muted) !important;
  font-size: 0.68rem !important;
  line-height: 1.55;
}

.form-row-three {
  grid-template-columns: 1.1fr 0.6fr 0.7fr;
}

.setup-list {
  border-top: 1px solid var(--line);
  display: grid;
}

.setup-list > article {
  min-height: 79px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.setup-list strong {
  font-size: 0.78rem;
}

.setup-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
}

.inline-code-form {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px;
}

.workspace-action-list {
  display: grid;
}

.workspace-action-list > a,
.workspace-action-list > button {
  min-height: 54px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.workspace-action-list > a span,
.workspace-action-list > button span {
  color: var(--muted);
}

.empty-dashboard.compact {
  min-height: 190px;
}

.notification-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.notification-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 9px;
}

.notification-list li > span {
  color: var(--gold);
}

.notification-list strong {
  font-size: 0.73rem;
}

.notification-list p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.notification-list small {
  color: #8a8e89;
  font-size: 0.57rem;
}

.panel-empty-copy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.workspace-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.workspace-record-card {
  padding: 19px;
  border: 1px solid var(--line);
  background: #faf8f2;
}

.record-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.record-card-top > span:last-child {
  color: var(--muted);
  font-size: 0.59rem;
}

.workspace-record-card h3 {
  margin: 21px 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.workspace-record-card > p {
  color: var(--muted);
  font-size: 0.68rem;
}

.workspace-record-card dl {
  margin: 15px 0;
  border-top: 1px solid var(--line);
}

.workspace-record-card dl > div {
  padding-block: 9px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.64rem;
}

.workspace-record-card dt {
  color: var(--muted);
}

.workspace-record-card dd {
  margin: 0;
  font-weight: 680;
  text-transform: capitalize;
}

.workspace-table-wrap {
  overflow-x: auto;
}

.workspace-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.workspace-table th,
.workspace-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
  vertical-align: middle;
}

.workspace-table th {
  color: var(--muted);
  font-size: 0.56rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.workspace-table td strong,
.workspace-table td small {
  display: block;
}

.workspace-table td small {
  margin-top: 3px;
  color: var(--muted);
}

.workspace-table td button,
.workspace-table td a {
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 720;
  cursor: pointer;
}

.approval-list {
  display: grid;
}

.approval-list > article {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.approval-list strong {
  font-size: 0.77rem;
}

.approval-list p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.approval-list small {
  color: #858985;
  font-size: 0.58rem;
}

.approval-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.document-review-list {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
}

.document-review-list > article {
  min-height: 58px;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.document-review-list > article > div {
  display: grid;
  gap: 3px;
}

.document-review-list strong {
  font-size: 0.72rem;
}

.document-review-list span {
  color: var(--muted);
  font-size: 0.6rem;
  text-transform: capitalize;
}

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

.audit-list > article {
  min-height: 64px;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(200px, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.audit-list strong,
.audit-list span {
  display: block;
}

.audit-list strong {
  font-size: 0.69rem;
  text-transform: capitalize;
}

.audit-list span,
.audit-list p,
.audit-list time {
  color: var(--muted);
  font-size: 0.59rem;
}

.audit-list p {
  margin: 0;
}

.transaction-card {
  scroll-margin-top: 20px;
}

.transaction-summary-grid {
  margin-bottom: 22px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.transaction-summary-grid > div {
  min-height: 86px;
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  align-content: center;
}

.transaction-summary-grid span {
  color: var(--muted);
  font-size: 0.58rem;
}

.transaction-summary-grid strong {
  margin-top: 3px;
  font-size: 1.08rem;
}

.transaction-note {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--platinum-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f3ee;
}

.transaction-note strong {
  min-width: 190px;
  font-size: 0.7rem;
  text-transform: capitalize;
}

.transaction-note span {
  flex: 1;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.5;
}

.payment-choice {
  padding: 18px;
  border: 1px solid #d7d2c4;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(150px, 0.4fr) auto;
  align-items: end;
  gap: 10px;
  background: #f5f1e7;
}

.payment-choice h3 {
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.payment-choice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.5;
}

.payment-warning {
  grid-column: 1 / -1;
  color: #7a4c31;
  font-size: 0.62rem;
  line-height: 1.45;
}

.second-chance-choice {
  margin-bottom: 18px;
  grid-template-columns: minmax(260px, 1fr) auto auto;
}

.reserve-offer-list {
  margin-bottom: 22px;
  display: grid;
  gap: 12px;
}

.reserve-offer-list > article {
  padding: 20px;
  border: 1px solid #c8b987;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #f7f1df;
}

.reserve-offer-list h3 {
  margin: 5px 0 7px;
  font-size: 1rem;
}

.reserve-offer-list span {
  color: #735d2f;
  font-size: 0.58rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reserve-offer-list p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.buyer-lot-lists {
  margin-block: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.buyer-lot-lists > section {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: #f8f6f0;
}

.buyer-lot-lists .panel-heading {
  margin-bottom: 10px;
}

.buyer-lot-lists .panel-heading h3 {
  margin-top: 3px;
  font-size: 0.86rem;
}

.compact-lot-list {
  display: grid;
}

.compact-lot-list > a {
  padding: 10px 0;
  border-top: 1px solid #e0ddd4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
}

.compact-lot-list > a > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.compact-lot-list > a > div:last-child {
  flex-shrink: 0;
  justify-items: end;
}

.compact-lot-list strong,
.compact-lot-list b {
  font-size: 0.65rem;
}

.compact-lot-list span,
.compact-lot-list small,
.compact-lot-list > p {
  color: var(--muted);
  font-size: 0.56rem;
}

.compact-lot-list > p {
  margin: 10px 0 0;
}

.second-chance-form,
.relist-form,
.admin-transaction-form,
.reserve-decision-form {
  margin-top: 18px;
}

.pickup-certificate {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #b9c6bb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #f1f6f0;
}

.pickup-certificate > div {
  display: grid;
}

.pickup-certificate span {
  color: var(--green);
  font-size: 0.58rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pickup-certificate strong {
  margin-block: 7px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.pickup-certificate p,
.pickup-certificate small {
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
}

.pickup-certificate img {
  width: 130px;
  height: 130px;
  border: 8px solid white;
}

.transaction-forms {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.transaction-messages {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #f7f5ef;
}

.transaction-messages-heading {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.transaction-messages-heading span,
.transaction-messages-heading small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 690;
}

.transaction-messages-heading h3 {
  margin-top: 4px;
  font-size: 0.92rem;
}

.message-thread {
  max-height: 320px;
  padding: 4px;
  display: grid;
  gap: 9px;
  overflow-y: auto;
}

.message-thread > article {
  max-width: 78%;
  padding: 11px 13px;
  border: 1px solid #d9d5ca;
  border-radius: 4px;
  background: white;
}

.message-thread > article.sent {
  justify-self: end;
  background: #e8eee8;
}

.message-thread span,
.message-thread time {
  color: var(--muted);
  font-size: 0.54rem;
}

.message-thread p {
  margin: 5px 0;
  font-size: 0.68rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.message-compose {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(260px, 1fr) auto;
  align-items: end;
  gap: 9px;
}

.message-compose label {
  display: grid;
  gap: 5px;
}

.message-compose label > span {
  color: var(--muted);
  font-size: 0.58rem;
}

.message-compose label:only-of-type {
  grid-column: 1 / 3;
}

.inline-record-form {
  padding: 15px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) repeat(4, minmax(130px, 0.6fr));
  align-items: end;
  gap: 9px;
}

.inline-record-form h3 {
  grid-column: 1 / -1;
  margin-bottom: 3px;
  font-size: 0.82rem;
}

.configuration-banner .button {
  margin-left: auto;
  flex-shrink: 0;
}

.dashboard-sidebar nav a {
  min-height: 45px;
  padding: 12px 14px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  color: #aeb4af;
  font-size: 0.72rem;
  font-weight: 620;
}

.dashboard-sidebar nav a.active,
.dashboard-sidebar nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

@media (max-width: 1100px) {
  .workspace-two-column,
  .catalog-disclosure-inner,
  .live-details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workspace-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buyer-lot-lists {
    grid-template-columns: 1fr;
  }

  .payment-choice {
    grid-template-columns: 1fr 1fr;
  }

  .payment-choice > div {
    grid-column: 1 / -1;
  }

  .inline-record-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inline-record-form h3 {
    grid-column: 1 / -1;
  }

  .live-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .live-toolbar,
  .workspace-card-grid,
  .transaction-summary-grid,
  .payment-choice,
  .message-compose,
  .inline-record-form,
  .form-row-three {
    grid-template-columns: 1fr;
  }

  .live-toolbar .search-field {
    grid-column: auto;
  }

  .message-compose label:only-of-type {
    grid-column: auto;
  }

  .auction-catalog-group > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-group-fees {
    justify-items: start;
    text-align: left;
  }

  .fee-disclosure-list > span {
    align-items: flex-start;
    display: grid;
  }

  .approval-list > article,
  .reserve-offer-list > article,
  .pickup-certificate,
  .transaction-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .approval-actions {
    justify-content: flex-start;
  }

  .audit-list > article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pickup-certificate img {
    width: 112px;
    height: 112px;
  }

  .bid-history-table > div {
    grid-template-columns: 0.7fr 1fr;
  }

  .bid-history-table > div em {
    justify-self: start;
  }

  .results-auction-card > header {
    display: grid;
  }

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

  .results-auction-card header time {
    text-align: left;
  }

  .results-lot-list > a {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .results-lot-list small,
  .results-lot-list em,
  .results-lot-list b {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .workspace-panel,
  .workspace-form {
    padding: 20px;
  }

  .workspace-role-toggle,
  .inline-code-form {
    grid-template-columns: 1fr;
  }

  .setup-list > article {
    align-items: flex-start;
    flex-direction: column;
  }

  .workspace-table {
    min-width: 680px;
  }
}

/* cPanel/PHP application additions */

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: white;
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.inline-form {
  display: inline-flex;
  margin: 0;
}

.narrow {
  max-width: 780px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-wide {
  width: 100%;
}

.section-paper {
  background: var(--paper);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.68);
}

.featured-sale-grid,
.consign-cta-grid,
.alerts-grid,
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.featured-sale-grid h2,
.section-heading h2,
.trust-grid h2,
.consign-cta h2,
.alerts-grid h2,
.page-hero h1,
.catalog-hero h1,
.auth-copy h1,
.certificate h1,
.seller-workspace-heading h1 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.sale-facts,
.detail-list {
  margin: 28px 0 0;
}

.sale-facts > div,
.detail-list > div {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(120px, 0.65fr) minmax(0, 1fr);
  gap: 20px;
}

.sale-facts dt,
.detail-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sale-facts dd,
.detail-list dd {
  margin: 0;
  font-weight: 650;
}

.countdown-card {
  padding: clamp(28px, 4vw, 48px);
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.countdown-card > span,
.lot-timer > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.countdown-card .countdown {
  margin: 25px 0;
}

.countdown-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.countdown > div {
  padding: 14px 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.countdown strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
}

.countdown small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading > div {
  max-width: 720px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.text-link {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 720;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid article {
  min-height: 280px;
  padding: 32px;
  background: var(--warm-white);
}

.process-grid article > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.process-grid h3 {
  margin-top: 75px;
  font-size: 1.1rem;
}

.process-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-section {
  background: var(--ink);
  color: white;
}

.trust-grid p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.result-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-small);
}

.result-card > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-card h3 {
  margin: 54px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.result-card p {
  margin: 0;
  color: var(--muted);
}

.consign-cta {
  padding: clamp(70px, 10vw, 130px) 0;
  background:
    linear-gradient(90deg, rgba(9, 12, 10, 0.94), rgba(9, 12, 10, 0.76)),
    url("/media/pickup-ranch.webp") center 60% / cover;
  color: white;
}

.consign-cta-grid > div:last-child p {
  color: rgba(255, 255, 255, 0.72);
}

.alerts-grid {
  align-items: start;
}

.alert-form {
  display: grid;
  gap: 16px;
}

label,
fieldset {
  min-width: 0;
}

label > span,
fieldset > legend {
  display: block;
  margin-bottom: 7px;
  color: #3d423e;
  font-size: 0.76rem;
  font-weight: 720;
}

label small,
.auth-note,
.fine-print {
  color: var(--muted);
  font-size: 0.72rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #c9c7c0;
  border-radius: 2px;
  background: white;
  color: var(--ink);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:disabled,
select:disabled,
textarea:disabled {
  background: #eceae4;
  color: #717571;
}

fieldset {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-row input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.check-row > span {
  margin: 0;
  color: #4b4f4b;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.5;
}

.check-row a {
  text-decoration: underline;
}

.form-status {
  min-height: 1.5em;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status.is-error {
  color: var(--red);
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-working {
  color: var(--gold);
}

.page-hero {
  padding: clamp(72px, 10vw, 135px) 0;
  background: var(--platinum-bright);
}

.page-hero-dark,
.catalog-hero {
  background: var(--ink);
  color: white;
}

.page-hero h1 {
  margin-bottom: 22px;
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero-dark p:last-child,
.catalog-hero p {
  color: rgba(255, 255, 255, 0.67);
}

.catalog-tabs {
  margin-bottom: 42px;
  display: flex;
  border-bottom: 1px solid var(--line);
}

.catalog-tabs a {
  padding: 12px 22px;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.catalog-tabs a.active {
  border-color: var(--ink);
  color: var(--ink);
}

.auction-list {
  display: grid;
  gap: 34px;
}

.auction-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.auction-card-image {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.auction-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auction-card-image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 10px;
  background: rgba(17, 19, 17, 0.88);
  color: white;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.auction-card-content {
  padding: clamp(28px, 5vw, 58px);
}

.auction-card-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.auction-card-facts {
  margin: 24px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.76rem;
}

.empty-state,
.empty-feature,
.error-page {
  padding: clamp(40px, 8vw, 100px);
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

.empty-state > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.empty-state h2,
.empty-feature h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.catalog-hero {
  padding: clamp(65px, 9vw, 118px) 0;
  position: relative;
  overflow: hidden;
}

.catalog-hero-media,
.catalog-hero-overlay {
  position: absolute;
  inset: 0;
}

.catalog-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.catalog-hero-overlay {
  background: linear-gradient(90deg, rgba(10, 12, 11, 0.96), rgba(10, 12, 11, 0.78));
}

.catalog-hero > .container {
  position: relative;
  z-index: 1;
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 70px;
  align-items: end;
}

.catalog-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.catalog-summary {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.catalog-summary > div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.catalog-summary span,
.catalog-summary strong {
  display: block;
}

.catalog-summary span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-summary strong {
  margin-top: 3px;
  font-size: 0.9rem;
}

.catalog-notice {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.notice-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  font-size: 0.75rem;
}

.notice-grid button {
  margin-left: auto;
}

.catalog-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.catalog-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.catalog-filters {
  display: grid;
  grid-template-columns: minmax(190px, 1.4fr) repeat(3, minmax(130px, 1fr));
  gap: 8px;
}

.catalog-filters input,
.catalog-filters select {
  min-height: 42px;
  padding: 8px 10px;
  font-size: 0.76rem;
}

.empty-filter {
  padding: 30px;
  text-align: center;
}

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

.lot-card {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(15, 18, 16, 0.06);
}

.lot-card-media {
  aspect-ratio: 4 / 3;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--charcoal);
}

.lot-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.lot-card:hover .lot-card-media img {
  transform: scale(1.025);
}

.lot-placeholder,
.media-pending {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(145deg, #303632, #111311);
  color: white;
  text-align: center;
}

.lot-placeholder span,
.media-pending > span {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
}

.lot-placeholder small,
.media-pending small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lot-number,
.lot-status {
  position: absolute;
  top: 14px;
  padding: 5px 9px;
  background: rgba(17, 19, 17, 0.88);
  color: white;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lot-number {
  left: 14px;
}

.lot-status {
  right: 14px;
}

.lot-card-body {
  padding: 22px;
}

.lot-card-body > div:first-child p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lot-card-body h3 {
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.lot-card-body dl {
  margin: 0;
  padding: 15px 0;
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.lot-card-body dt {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lot-card-body dd {
  margin: 3px 0 0;
  font-weight: 750;
}

.lot-card-meta,
.lot-card-actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lot-card-meta {
  color: var(--muted);
  font-size: 0.68rem;
}

.lot-card-actions > * {
  flex: 1;
}

.modal {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100dvh - 30px);
  padding: 0;
  border: 0;
  background: transparent;
}

.modal.modal-wide {
  width: min(1080px, calc(100% - 28px));
}

.modal::backdrop {
  background: rgba(9, 11, 10, 0.76);
  backdrop-filter: blur(5px);
}

.modal-card {
  max-height: calc(100dvh - 30px);
  padding: clamp(26px, 5vw, 48px);
  position: relative;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-card h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.modal-card > * + label,
.modal-card > * + fieldset {
  margin-top: 16px;
}

.modal-card [data-delivery-fields] {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.modal-close {
  width: 42px;
  height: 42px;
  padding: 0;
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
}

.responsive-table {
  max-width: 100%;
  overflow-x: auto;
}

.responsive-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.responsive-table th,
.responsive-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.responsive-table th {
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.responsive-table td small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.responsive-table .transaction-dialog-row > td {
  height: 0;
  padding: 0;
  border: 0;
}

.fee-empty,
.table-empty,
.locked-notice {
  padding: 18px;
  border: 1px dashed #c5c3bc;
  background: #f4f2ec;
  color: var(--muted);
}

.lot-breadcrumb {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.74rem;
}

.lot-breadcrumb .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.lot-detail {
  padding: clamp(34px, 6vw, 80px) 0;
}

.lot-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.lot-gallery {
  min-width: 0;
}

.lot-main-image,
.media-pending {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.document-strip {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.document-strip a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.68rem;
}

.lot-purchase-panel {
  padding: clamp(24px, 4vw, 38px);
  position: sticky;
  top: 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.lot-number-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lot-purchase-panel h1 {
  margin: 18px 0 6px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.lot-subtitle {
  color: var(--muted);
}

.bid-summary {
  margin: 24px 0 0;
  padding: 22px 0;
  border-block: 1px solid var(--line);
}

.bid-summary > span,
.bid-summary > strong,
.bid-summary > small {
  display: block;
}

.bid-summary > span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bid-summary > strong {
  margin: 4px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 500;
}

.bid-summary > small {
  color: var(--muted);
}

.lot-timer {
  margin: 22px 0;
  padding: 20px;
  background: var(--ink);
  color: white;
}

.countdown-compact {
  margin: 12px 0;
}

.countdown-compact > div {
  padding: 10px 3px;
}

.countdown-compact strong {
  font-size: 1.35rem;
}

.lot-timer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
}

.bid-form {
  display: grid;
  gap: 15px;
}

.money-input {
  display: flex;
  align-items: center;
  border: 1px solid #c9c7c0;
  background: white;
}

.money-input > span {
  padding-left: 13px;
  color: var(--muted);
}

.money-input input {
  border: 0;
}

.bid-gate {
  padding: 18px;
  background: #f0eee8;
}

.watch-button {
  width: 100%;
  margin-top: 12px;
  padding: 11px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.watch-button.active {
  background: var(--platinum-bright);
}

.lot-information-grid,
.activity-grid,
.contact-grid,
.prose-layout,
.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: start;
}

.detail-panels {
  display: grid;
  gap: 14px;
}

.detail-panel {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--warm-white);
}

.detail-panel h3 {
  margin-bottom: 12px;
}

.detail-panel p,
.detail-panel ul {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.bid-history {
  border-top: 1px solid var(--line);
}

.bid-history > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.5fr 1fr auto;
  gap: 18px;
  font-size: 0.76rem;
}

.bid-history span,
.bid-history time {
  color: var(--muted);
}

.auth-section {
  min-height: 70vh;
}

.auth-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  justify-content: center;
}

.auth-copy {
  padding: clamp(20px, 5vw, 70px) 0;
}

.auth-copy p {
  color: var(--muted);
}

.auth-card,
.form-card {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-small);
  display: grid;
  gap: 16px;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
}

.auth-card-compact {
  grid-column: 2;
  padding-block: 24px;
}

.auth-card-compact h2 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 9px 0 9px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.field-pair,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid .span-2 {
  grid-column: span 2;
}

.form-grid > .button,
.form-grid > .form-status {
  align-self: end;
}

.prose-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.prose h2 {
  margin: 44px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.prose h2:first-of-type {
  margin-top: 0;
}

.prose p,
.prose li {
  color: #4f534f;
}

.prose.compact {
  max-height: 270px;
  overflow-y: auto;
}

.prose-aside {
  padding: 28px;
  position: sticky;
  top: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.legal-review {
  margin-bottom: 30px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: #f1e8d6;
  font-weight: 650;
}

.dashboard-shell {
  min-height: 75vh;
  padding: 54px 0 90px;
}

.dashboard-heading,
.seller-workspace-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.dashboard-heading h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.dashboard-heading p,
.seller-workspace-heading p {
  color: var(--muted);
}

.dashboard-badges {
  max-width: 480px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.dashboard-badges span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 700;
}

.dashboard-badges .verified {
  background: #e6eee8;
  color: #2d4a35;
}

.dashboard-badges .pending {
  background: #f3ead8;
  color: #765b2e;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.dashboard-nav {
  position: sticky;
  top: 18px;
  display: grid;
  border: 1px solid var(--line);
  background: var(--paper);
}

.dashboard-nav button {
  padding: 15px 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.dashboard-nav button.active {
  background: var(--ink);
  color: white;
}

.dashboard-content {
  min-width: 0;
}

.dashboard-panel {
  display: none;
}

.dashboard-panel.active {
  display: block;
}

.panel-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.panel-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.panel-heading > span {
  color: var(--muted);
  font-size: 0.7rem;
}

.stat-grid,
.admin-summary {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat-grid article,
.admin-summary article {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.stat-grid span,
.admin-summary span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-grid strong,
.admin-summary strong {
  display: block;
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
}

.stat-grid small {
  color: var(--muted);
  font-size: 0.68rem;
}

.dashboard-card {
  margin-bottom: 20px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(15, 18, 16, 0.04);
}

.dashboard-card h3 {
  margin-bottom: 18px;
}

.dashboard-two-column,
.seller-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 20px;
  align-items: start;
}

.dashboard-stack {
  display: grid;
  gap: 16px;
}

.dashboard-stack .dashboard-card {
  margin: 0;
}

.status-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.78rem;
}

.status-list b {
  text-align: right;
}

.status-pill {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid #b9b9b3;
  background: #eeece6;
  color: #555954;
  font-size: 0.61rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-approved,
.status-live,
.status-cleared_for_pickup,
.status-cleared-for-pickup,
.status-transaction_completed,
.status-transaction-completed,
.status-refunded,
.status-processed,
.status-paid {
  border-color: #b6c9ba;
  background: #e4eee6;
  color: #27452f;
}

.status-pending,
.status-pending_review,
.status-reserve_pending,
.status-platform_fees_due,
.status-purchase_payment_processing,
.status-refund_processing,
.status-refund_pending,
.status-reversal_pending,
.status-retry_1,
.status-retry_2,
.status-scheduled,
.status-processing {
  border-color: #dbc99c;
  background: #f4ead2;
  color: #735623;
}

.status-denied,
.status-rejected,
.status-suspended,
.status-revoked,
.status-defaulted,
.status-disputed,
.status-dispute_hold,
.status-late_success,
.status-failed,
.status-canceled {
  border-color: #dbb9b5;
  background: #f3dfdd;
  color: #7f312a;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.table-actions form {
  margin: 0;
}

.table-actions a,
.table-actions button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.compact-action-form {
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 6px;
}

.compact-action-form input,
.compact-action-form select,
.compact-action-form button {
  min-height: 34px;
  padding: 5px 7px;
  font-size: 0.68rem;
}

.compact-action-form input {
  grid-column: span 2;
}

.compact-action-form button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  cursor: pointer;
}

.admin-fee-list {
  margin-bottom: 10px;
  display: grid;
  gap: 6px;
}

.admin-fee-list > div {
  padding: 7px 9px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.7rem;
}

.admin-fee-list form {
  margin: 0;
  display: flex;
  gap: 5px;
}

.admin-fee-list input,
.admin-fee-list button {
  min-height: 30px;
  padding: 4px 6px;
  border: 1px solid var(--line);
  font: inherit;
}

.notification-list {
  display: grid;
  gap: 10px;
}

.second-chance-list {
  display: grid;
  gap: 10px;
}

.second-chance-list article {
  padding: 18px;
  border: 1px solid #d4bd85;
  background: #f7efdd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.second-chance-list h4 {
  margin: 4px 0;
  font-size: 1.05rem;
}

.second-chance-list p,
.second-chance-list article > div > span {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.second-chance-list form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.notification-list article {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 20px;
  align-items: start;
}

.notification-list article.unread {
  border-left: 4px solid var(--gold);
}

.notification-list h3 {
  margin: 4px 0;
}

.notification-list p,
.notification-list time,
.notification-list article > div > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.invoice-breakdown {
  margin: 18px 0;
  border-top: 1px solid var(--line);
}

.invoice-breakdown span {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.seller-workspace-heading > div:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.transaction-page-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.transaction-page-heading h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.transaction-page-heading p {
  color: var(--muted);
}

.transaction-page-heading > div:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.transaction-page-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.transaction-progress {
  padding: 24px;
  position: sticky;
  top: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.transaction-progress h2 {
  font-size: 1.7rem;
}

.transaction-progress ol {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.transaction-progress li {
  min-height: 46px;
  position: relative;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  font-size: 0.68rem;
}

.transaction-progress li > span {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border: 2px solid #aaa9a3;
  border-radius: 50%;
  background: white;
}

.transaction-progress li:not(:last-child)::before {
  content: "";
  width: 1px;
  position: absolute;
  top: 14px;
  bottom: 0;
  left: 5px;
  background: #cfcdc6;
}

.transaction-progress li.current {
  color: var(--ink);
}

.transaction-progress li.current > span {
  border-color: var(--green);
  background: var(--green);
}

.transaction-progress strong,
.transaction-progress small {
  display: block;
}

.transaction-progress small {
  color: var(--green);
}

.transaction-page-main {
  min-width: 0;
}

.transaction-documents {
  margin-bottom: 18px;
  display: grid;
  gap: 8px;
}

.transaction-documents a {
  padding: 14px;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.transaction-documents span {
  color: var(--muted);
  font-size: 0.7rem;
}

.message-thread {
  max-height: 520px;
  margin-bottom: 18px;
  padding: 16px;
  overflow-y: auto;
  background: #efede7;
  display: grid;
  gap: 10px;
}

.message-thread article {
  width: min(80%, 620px);
  padding: 14px;
  border: 1px solid var(--line);
  background: white;
}

.message-thread article.mine {
  margin-left: auto;
  background: #e6eee8;
}

.message-thread article > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.68rem;
}

.message-thread time {
  color: var(--muted);
}

.message-thread p {
  margin: 8px 0 0;
  font-size: 0.82rem;
}

.message-compose {
  display: grid;
  gap: 12px;
}

.seller-workspace-grid {
  grid-template-columns: 300px minmax(0, 1fr);
}

.workspace-summary {
  padding: 24px;
  position: sticky;
  top: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.workspace-summary h2 {
  font-size: 1.7rem;
}

.seller-lot-list {
  display: grid;
  gap: 10px;
}

.seller-lot-list > article {
  padding: 18px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(170px, 1.4fr) minmax(230px, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.seller-lot-list h3 {
  margin: 2px 0 4px;
}

.seller-lot-list p,
.seller-lot-list > article > div:first-child > span {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.seller-lot-list dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.seller-lot-list dt {
  color: var(--muted);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.seller-lot-list dd {
  margin: 2px 0 0;
  font-size: 0.74rem;
  font-weight: 700;
}

.certificate-section {
  padding: clamp(30px, 7vw, 90px) 0;
}

.invoice-section {
  padding: clamp(30px, 7vw, 90px) 0;
}

.invoice-sheet {
  max-width: 1040px;
  padding: clamp(24px, 6vw, 64px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.invoice-head {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.invoice-head > div:first-child p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.invoice-head > div:last-child {
  text-align: right;
}

.invoice-head > div:last-child span,
.invoice-head > div:last-child strong,
.invoice-head > div:last-child small {
  display: block;
}

.invoice-head > div:last-child span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.invoice-head > div:last-child strong {
  margin: 4px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.invoice-parties,
.invoice-requirements {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.invoice-parties span,
.invoice-parties strong,
.invoice-requirements span,
.invoice-requirements strong,
.invoice-requirements small {
  display: block;
}

.invoice-parties span,
.invoice-requirements span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invoice-parties strong,
.invoice-requirements strong {
  margin-top: 4px;
}

.invoice-requirements small {
  margin-top: 3px;
  color: var(--muted);
}

.invoice-lot {
  padding: 34px 0;
}

.invoice-lot > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invoice-lot h1 {
  margin: 6px 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.invoice-lot p {
  margin: 0;
  color: var(--muted);
}

.invoice-table tfoot th {
  padding: 16px 12px;
  border-top: 2px solid var(--ink);
  color: var(--ink);
  font-size: 0.82rem;
}

.invoice-payment-history {
  padding-top: 34px;
}

.invoice-payment-history h2 {
  font-size: 2rem;
}

.invoice-warning {
  margin-top: 28px;
  padding: 18px;
  border-left: 4px solid var(--red);
  background: #f3dfdd;
  color: #742f29;
  font-weight: 650;
}

.invoice-actions {
  margin-top: 26px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.certificate {
  max-width: 920px;
  padding: clamp(24px, 6vw, 66px);
  border: 1px solid #a8a69e;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.certificate-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.certificate-title {
  padding: 45px 0 28px;
  text-align: center;
}

.certificate-title h1 {
  margin-bottom: 10px;
}

.certificate-title p:last-child {
  color: var(--muted);
}

.certificate-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.qr-box {
  width: 260px;
  height: 260px;
  padding: 12px;
  border: 1px solid var(--line);
  background: white;
  display: grid;
  place-items: center;
}

.qr-box canvas,
.qr-box img {
  max-width: 100%;
  height: auto;
}

.certificate-action,
.certificate-warning {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--line);
}

.certificate-warning {
  border-color: #d7b6b1;
  background: #f3dfdd;
  color: #742f29;
  font-weight: 650;
}

.toast-region {
  max-width: min(420px, calc(100% - 28px));
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1000;
  display: grid;
  gap: 8px;
}

.toast {
  padding: 14px 18px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-small);
  font-size: 0.8rem;
}

.toast.error {
  background: #7c3029;
}

@media (max-width: 1050px) {
  .process-grid,
  .stat-grid,
  .admin-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .seller-lot-list > article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .featured-sale-grid,
  .consign-cta-grid,
  .alerts-grid,
  .trust-grid,
  .catalog-hero-grid,
  .auction-card,
  .lot-detail-grid,
  .lot-information-grid,
  .activity-grid,
  .contact-grid,
  .prose-layout,
  .auth-grid,
  .dashboard-two-column,
  .seller-workspace-grid,
  .transaction-page-grid {
    grid-template-columns: 1fr;
  }

  .auth-card-compact {
    grid-column: 1;
  }

  .auction-card-image {
    min-height: 260px;
  }

  .lot-purchase-panel,
  .prose-aside,
  .dashboard-nav,
  .workspace-summary {
    position: static;
  }

  .transaction-progress {
    position: static;
  }

  .dashboard-heading,
  .seller-workspace-heading,
  .catalog-heading,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-badges {
    justify-content: flex-start;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-nav {
    display: flex;
    overflow-x: auto;
  }

  .dashboard-nav button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

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

  .qr-box {
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .lot-grid,
  .process-grid,
  .result-grid,
  .stat-grid,
  .admin-summary,
  .field-pair,
  .form-grid,
  .catalog-filters {
    grid-template-columns: 1fr;
  }

  .form-grid .span-2 {
    grid-column: span 1;
  }

  .process-grid article {
    min-height: auto;
  }

  .process-grid h3 {
    margin-top: 36px;
  }

  .catalog-tabs {
    overflow-x: auto;
  }

  .catalog-tabs a {
    flex: 0 0 auto;
    padding-inline: 14px;
  }

  .notice-grid button {
    margin-left: 0;
  }

  .lot-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bid-history > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .second-chance-list article {
    align-items: stretch;
    flex-direction: column;
  }

  .second-chance-list form {
    justify-content: flex-start;
  }

  .admin-fee-list > div,
  .admin-fee-list form {
    align-items: stretch;
    flex-direction: column;
  }

  .seller-workspace-heading > div:last-child,
  .transaction-page-heading,
  .transaction-page-heading > div:last-child,
  .certificate-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .transaction-documents a {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .message-thread article {
    width: 95%;
  }

  .invoice-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .invoice-head > div:last-child {
    text-align: left;
  }

  .invoice-parties,
  .invoice-requirements {
    grid-template-columns: 1fr;
  }

  .seller-lot-list dl {
    grid-template-columns: 1fr;
  }

  .qr-box {
    width: min(260px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .responsive-table table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
  }

  .responsive-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .responsive-table tr {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .responsive-table td {
    padding: 6px 0;
    border: 0;
  }

  .compact-action-form {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .compact-action-form input {
    grid-column: span 1;
  }
}

@media print {
  .announcement,
  .site-header,
  .site-footer,
  .certificate-action,
  .toast-region {
    display: none !important;
  }

  body {
    background: white;
  }

  .certificate-section {
    padding: 0;
  }

  .certificate,
  .invoice-sheet {
    max-width: none;
    border: 1px solid black;
    box-shadow: none;
  }

  .invoice-section {
    padding: 0;
  }

  .invoice-actions {
    display: none;
  }
}

/* Original Platinum presentation restored for the cPanel release. */

.brand-logo {
  width: 112px;
  height: 70px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-footer .brand-logo {
  width: 148px;
  height: auto;
  padding: 7px;
  border-radius: 4px;
  background: #fff;
  mix-blend-mode: normal;
}

.home-page .trust-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.home-page .process-grid {
  border: 0;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(70px, 11vw, 150px);
  align-items: start;
  background: transparent;
}

.home-page .alerts-inner {
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
}

.home-page .alert-form {
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 10px;
}

.home-page .alert-form .check-row,
.home-page .alert-form .form-status,
.home-page .alert-form > input[type="hidden"] {
  grid-column: 1 / -1;
}

.home-page .alert-form .check-row {
  display: flex;
  align-items: flex-start;
}

.home-page .alert-form .check-row > span {
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

.media-disclaimer {
  max-width: calc(100% - 28px);
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 9px;
  border-radius: 2px;
  background: rgba(13, 15, 14, 0.84);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.media-pending-image {
  min-height: 520px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: block;
  background: var(--charcoal);
}

.media-pending-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(12, 14, 13, 0.9), rgba(12, 14, 13, 0.04) 70%);
}

.media-pending-image > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
}

.media-pending-image > div {
  max-width: 520px;
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 4px;
  color: #fff;
  text-align: left;
}

.media-pending-image > div > span {
  color: var(--platinum-bright);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-pending-image > div > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.media-pending-image > div > small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

@media (max-width: 1080px) {
  .home-page .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-page .process-grid,
  .home-page .alerts-inner {
    grid-template-columns: 1fr;
  }

  .home-page .process-grid {
    gap: 55px;
  }
}

@media (max-width: 720px) {
  .brand-logo {
    width: 88px;
    height: 58px;
  }

  .header-inner {
    min-height: 72px;
  }

  .home-page .trust-grid,
  .home-page .alert-form {
    grid-template-columns: 1fr;
  }

  .home-page .alert-form .check-row,
  .home-page .alert-form .form-status,
  .home-page .alert-form > input[type="hidden"] {
    grid-column: 1;
  }

  .media-pending-image {
    min-height: 340px;
  }
}
