:root {
  color-scheme: light;
  --rr-dark: #241b16;
  --rr-darker: #18100d;
  --rr-ink: #1a1410;
  --rr-cream: #f4ebdd;
  --rr-cream-light: #fff8ed;
  --rr-tan: #d8c3a5;
  --rr-gold: #c59a4a;
  --rr-rust: #a94724;
  --rr-muted: #5c463a;
  --rr-line: rgba(36, 27, 22, 0.14);
  --rr-shadow: 0 18px 40px rgba(36, 27, 22, 0.12);
  --rr-shadow-strong: 0 24px 70px rgba(18, 12, 8, 0.26);
  --rr-radius: 8px;
  --rr-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --rr-font-ui: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(197, 154, 74, 0.18), transparent 28rem),
    linear-gradient(180deg, #fff8ed 0, var(--rr-cream) 34rem);
  color: var(--rr-ink);
  font-family: var(--rr-font-ui);
  font-size: 16px;
  line-height: 1.5;
}

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

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

.announcement-bar {
  display: grid;
  place-items: center;
  min-height: 40px;
  padding: 8px 18px;
  background: #120c08;
  color: var(--rr-cream);
  border-bottom: 1px solid rgba(197, 154, 74, 0.35);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 8px clamp(18px, 4vw, 54px);
  background: rgba(36, 27, 22, 0.94);
  color: var(--rr-cream);
  border-bottom: 1px solid rgba(244, 235, 221, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(132px, 15vw, 190px);
}

.brand img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.site-header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-size: 0.78rem;
  padding: 3px;
  border: 1px solid rgba(244, 235, 221, 0.12);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.05);
}

.site-header nav a {
  color: var(--rr-cream);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: 0.9;
  padding: 7px 10px;
  border-radius: 999px;
}

.site-header nav a:hover {
  background: rgba(244, 235, 221, 0.1);
  color: var(--rr-gold);
}

.header-action,
.primary-action,
.card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--rr-radius);
  background: var(--rr-rust);
  color: white;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(169, 71, 36, 0.22);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.header-tools {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.header-action {
  justify-self: end;
  min-height: 34px;
  padding: 0 13px;
  font-size: 0.73rem;
}

.header-action:hover,
.primary-action:hover,
.card-action:hover {
  background: var(--rr-gold);
  color: var(--rr-dark);
  transform: translateY(-1px);
}

.social-icon-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.social-icon-row a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(244, 235, 221, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.08);
  color: var(--rr-cream);
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.social-icon-row img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.social-icon-row a:hover {
  transform: translateY(-1px);
  border-color: rgba(197, 154, 74, 0.65);
  background: var(--rr-gold);
  color: var(--rr-dark);
}

.hero {
  min-height: clamp(420px, 42vw, 720px);
  background: var(--rr-dark) url("/assets/brand/rag-rust-hero.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(197, 154, 74, 0.35);
}

.auction-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: end;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(22px, 3vw, 34px);
  position: relative;
  z-index: 2;
  color: var(--rr-cream);
  background:
    linear-gradient(135deg, rgba(36, 27, 22, 0.98), rgba(24, 16, 13, 0.94)),
    radial-gradient(circle at 85% 10%, rgba(197, 154, 74, 0.18), transparent 20rem);
  border: 1px solid rgba(244, 235, 221, 0.16);
  border-radius: var(--rr-radius);
  box-shadow: var(--rr-shadow-strong);
}

.auction-callout h1 {
  margin: 0;
  max-width: 14ch;
  color: var(--rr-cream);
  font-family: var(--rr-font-display);
  font-size: 5.25rem;
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 800;
}

.auction-callout p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #f7ead7;
  font-size: 1.22rem;
}

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

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(244, 235, 221, 0.32);
  border-radius: var(--rr-radius);
  color: var(--rr-cream);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.secondary-action:hover {
  background: rgba(244, 235, 221, 0.12);
}

.notice-band {
  background: #18100d;
  color: var(--rr-cream);
  border-top: 1px solid rgba(197, 154, 74, 0.35);
  border-bottom: 1px solid rgba(197, 154, 74, 0.35);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
}

.notice-band article {
  min-height: 78px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 18px;
  text-align: center;
  border-left: 1px solid rgba(244, 235, 221, 0.12);
}

.notice-band article:last-child {
  border-right: 1px solid rgba(244, 235, 221, 0.12);
}

.notice-band strong {
  color: var(--rr-gold);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.notice-band span {
  color: var(--rr-cream);
  font-size: 0.92rem;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.8fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 0 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rr-gold);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-panel h2,
.section-heading h2 {
  margin: 0;
  color: var(--rr-dark);
  font-family: var(--rr-font-display);
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

.intro-panel p {
  margin: 0;
  color: var(--rr-muted);
  font-size: 1.15rem;
  line-height: 1.45;
}

.section {
  padding: 64px 0;
}

.section > .section-heading,
.show-grid,
.item-grid,
.board-grid,
.workflow-grid,
.page-hero,
.directory-section,
.detail-layout {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.page-hero {
  padding: clamp(54px, 8vw, 96px) 0 clamp(28px, 5vw, 48px);
}

.page-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--rr-dark);
  font-family: var(--rr-font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 800;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--rr-muted);
  font-size: 1.18rem;
  line-height: 1.5;
}

.directory-section {
  padding: 0 0 72px;
}

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

.directory-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--rr-line);
  border-radius: var(--rr-radius);
  background: var(--rr-cream-light);
  box-shadow: var(--rr-shadow);
}

.directory-card h2 {
  margin: 0 0 12px;
  color: var(--rr-dark);
  font-family: var(--rr-font-display);
  font-size: 2.25rem;
  line-height: 1.04;
}

.directory-card p {
  color: var(--rr-muted);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  padding: 0 0 72px;
}

.media-stack {
  display: grid;
  gap: 14px;
}

.media-stack img,
.media-stack video,
.media-placeholder {
  width: 100%;
  border: 1px solid var(--rr-line);
  border-radius: var(--rr-radius);
  background: var(--rr-tan);
  box-shadow: var(--rr-shadow);
}

.media-stack img {
  aspect-ratio: 1;
  object-fit: cover;
}

.media-stack video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  color: var(--rr-muted);
  font-weight: 850;
}

.detail-copy {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--rr-line);
  border-radius: var(--rr-radius);
  background: rgba(255, 248, 237, 0.78);
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rr-line);
}

.detail-list dt {
  color: var(--rr-muted);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.detail-list dd {
  margin: 0;
  color: var(--rr-dark);
  font-weight: 750;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(36, 27, 22, 0.18);
  border-radius: var(--rr-radius);
  color: var(--rr-dark);
  font-weight: 850;
  text-transform: uppercase;
}

.secondary-link:hover {
  border-color: var(--rr-rust);
  color: var(--rr-rust);
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.link-list a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--rr-line);
  border-radius: var(--rr-radius);
  background: var(--rr-cream-light);
  font-weight: 850;
}

.transcript {
  margin-top: 28px;
}

.transcript h2 {
  margin: 0 0 10px;
  color: var(--rr-dark);
  font-family: var(--rr-font-display);
  font-size: 2rem;
}

.section-alt {
  background: var(--rr-cream-light);
  border-block: 1px solid var(--rr-line);
}

.buyer-board {
  padding-top: 38px;
}

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

.board-panel {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--rr-line);
  border-radius: var(--rr-radius);
  background: var(--rr-cream-light);
  box-shadow: var(--rr-shadow);
}

.board-panel h3 {
  margin: 0;
  color: var(--rr-dark);
  font-family: var(--rr-font-display);
  font-size: 2.45rem;
  line-height: 1.02;
}

.board-panel p {
  margin: 0;
  color: var(--rr-muted);
  line-height: 1.5;
}

.board-panel strong {
  color: var(--rr-rust);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1200px, calc(100% - 40px));
  margin: 22px auto 0;
}

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

.section-heading > p {
  max-width: 570px;
  margin: 0;
  color: var(--rr-muted);
  font-size: 1.08rem;
  line-height: 1.45;
}

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

.empty-state {
  min-height: 160px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 28px;
  border: 1px dashed rgba(36, 27, 22, 0.24);
  border-radius: var(--rr-radius);
  background: rgba(255, 255, 255, 0.46);
  color: var(--rr-muted);
  text-align: center;
  font-weight: 750;
  line-height: 1.45;
}

.show-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  background: var(--rr-cream-light);
  border: 1px solid var(--rr-line);
  border-radius: var(--rr-radius);
  box-shadow: var(--rr-shadow);
}

.show-card-top,
.item-meta,
.item-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.show-card-top {
  color: var(--rr-rust);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.show-card h3 {
  margin: 20px 0 8px;
  color: var(--rr-dark);
  font-family: var(--rr-font-display);
  font-size: 4rem;
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 800;
}

.show-card p {
  color: var(--rr-muted);
}

.show-date {
  margin: 0;
  color: var(--rr-dark);
  font-weight: 850;
  font-size: 1.2rem;
}

.show-card-main {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
}

.show-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.show-stats span {
  padding: 7px 10px;
  border: 1px solid rgba(36, 27, 22, 0.12);
  border-radius: 999px;
  background: #f4ebdd;
  color: var(--rr-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.thumb-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin: 0;
}

.thumb-strip img,
.thumb-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  border: 1px solid var(--rr-line);
  background: var(--rr-tan);
}

.thumb-strip img {
  object-fit: cover;
}

.thumb-placeholder {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  color: var(--rr-muted);
  font-size: 0.92rem;
  font-weight: 850;
  text-transform: uppercase;
}

.card-action {
  width: auto;
  min-height: 48px;
  margin-top: 22px;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(36, 27, 22, 0.18);
  border-radius: var(--rr-radius);
  background: var(--rr-cream);
  color: var(--rr-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.filter-button.active {
  background: var(--rr-rust);
  border-color: var(--rr-rust);
  color: #fff;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.item-card {
  min-width: 0;
  overflow: hidden;
  background: var(--rr-cream-light);
  border: 1px solid var(--rr-line);
  border-radius: var(--rr-radius);
  box-shadow: var(--rr-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.item-card:hover {
  transform: translateY(-3px);
  border-color: rgba(169, 71, 36, 0.35);
  box-shadow: 0 20px 44px rgba(36, 27, 22, 0.16);
}

.item-image {
  position: relative;
  display: block;
  background: var(--rr-tan);
  overflow: hidden;
}

.item-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.item-image-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(36, 27, 22, 0.92), rgba(169, 71, 36, 0.76)),
    radial-gradient(circle at 35% 20%, rgba(197, 154, 74, 0.38), transparent 38%);
  color: var(--rr-cream);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
}

.item-card:hover .item-image img {
  transform: scale(1.035);
}

.item-image > span:not(.item-image-placeholder) {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 11px;
  border-radius: 6px;
  background: var(--rr-rust);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.item-body {
  padding: 14px;
}

.item-meta {
  color: var(--rr-rust);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.item-card h3 {
  display: -webkit-box;
  min-height: 62px;
  margin: 10px 0 8px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--rr-dark);
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 850;
}

.item-card p {
  min-height: 42px;
  margin: 0 0 12px;
  color: var(--rr-muted);
  font-size: 0.9rem;
}

.item-footer {
  align-items: end;
  padding-top: 10px;
  border-top: 1px solid var(--rr-line);
  color: var(--rr-muted);
  font-size: 0.74rem;
}

.item-footer strong {
  color: var(--rr-rust);
  text-align: right;
}

.item-bid-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  border-radius: var(--rr-radius);
  background: var(--rr-rust);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.item-bid-action:hover {
  background: var(--rr-dark);
}

.workflow {
  background: var(--rr-dark);
  color: var(--rr-cream);
}

.workflow .section-heading h2,
.workflow .section-heading p {
  color: var(--rr-cream);
}

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

.workflow article {
  padding: 28px;
  background: rgba(244, 235, 221, 0.06);
  border: 1px solid rgba(244, 235, 221, 0.14);
  border-radius: var(--rr-radius);
}

.workflow article span {
  color: var(--rr-gold);
  font-size: 1.15rem;
  font-weight: 850;
}

.workflow h3 {
  margin: 20px 0 8px;
  color: var(--rr-cream);
  font-family: var(--rr-font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.workflow p {
  margin: 0;
  color: #f8eedc;
}

.sell-section {
  background:
    linear-gradient(180deg, var(--rr-cream-light), var(--rr-cream)),
    radial-gradient(circle at 80% 10%, rgba(169, 71, 36, 0.12), transparent 26rem);
  border-bottom: 1px solid var(--rr-line);
}

.sell-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.sell-copy h2 {
  margin: 0 0 18px;
  color: var(--rr-dark);
  font-family: var(--rr-font-display);
  font-size: 4.5rem;
  line-height: 0.98;
  font-weight: 800;
}

.sell-copy p {
  margin: 0 0 16px;
  color: var(--rr-muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.form-note {
  padding-left: 16px;
  border-left: 3px solid var(--rr-gold);
  font-weight: 750;
}

.sell-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--rr-dark);
  color: var(--rr-cream);
  border: 1px solid rgba(244, 235, 221, 0.16);
  border-radius: var(--rr-radius);
  box-shadow: var(--rr-shadow-strong);
}

.sell-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #f8eedc;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.sell-form input,
.sell-form select,
.sell-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(244, 235, 221, 0.18);
  border-radius: var(--rr-radius);
  background: rgba(255, 248, 237, 0.08);
  color: var(--rr-cream);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  padding: 10px 12px;
}

.sell-form select {
  color-scheme: dark;
}

.sell-form textarea {
  min-height: 118px;
  resize: vertical;
}

.sell-form input::placeholder,
.sell-form textarea::placeholder {
  color: rgba(248, 238, 220, 0.55);
}

.sell-form input:focus,
.sell-form select:focus,
.sell-form textarea:focus {
  outline: 2px solid var(--rr-gold);
  outline-offset: 2px;
}

.form-wide,
.form-status,
.form-submit {
  grid-column: 1 / -1;
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.form-status {
  display: none;
  padding: 11px 13px;
  border-radius: var(--rr-radius);
  background: rgba(197, 154, 74, 0.14);
  color: #f8eedc;
  font-size: 0.92rem;
  font-weight: 750;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: rgba(169, 71, 36, 0.28);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.social-section {
  background: var(--rr-cream-light);
  border-top: 1px solid var(--rr-line);
}

.social-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.social-copy h2 {
  margin: 0 0 18px;
  color: var(--rr-dark);
  font-family: var(--rr-font-display);
  font-size: 4.7rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

.social-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--rr-muted);
  font-size: 1.12rem;
  line-height: 1.5;
}

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

.social-links a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px 12px;
  min-height: 104px;
  padding: 18px;
  align-content: center;
  align-items: center;
  background: var(--rr-cream);
  color: var(--rr-dark);
  border: 1px solid var(--rr-line);
  border-radius: var(--rr-radius);
  box-shadow: var(--rr-shadow);
  font-size: 1.15rem;
  font-weight: 850;
}

.social-links img {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  object-fit: contain;
  padding: 5px;
  border-radius: 999px;
  background: var(--rr-dark);
}

.social-links a:hover {
  background: var(--rr-dark);
  color: var(--rr-cream);
}

.social-links span {
  color: var(--rr-rust);
  font-size: 0.9rem;
  font-weight: 750;
}

.social-links a:hover span {
  color: var(--rr-gold);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 54px);
  background: var(--rr-darker);
  color: var(--rr-cream);
  font-weight: 750;
}

.site-footer > div:first-child {
  display: grid;
  gap: 5px;
}

.site-footer > div:first-child span:first-child {
  font-family: var(--rr-font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.site-footer > div:first-child span:nth-child(2) {
  color: #d7c7b2;
  font-weight: 650;
}

.site-footer a {
  color: var(--rr-gold);
}

.footer-link-groups {
  display: grid;
  justify-items: end;
  gap: 13px;
}

.footer-icons a {
  width: 28px;
  height: 28px;
  background: rgba(244, 235, 221, 0.06);
}

.footer-icons img {
  width: 15px;
  height: 15px;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  color: #d7c7b2;
  font-size: 0.78rem;
  font-weight: 750;
}

.policy-links a {
  color: #d7c7b2;
}

.policy-links a:hover {
  color: var(--rr-gold);
}

.policy-page {
  background: var(--rr-cream-light);
}

.policy-header {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 34px;
}

.policy-header h1 {
  margin: 0;
  color: var(--rr-dark);
  font-family: var(--rr-font-display);
  font-size: 4.4rem;
  line-height: 0.98;
  font-weight: 800;
}

.policy-header p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--rr-muted);
  font-size: 1.12rem;
}

.policy-content {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 76px;
}

.policy-content section {
  padding: 28px 0;
  border-top: 1px solid var(--rr-line);
}

.policy-content h2 {
  margin: 0 0 10px;
  color: var(--rr-dark);
  font-family: var(--rr-font-display);
  font-size: 2rem;
  line-height: 1.1;
}

.policy-content p,
.policy-content li {
  color: var(--rr-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.policy-content p {
  margin: 0 0 12px;
}

.policy-content ul {
  margin: 0;
  padding-left: 20px;
}

.policy-content a {
  color: var(--rr-rust);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  .intro-panel,
  .auction-callout,
  .show-card-main,
  .show-grid,
  .workflow-grid,
  .sell-panel,
  .social-panel,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .auction-callout h1,
  .intro-panel h2,
  .section-heading h2,
  .page-hero h1,
  .sell-copy h2,
  .social-copy h2 {
    font-size: 4.25rem;
  }

  .show-card h3 {
    font-size: 3.5rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    min-height: 0;
    padding-block: 8px;
  }

  .brand {
    width: 96px;
  }

  .site-header nav {
    order: 3;
    width: 100%;
    gap: 5px;
    overflow-x: auto;
  }

  .header-tools {
    order: 2;
    margin-left: auto;
  }

  .header-tools .social-icon-row {
    display: none;
  }

  .hero {
    min-height: clamp(150px, 40vw, 280px);
    background-size: contain;
    background-color: var(--rr-dark);
  }

  .auction-callout {
    margin-top: 0;
  }

  .auction-callout h1,
  .intro-panel h2,
  .section-heading h2,
  .page-hero h1,
  .sell-copy h2,
  .social-copy h2 {
    font-size: 3.35rem;
  }

  .show-card h3 {
    font-size: 2.75rem;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading > p,
  .controls {
    margin-top: 16px;
  }

  .controls {
    justify-content: flex-start;
  }

  .item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

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

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

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .site-footer {
    display: grid;
  }

  .footer-link-groups,
  .footer-icons,
  .policy-links {
    justify-items: start;
    justify-content: flex-start;
  }

  .policy-header h1 {
    font-size: 3.1rem;
  }

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

@media (max-width: 520px) {
  .notice-band,
  .item-grid {
    grid-template-columns: 1fr;
  }

  .intro-panel h2,
  .section-heading h2,
  .auction-callout h1,
  .page-hero h1,
  .sell-copy h2,
  .social-copy h2 {
    font-size: 2.65rem;
  }

  .show-card h3 {
    font-size: 2.2rem;
  }

  .header-action,
  .secondary-action {
    width: 100%;
  }

  .primary-action {
    width: 100%;
  }

  .header-action {
    width: auto;
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}
