:root {
  --navy: #132536;
  --ink: #182127;
  --brass: #f79321;
  --cream: #f5f1e8;
  --paper: #fbfaf7;
  --muted: #70777b;
  --line: #dcd8ce;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding-top: 84px;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3,
.brand {
  font-family: "Space Grotesk", Arial, sans-serif;
}
h1 {
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  margin-bottom: 1.7rem;
}
h2 {
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  letter-spacing: -0.065em;
  line-height: 1.02;
  margin-bottom: 1.2rem;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0 0 0.65rem;
  letter-spacing: -0.03em;
}
.site-header {
  height: 84px;
  padding: 0 clamp(1.2rem, 5vw, 5.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(19, 37, 54, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.brand b {
  font-weight: 700;
}
.brand-logo {
  display: block;
  width: 150px;
  height: auto;
}
.site-header .brand-logo {
  width: 118px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--brass);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  transform: rotate(-8deg);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  font-size: 0.83rem;
  font-weight: 600;
}
.site-nav > a:not(.button) {
  color: #3f484c;
}
.site-nav > a:not(.button):hover,
.text-link:hover {
  color: var(--brass);
}
.site-nav > .hidden {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--brass);
  color: var(--navy);
  padding: 1rem 1.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.2s, background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: #f79321;
}
.button-small {
  padding: 0.7rem 1rem;
}
.button-dark {
  background: var(--navy);
  color: #fff;
}
.button-dark:hover {
  background: #20394e;
}
.button-brass {
  background: var(--brass);
  font-size: 0.82rem;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
}
.section {
  padding: clamp(4.5rem, 9vw, 9rem) clamp(1.2rem, 7vw, 8rem);
}
.bidjs-page {
  min-height: 70vh;
}
.bidjs-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.bidjs-page > .prose {
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.bidjs-page .container {
  width: 100%;
  max-width: none;
  padding: 0;
}
.section-dark {
  background: var(--navy);
  color: #f8f4eb;
}
.hero {
  height: calc(100svh - 84px);
  min-height: 560px;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.2rem, 9vw, 10rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(680px);
}
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.3rem;
}
.eyebrow span {
  display: inline-block;
  width: 30px;
  border-top: 1px solid currentColor;
  vertical-align: middle;
  margin: 0 1rem;
}
.hero-text {
  max-width: 475px;
  color: #bcc6c9;
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin-top: 2.4rem;
}
.text-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}
.light-link {
  color: #eef0eb;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(19, 37, 54, 0.96) 0%, rgba(19, 37, 54, 0.84) 30%, rgba(19, 37, 54, 0.18) 68%, rgba(19, 37, 54, 0.05) 100%), url('/images/homepage/hero-auction-gavel.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.sun {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgb(247 147 33 / 0.35);
  border-radius: 50%;
  right: 18%;
  top: 17%;
}
.hero-ring {
  position: absolute;
  border: 1px solid rgb(247 147 33 / 0.22);
  border-radius: 50%;
}
.ring-one {
  width: 610px;
  height: 610px;
  right: 7%;
  top: 4%;
}
.ring-two {
  width: 800px;
  height: 800px;
  right: -8%;
  top: -8%;
}
.gavel-shape {
  position: absolute;
  width: 330px;
  height: 34px;
  background: linear-gradient(
    90deg,
    transparent,
    #f79321 20%,
    #f79321 80%,
    transparent
  );
  transform: rotate(-38deg);
  right: 25%;
  top: 47%;
  box-shadow: 0 0 35px rgb(247 147 33 / 0.24);
}
.gavel-shape:before {
  content: "";
  position: absolute;
  left: -22px;
  top: -38px;
  width: 88px;
  height: 110px;
  border: 14px solid #f79321;
  border-radius: 7px;
  transform: rotate(2deg);
}
.hero-stamp {
  position: absolute;
  right: 10%;
  bottom: 17%;
  color: rgba(245, 241, 232, 0.66);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-align: center;
  line-height: 1.7;
  transform: rotate(-12deg);
}
.hero-stamp b {
  font: 700 2.8rem/1 "Space Grotesk";
  color: var(--brass);
  letter-spacing: -0.1em;
}
.hero-edge {
  position: absolute;
  right: 5%;
  bottom: 8%;
  font-size: 0.7rem;
  color: var(--brass);
}
.hero-edge span {
  display: inline-block;
  width: 80px;
  border-top: 1px solid #f79321;
  margin: 0 1rem 3px;
}
.trust-strip {
  background: var(--brass);
  padding: 1.1rem clamp(1.2rem, 7vw, 8rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3.4rem;
}
.section-heading h2 {
  margin-bottom: 0;
}
.heading-note {
  max-width: 280px;
  color: var(--muted);
  font-size: 0.94rem;
}
.auction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.auction-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 2rem 0;
}
.filter-button {
  border: 1px solid var(--line, #d7d1c8);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: .65rem 1rem;
  text-transform: capitalize;
}
.filter-button.is-active, .filter-button:hover { background: var(--ink, #1d2523); color: #fff; }
.status-label { text-transform: capitalize; }
.section-note, .empty-state { margin-top: 1.5rem; }
.empty-state { grid-column: 1 / -1; padding: 2rem; background: #f3efe8; }
.auction-detail-meta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.auction-detail-meta span { border: 1px solid var(--line, #d7d1c8); padding: .55rem .8rem; text-transform: capitalize; }
.auction-card {
  border: 1px solid var(--line);
  background: #fff;
  min-width: 0;
}
.auction-image {
  height: 460px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #263a47, #a07442);
}
.auction-image:before,
.auction-image:after {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  transform: rotate(-9deg);
}
.auction-image:after {
  inset: 35% 5%;
  transform: rotate(20deg);
  border-color: rgba(255, 255, 255, 0.2);
}
.auction-image.farm-agricultural {
  background: linear-gradient(135deg, #31463f, #b18b58);
}
.auction-image.industrial-commercial {
  background: linear-gradient(135deg, #34404a, #9b5f3b);
}
.lot-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brass);
  color: var(--navy);
  padding: 0.35rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 1;
}
.image-label {
  position: absolute;
  right: 1.3rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font: 700 2rem "Space Grotesk";
  letter-spacing: -0.08em;
  transform: rotate(-8deg);
}
.auction-card-body {
  padding: 1.5rem;
}
.card-kicker {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.auction-card-body p:not(.card-kicker) {
  color: var(--muted);
  font-size: 0.88rem;
  min-height: 4.1em;
}
.card-meta {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
}
.card-meta a {
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  background: #ebe6db;
}
.split-visual {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #d6c4a2, #8c6d4a);
}
.vertical-label {
  position: absolute;
  left: 1.3rem;
  top: 1.3rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  color: var(--navy);
}
.visual-card {
  position: absolute;
  right: 10%;
  top: 25%;
  padding: 2rem;
  background: var(--navy);
  color: #fff;
  min-width: 190px;
  box-shadow: 18px 18px 0 rgb(247 147 33 / 0.75);
  transform: rotate(-7deg);
}
.visual-number {
  display: block;
  color: var(--brass);
  font-size: 2.5rem;
  font-family: "Space Grotesk";
  margin-bottom: 2rem;
}
.visual-card b {
  font-size: 1.3rem;
  line-height: 1.05;
  font-family: "Space Grotesk";
}
.split-copy > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 470px;
}
.process-list {
  margin-top: 3rem;
  border-top: 1px solid #cfc8ba;
}
.process-list div {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #cfc8ba;
  font-size: 0.86rem;
}
.process-list b {
  color: var(--brass);
  font-family: "Space Grotesk";
}
.category-section {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.2rem, 7vw, 8rem);
  background: var(--navy);
  color: #fff;
}
.category-section .heading-note {
  color: #aeb9bd;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.category-grid a {
  min-height: 220px;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
}
.category-grid a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.category-grid a:hover {
  background: #1e3447;
}
.category-icon {
  font-size: 2.1rem;
  color: var(--brass);
  margin-bottom: 2.4rem;
}
.category-grid b {
  font: 600 1.2rem "Space Grotesk";
}
.category-grid small {
  color: #9faeb2;
  margin-top: 0.35rem;
  font-size: 0.78rem;
}
.category-arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  color: var(--brass);
}
.quote-section {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 15vw, 16rem);
  text-align: center;
  background: var(--cream);
}
.quote-mark {
  font: 700 6rem/0.6 "Space Grotesk";
  color: var(--brass);
}
blockquote {
  font: 500 clamp(1.8rem, 3.3vw, 3.4rem) / 1.15 "Space Grotesk";
  letter-spacing: -0.06em;
  margin: 1.4rem 0 2rem;
}
cite {
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.cta-section {
  background: var(--brass);
  color: var(--navy);
  padding: clamp(4rem, 7vw, 7rem) clamp(1.2rem, 7vw, 8rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.cta-section .eyebrow {
  color: var(--navy);
}
.cta-section h2 {
  margin: 0;
}
.cta-section i {
  font-family: Georgia, serif;
  font-weight: 400;
}
.site-footer {
  background: #101d27;
  color: #dce0dc;
  padding: 4rem clamp(1.2rem, 7vw, 8rem) 1.5rem;
}
.brand-light {
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.footer-note {
  color: #8f9da0;
  font-family: "Space Grotesk";
  font-size: 1.35rem;
  line-height: 1.1;
  margin-top: 2rem;
}
.footer-label {
  font-size: 0.65rem;
  color: var(--brass);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.84rem;
}
.footer-grid span {
  color: #8f9da0;
}
.footer-bottom {
  padding-top: 1.3rem;
  border-top: 1px solid #2b3a43;
  display: flex;
  justify-content: space-between;
  color: #77858a;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.page-intro {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 9vw, 10rem);
}
.page-intro h1 {
  max-width: 850px;
  margin-bottom: 1rem;
}
.page-intro > p:last-child {
  max-width: 530px;
  color: #bcc6c9;
  font-size: 1.05rem;
}
.page-list {
  min-height: 500px;
}
.content-page {
  max-width: 900px;
}
.prose {
  max-width: 650px;
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.prose p {
  margin-bottom: 1.4rem;
}
.prose strong {
  color: var(--ink);
}
@media (max-width: 800px) {
  body {
    padding-top: 72px;
  }
  .site-header {
    height: 72px;
  }
  .site-header .brand-logo {
    width: 100px;
  }
  .menu-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--navy);
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    padding: 1rem 1.2rem 1.5rem;
    background: var(--paper);
    box-shadow: 0 12px 20px #13253618;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav .button {
    text-align: center;
    justify-content: center;
  }
  .hero {
    height: auto;
    min-height: 620px;
    padding-top: 4rem;
    align-items: flex-start;
  }
  .hero-art {
    width: 100%;
    height: 55%;
    top: auto;
    bottom: 0;
    right: 0;
    opacity: 0.7;
  }
  .hero-copy {
    width: 100%;
  }
  .hero-edge {
    right: 1.2rem;
  }
  .trust-strip {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.8rem 1.5rem;
  }
  .trust-strip span {
    font-size: 0.62rem;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 2.4rem;
  }
  .auction-grid {
    grid-template-columns: 1fr;
  }
  .auction-image {
    height: 200px;
  }
  .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .split-visual {
    min-height: 390px;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-grid a:nth-child(2) {
    border-right: 0;
  }
  .category-grid a:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
  .category-grid a:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}
