@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --navy: #1b232f;
  --navy-2: #121820;
  --steel: #2a3544;
  --red: #c41e3a;
  --red-hover: #a81830;
  --fog: #e8edf3;
  --muted: #6b7685;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --max: 1120px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --brand-green: #2db85a;
  --brand-green-hi: #6fd98c;
  --brand-gold: #d4b84a;
  --brand-gold-hi: #e8d48a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--fog);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Opening vehicle showcase — above menu */
.vehicle-showcase {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.28) 0%, rgba(8, 10, 14, 0.18) 45%, rgba(8, 10, 14, 0.55) 100%),
    url("/images/showcase-bg.jpg") center / cover no-repeat;
  padding: 1.5rem 0 0.5rem;
  overflow: hidden;
}

.vehicle-showcase__row {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0.75rem 0 0;
  display: grid;
  grid-template-columns: 0.78fr 1.45fr 1.15fr 0.95fr 1.5fr;
  gap: 0.2rem 0.55rem;
  align-items: center;
}

.vehicle-showcase__item {
  margin: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  animation: vehicleIn 0.85s ease both;
}

.vehicle-showcase__item:nth-child(1) { animation-delay: 0.04s; }
.vehicle-showcase__item:nth-child(2) { animation-delay: 0.1s; }
.vehicle-showcase__item:nth-child(3) { animation-delay: 0.16s; }
.vehicle-showcase__item:nth-child(4) { animation-delay: 0.22s; }
.vehicle-showcase__item:nth-child(5) { animation-delay: 0.28s; }

/* Freightliner — same size, flush left edge */
.vehicle-showcase__item:nth-child(1) {
  justify-self: start;
  width: 100%;
  margin-left: 0;
}

.vehicle-showcase__item:nth-child(1) img {
  width: auto;
  max-width: 100%;
  max-height: clamp(160px, 22vw, 300px);
  margin-left: 0;
}

.vehicle-showcase__item img {
  width: 100%;
  height: auto;
  max-height: clamp(160px, 22vw, 300px);
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
  transition: transform 0.45s ease, filter 0.45s ease;
}

/* Peterbilt — keep larger fill */
.vehicle-showcase__item:nth-child(2) img {
  max-height: clamp(210px, 30vw, 400px);
  width: 108%;
  max-width: none;
  object-position: center;
}

/* Airstream — nudge toward logo, away from RV */
.vehicle-showcase__item:nth-child(4) {
  transform: translateX(-1.25rem);
  z-index: 2;
}

.vehicle-showcase__item:nth-child(4) img {
  max-height: clamp(150px, 20vw, 280px);
}

/* Class A RV — large but stay on screen */
.vehicle-showcase__item:nth-child(5) {
  z-index: 1;
}

.vehicle-showcase__item:nth-child(5) img {
  max-height: clamp(210px, 30vw, 400px);
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  object-position: center right;
}

.vehicle-showcase__item--logo {
  display: grid;
  place-items: center;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
}

.vehicle-showcase__logo {
  width: min(100%, 360px) !important;
  height: auto !important;
  max-height: clamp(200px, 28vw, 360px);
  object-fit: contain !important;
  background: transparent !important;
  border-radius: 50%;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.55));
  animation: logoPulse 3.2s ease-in-out infinite;
}

.vehicle-showcase__item:hover img {
  transform: scale(1.03);
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.62)) saturate(1.08);
}

.vehicle-showcase__item--logo:hover .vehicle-showcase__logo {
  transform: scale(1.04);
  filter: drop-shadow(0 16px 32px rgba(196, 30, 58, 0.35));
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.vehicle-showcase__line {
  margin-top: 1rem;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 12%,
    var(--red) 50%,
    rgba(255, 255, 255, 0.2) 88%,
    transparent 100%
  );
}

@keyframes vehicleIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .vehicle-showcase__row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.55rem 0.75rem;
    padding: 0 0.5rem;
  }

  .vehicle-showcase__item--logo {
    grid-column: 1 / -1;
    order: -1;
  }

  .vehicle-showcase__item img,
  .vehicle-showcase__item:nth-child(1) img,
  .vehicle-showcase__item:nth-child(2) img,
  .vehicle-showcase__item:nth-child(5) img {
    width: 100%;
    max-width: 100%;
    max-height: min(28vw, 220px);
    margin-left: 0;
  }

  .vehicle-showcase__logo {
    max-height: min(40vw, 240px);
    width: min(100%, 300px) !important;
  }
}

@media (max-width: 520px) {
  .vehicle-showcase__row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Top bar */
.topbar {
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  padding: 0.55rem 0;
}

.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

.topbar a:hover {
  color: #fff;
}

/* Header */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 96px;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-logo {
  height: 96px;
  width: 96px;
  display: block;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  /* keep full badge visible — no crop */
  overflow: visible;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.55));
}

.brand-text {
  display: none;
  flex-direction: column;
  line-height: 1.05;
  color: #fff;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

@media (min-width: 720px) {
  .brand-logo {
    height: 118px;
    width: 118px;
  }

  .brand-text {
    display: flex;
  }
}


.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
  flex-wrap: wrap;
}

.nav > a,
.nav-drop__label {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.15rem;
  transition: color 0.15s ease;
}

.nav > a:hover,
.nav > a[aria-current="page"],
.nav-drop__label:hover,
.nav-drop__label[aria-current="page"],
.nav-drop.is-open .nav-drop__label {
  color: var(--brand-green);
}

.nav .btn,
.nav-cta {
  margin-left: 0.35rem;
}

.nav-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-drop__toggle {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  background: transparent;
  color: var(--brand-gold);
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.nav-drop__toggle:hover,
.nav-drop.is-open .nav-drop__toggle {
  border-color: var(--brand-gold);
  background: rgba(232, 197, 71, 0.12);
}

.nav-drop.is-open .nav-drop__toggle {
  transform: rotate(45deg);
}

.nav-drop__menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 12.5rem;
  padding: 0.45rem;
  background: var(--navy-2);
  border: 1px solid rgba(232, 197, 71, 0.28);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  z-index: 60;
}

.nav-drop.is-open .nav-drop__menu,
.nav-drop:hover .nav-drop__menu {
  display: grid;
  gap: 0.15rem;
}

.nav-drop__menu a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 0.75rem;
  border-left: 2px solid transparent;
}

.nav-drop__menu a:hover {
  color: var(--brand-green);
  background: rgba(45, 255, 110, 0.08);
  border-left-color: var(--brand-green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 4px;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-hover);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

/* Hero — brand + CTA after menu */
.hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  color: #fff;
  overflow: hidden;
  background: #0c1016;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      165deg,
      rgba(8, 12, 18, 0.78) 0%,
      rgba(12, 18, 26, 0.68) 42%,
      rgba(8, 12, 18, 0.86) 100%
    ),
    url("/images/inventory/2011-john-deere-8335r/01.jpg") center 42% / cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -0.6%, 0); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 18% 80%, rgba(196, 30, 58, 0.16), transparent 48%);
  pointer-events: none;
  animation: wash 8s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes wash {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero--solo {
  place-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.5rem) 1rem;
  text-align: center;
  animation: rise 0.9s ease both;
}

.hero--solo .logo-hero {
  width: min(260px, 52vw);
  height: auto;
  margin: 0 auto 1rem;
}

.hero--solo .hero-cta {
  justify-content: center;
}

.hero-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 1.35rem;
  text-align: center;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  letter-spacing: 0.05em;
  line-height: 0.95;
  margin: 0 0 1rem;
}

/* Auction-house wordmark: steel white + gold — not neon green */
.hero-brand--auction {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 4.25rem);
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-align: center;
  color: #f3f5f8;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-brand--auction .hero-brand__main {
  display: block;
}

.hero-brand--auction .hero-brand__sales {
  display: block;
  margin-top: 0.28em;
  font-size: 0.36em;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: var(--brand-gold);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.hero-tag {
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(212, 184, 74, 0.45);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-brand em {
  font-style: normal;
  color: #f0f3f7;
  opacity: 0.72;
  font-size: 0.42em;
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 0.35rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  letter-spacing: 0.03em;
  font-weight: 400;
  margin: 0 0 0.85rem;
  max-width: 18ch;
  line-height: 1.08;
}

.hero.hero--solo .hero__copy h1 {
  max-width: 20ch;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

.hero__copy > p {
  margin: 0 0 1.5rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}

.hero.hero--solo .hero__copy > p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 860px) {
  .hero {
    min-height: 0;
  }

  .hero__copy {
    padding: 2.25rem 1rem 2.75rem;
  }
}

.home-actions {
  margin: 1.75rem 0 0;
}

.home-cats-section {
  background: #fff;
}

.home-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.home-cat {
  position: relative;
  display: block;
  min-height: clamp(180px, 28vw, 260px);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: var(--navy);
}

.home-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.home-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(14, 19, 25, 0.88) 100%);
  z-index: 1;
}

.home-cat__label {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
}

.home-cat:hover img {
  transform: scale(1.05);
}

.home-spine {
  background: var(--fog);
  border-bottom: 0;
}

.home-reviews {
  background: #fff;
}

.home-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.home-review {
  background: var(--navy);
  color: #fff;
  padding: 1.35rem 1.25rem 1.4rem;
  border-left: 3px solid var(--red);
}

.home-review__stars {
  margin: 0 0 0.65rem;
  color: var(--red);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  line-height: 1;
}

.home-review blockquote {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.home-review__who {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}

.home-review__who strong {
  color: #fff;
}

@media (max-width: 900px) {
  .home-cats,
  .home-reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head .eyebrow {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin: 0 0 0.4rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
}

.trust {
  background: #fff;
  border-top: 1px solid #d9e0e8;
  border-bottom: 1px solid #d9e0e8;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  padding: 1.25rem 0.5rem;
  border-top: 3px solid var(--red);
}

.trust-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.logistics-band {
  background: var(--fog);
  border-bottom: 1px solid #d5dde6;
}

.logistics-band__media {
  position: relative;
  overflow: hidden;
  background: #121820;
}

.logistics-band__media > img:first-child {
  width: 100%;
  height: auto;
  display: block;
}

.logistics-band__logo {
  position: absolute;
  right: clamp(0.85rem, 3vw, 1.75rem);
  bottom: clamp(0.85rem, 3vw, 1.5rem);
  width: min(22vw, 160px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.55)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.logistics-band__copy {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  text-align: center;
}

.logistics-band__copy.wrap {
  max-width: 720px;
}

.logistics-band__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  letter-spacing: 0.03em;
  line-height: 1.12;
  margin: 0 0 0.65rem;
  color: var(--navy);
}

.logistics-band__copy p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.logistics-band__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.cat {
  background: var(--navy);
  color: #fff;
  min-height: 140px;
  padding: 1.4rem;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.cat:hover {
  transform: translateY(-3px);
}

.cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(196, 30, 58, 0.35), transparent 55%);
}

.cat span {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  background: #fff;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--red);
}

.step b {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(18, 24, 32, 0.88), rgba(27, 35, 47, 0.95)),
    url("/images/hero-rv.png") center / cover;
  color: #fff;
  padding: 3.5rem 0 2.75rem;
}

/* Inventory catalog */
.inv-hero {
  background:
    radial-gradient(ellipse 75% 65% at 80% 20%, rgba(196, 30, 58, 0.14), transparent 55%),
    linear-gradient(165deg, #0e1319 0%, var(--navy) 48%, #151d28 100%);
  color: #fff;
  padding: clamp(2.75rem, 6vw, 4.25rem) 0 clamp(2.25rem, 4vw, 3.25rem);
}

.inv-hero__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.inv-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.85rem;
  color: #fff;
}

.inv-hero__lead {
  margin: 0;
  max-width: 48ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.inv-catalog {
  background: var(--fog);
  padding-top: 2rem;
}

.inv-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.inv-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.inv-filter {
  border: 1px solid #c5ced8;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.inv-filter:hover {
  border-color: var(--navy);
}

.inv-filter[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.inv-count {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.inv-demo-note {
  display: none;
}

.inv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

@media (min-width: 900px) {
  .inv-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.inv-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border: 1px dashed #c5ced8;
}

.inv-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d5dde6;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  animation: rise 0.55s ease both;
}

.inv-card:hover {
  transform: translateY(-4px);
  border-color: #b8c2ce;
  box-shadow: 0 16px 32px rgba(18, 24, 32, 0.14);
}

.inv-card__media {
  position: relative;
  background: #0c1016;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.inv-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.inv-card:hover .inv-card__media img {
  transform: scale(1.04);
}

.inv-card__badge {
  position: absolute;
  left: 0.65rem;
  top: 0.65rem;
  background: rgba(18, 24, 32, 0.82);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
}

.inv-card__featured {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
}

.inv-card__body {
  padding: 0.95rem 1rem 1.1rem;
  display: grid;
  gap: 0.25rem;
}

.inv-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  color: var(--red);
  line-height: 1;
}

.inv-card h3 {
  margin: 0.15rem 0 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}

.inv-card__meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.inv-brands {
  background: #fff;
  border-top: 1px solid #d5dde6;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.inv-brands__head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.inv-brands__head h2 {
  margin-bottom: 0;
}

.inv-brands__row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.inv-brands__row li {
  display: grid;
  place-items: center;
  background: #f4f7fa;
  border: 1px solid #e2e8ef;
  min-height: 88px;
  padding: 0.85rem 1rem;
}

.inv-brands__row img {
  width: min(100%, 160px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
  filter: none;
}

.inv-brands__trust {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

@media (max-width: 900px) {
  .inv-brands__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .inv-brands__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inv-grid {
    grid-template-columns: 1fr;
  }
}

/* Listing detail */
.listing {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .listing {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
  }
}

.listing__media {
  position: relative;
  background: #0c1016;
  overflow: hidden;
}

.listing__media > .listing-slider {
  position: relative;
}

.listing-slider__stage {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #0c1016;
  cursor: zoom-in;
  position: relative;
}

.listing-slider__stage img,
.listing__media .listing-slider__stage img {
  width: 100%;
  height: min(56vh, 480px);
  object-fit: cover;
  display: block;
}

.listing-slider__hint {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.55rem;
  background: rgba(8, 12, 18, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.listing-slider__nav {
  position: absolute;
  top: 42%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: rgba(8, 12, 18, 0.72);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.listing-slider__nav--prev { left: 0.55rem; }
.listing-slider__nav--next { right: 0.55rem; }

.listing-slider__nav:hover {
  background: rgba(196, 30, 58, 0.92);
}

.listing-slider__bar {
  display: flex;
  justify-content: flex-end;
  padding: 0.35rem 0.55rem;
  background: #0c1016;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.listing-slider .inv-card__badge {
  z-index: 4;
}

.listing__info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.03em;
  margin: 0.35rem 0 0.75rem;
  line-height: 1.05;
}

.listing__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--red);
  letter-spacing: 0.03em;
  line-height: 1;
}

.listing__summary {
  color: var(--steel);
  margin: 0 0 1.25rem;
}

.listing__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #d5dde6;
}

.listing__specs dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}

.listing__specs dd {
  margin: 0.15rem 0 0;
  font-weight: 700;
}

.listing__info h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.listing__list {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
}

.listing__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.listing__ghost {
  color: var(--navy) !important;
  border-color: #c5ced8 !important;
}

.listing__thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.45rem;
  background: #0c1016;
  max-height: 8.5rem;
  overflow: auto;
}

.listing__thumb {
  border: 2px solid transparent;
  padding: 0;
  background: #151b24;
  cursor: pointer;
  overflow: hidden;
}

.listing__thumb.is-active {
  border-color: var(--red);
}

.listing__thumb img {
  width: 100%;
  height: 56px;
  object-fit: cover;
  display: block;
}

.listing__video {
  margin-top: 0.85rem;
  padding: 0.85rem 0.55rem 0.55rem;
  background: #f4f7fb;
  border-top: 1px solid #d5dde6;
}

.listing__video h2,
.listing__description h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.55rem;
}

.listing__video video {
  width: 100%;
  max-height: 420px;
  background: #0c1016;
  display: block;
}

.listing__video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #0c1016;
}

.listing__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.listing__description {
  margin: 1.25rem 0 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid #d5dde6;
}

.listing__description p {
  margin: 0 0 0.85rem;
  color: var(--steel);
  line-height: 1.55;
  white-space: normal;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 9, 14, 0.88);
  cursor: pointer;
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: 92vh;
  display: grid;
  place-items: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #0c1016;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(8, 12, 18, 0.8);
  color: #fff;
  cursor: pointer;
}

.lightbox__close {
  top: 0.35rem;
  right: 0.35rem;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.6rem;
  line-height: 1;
  z-index: 2;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.75rem;
  line-height: 1;
}

.lightbox__nav--prev { left: 0.25rem; }
.lightbox__nav--next { right: 0.25rem; }

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--red);
}

.lightbox__count {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

@media (max-width: 700px) {
  .listing__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .listing-slider__stage img,
  .listing__media .listing-slider__stage img {
    height: min(42vh, 320px);
  }
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
}

.panel {
  background: #fff;
  padding: 1.75rem;
  border: 1px solid #d5dde6;
  margin-bottom: 1.25rem;
}

.panel h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.65rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c5ced8;
  border-radius: 4px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--navy);
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.75rem 0 0;
}

.form-status {
  margin-top: 0.85rem;
  font-weight: 600;
}

.form-status.ok { color: #1f7a3f; }
.form-status.err { color: var(--red); }

.buy-paths__intro {
  margin: 0 0 1.15rem;
  color: var(--muted);
}

.buy-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.buy-path {
  border: 1px solid #d5dde6;
  background: #f7f9fb;
  padding: 1.25rem 1.2rem 1.35rem;
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.buy-path--accent {
  background: linear-gradient(165deg, #fff 0%, #f8f1f2 100%);
  border-color: rgba(196, 30, 58, 0.28);
}

.buy-path h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  color: var(--navy);
}

.buy-path p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.buy-path .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.po-wrap {
  max-width: 820px;
}

.po-unit {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid #d5dde6;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.po-unit__media img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.po-unit__body h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 700;
}

.po-unit__title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}

.po-unit__price {
  margin: 0 0 0.75rem;
  font-weight: 800;
  color: var(--navy);
}

.po-form h2 {
  margin: 0 0 1rem;
}

.po-form__section {
  margin-top: 1.75rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid #d5dde6;
}

.po-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 600;
  cursor: pointer;
}

.po-consent input {
  width: auto;
  margin-top: 0.2rem;
}

.footer {
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
}

.footer .wrap {
  display: grid;
  gap: 1rem;
}

.footer strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.footer a:hover {
  color: #fff;
}

@media (max-width: 860px) {
  .trust-grid,
  .cats {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: linear-gradient(180deg, var(--navy), var(--navy-2));
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.75rem 1.25rem 1.35rem;
    border-bottom: 1px solid rgba(45, 255, 110, 0.22);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  }

  .nav.open > a,
  .nav.open .nav-drop {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.55rem 0;
  }

  .nav.open .nav-drop {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav.open .nav-drop__menu {
    position: static;
    display: none;
    grid-column: 1 / -1;
    min-width: 0;
    margin-top: 0.35rem;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .nav.open .nav-drop.is-open .nav-drop__menu {
    display: grid;
  }

  .nav.open .nav-cta {
    margin: 0.75rem 0 0;
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (min-width: 861px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 560px) {
  .trust-grid,
  .cats,
  .form-grid,
  .buy-paths,
  .po-unit {
    grid-template-columns: 1fr;
  }
}

/* About page — shipping-first */
.about-hero {
  background:
    radial-gradient(ellipse 80% 70% at 70% 20%, rgba(196, 30, 58, 0.18), transparent 55%),
    linear-gradient(165deg, #0e1319 0%, var(--navy) 48%, #151d28 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.75rem, 5vw, 4rem);
}

.about-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 0.06em;
  line-height: 0.92;
  margin: 0;
  color: #fff;
}

.about-hero__sub {
  margin: 0.35rem 0 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 0 0 1rem;
  max-width: 18ch;
  color: #fff;
}

.about-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 48ch;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.about-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-spine {
  background: #fff;
  border-bottom: 1px solid #d5dde6;
}

.about-spine__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #d5dde6;
}

.about-spine__step {
  padding: 1.5rem 1.25rem 1.5rem 0;
  border-right: 1px solid #d5dde6;
  padding-right: 1.35rem;
  margin-right: 1.35rem;
}

.about-spine__step:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.about-spine__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.06em;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.65rem;
}

.about-spine__step h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.45rem;
  color: var(--navy);
}

.about-spine__step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.about-sell {
  background: var(--fog);
}

.about-sell__inner {
  max-width: 720px;
}

.about-sell__copy {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--steel);
  max-width: 42ch;
}

.about-trust {
  background: #fff;
}

.about-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 720px;
}

.about-trust__list li {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem 0 1.15rem 1.15rem;
  border-left: 3px solid var(--red);
  border-bottom: 1px solid #e2e8ef;
}

.about-trust__list li:last-child {
  border-bottom: 0;
}

.about-trust__list strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  font-weight: 400;
}

.about-trust__list span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.about-ops {
  background: var(--navy-2);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.about-ops .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.about-ops h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  letter-spacing: 0.03em;
  margin: 0.35rem 0 0.85rem;
  color: #fff;
}

.about-ops__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem 3rem;
  align-items: start;
}

.about-ops__grid > div > p {
  margin: 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.about-ops__details {
  font-style: normal;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 1.5rem;
}

.about-ops__details p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.about-ops__details a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.about-ops__details a:hover {
  color: #ffd0d8;
}

.about-close {
  background: var(--fog);
}

.about-close__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.about-close h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.about-close p {
  margin: 0 0 1.35rem;
  color: var(--muted);
}

.about-close__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid #9aa6b5;
}

.btn-ghost-dark:hover {
  background: rgba(27, 35, 47, 0.06);
  border-color: var(--navy);
}

@media (max-width: 900px) {
  .about-spine__list {
    grid-template-columns: 1fr 1fr;
  }

  .about-spine__step {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid #d5dde6;
    padding: 1.25rem 0;
  }

  .about-spine__step:nth-child(odd) {
    padding-right: 1rem;
  }

  .about-spine__step:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid #d5dde6;
  }

  .about-spine__step:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .about-ops__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-ops__details {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 1.35rem;
  }
}

@media (max-width: 560px) {
  .about-spine__list {
    grid-template-columns: 1fr;
  }

  .about-spine__step:nth-child(odd),
  .about-spine__step:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .about-spine__step {
    border-bottom: 1px solid #d5dde6;
  }

  .about-spine__step:last-child {
    border-bottom: 0;
  }

  .about-hero h1 {
    max-width: none;
  }
}

/* Contact page — polished dispatch layout */
.contact-hero {
  background:
    radial-gradient(ellipse 75% 65% at 80% 15%, rgba(196, 30, 58, 0.16), transparent 55%),
    linear-gradient(165deg, #0e1319 0%, var(--navy) 48%, #151d28 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 4.75rem) 0 clamp(2.75rem, 5vw, 3.75rem);
}

.contact-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff;
}

.contact-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 48ch;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.contact-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-reach {
  background: #fff;
  border-bottom: 1px solid #d5dde6;
}

.contact-reach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
  margin-bottom: 1.75rem;
}

.contact-reach__item {
  padding: 0.25rem 0 0.25rem 1.15rem;
  border-left: 3px solid var(--red);
}

.contact-reach__item h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.45rem;
  color: var(--navy);
}

.contact-reach__value {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-reach__value a {
  color: var(--navy);
  text-decoration: none;
}

.contact-reach__value a:hover {
  color: var(--red);
}

.contact-reach__item > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.98rem;
}

.contact-reach__note {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid #d5dde6;
  max-width: 62ch;
  color: var(--steel);
  line-height: 1.55;
}

.contact-reach__note a {
  color: var(--navy);
  font-weight: 700;
}

.contact-reach__note a:hover {
  color: var(--red);
}

.contact-directions {
  background: var(--fog);
}

.contact-directions__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem 3rem;
  align-items: start;
}

.contact-directions__copy {
  margin: 0 0 1.25rem;
  max-width: 48ch;
  color: var(--steel);
  line-height: 1.55;
}

.contact-directions__address {
  font-style: normal;
  margin: 0 0 1.5rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 600;
}

.contact-directions__address span {
  display: block;
  margin-top: 0.35rem;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-directions__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-directions__aside {
  border-left: 1px solid #c5ced8;
  padding-left: 1.5rem;
}

.contact-directions__aside h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
  color: var(--navy);
}

.contact-directions__aside h3:not(:first-child) {
  margin-top: 1.35rem;
}

.contact-directions__aside p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.98rem;
}

.contact-ready {
  background: #fff;
}

.contact-ready__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 720px;
}

.contact-ready__list li {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem 0 1.15rem 1.15rem;
  border-left: 3px solid var(--red);
  border-bottom: 1px solid #e2e8ef;
}

.contact-ready__list li:last-child {
  border-bottom: 0;
}

.contact-ready__list strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  font-weight: 400;
}

.contact-ready__list span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-close {
  background: var(--fog);
}

.contact-close__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-close h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.contact-close p {
  margin: 0 0 1.35rem;
  color: var(--muted);
}

.contact-close__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 900px) {
  .contact-reach__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-directions__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .contact-directions__aside {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid #c5ced8;
    padding-top: 1.35rem;
  }
}

/* Reviews page */
.reviews-hero {
  background:
    radial-gradient(ellipse 75% 65% at 75% 20%, rgba(196, 30, 58, 0.18), transparent 55%),
    linear-gradient(165deg, #0e1319 0%, var(--navy) 48%, #151d28 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 4.75rem) 0 clamp(2.75rem, 5vw, 3.75rem);
}

.reviews-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.reviews-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff;
  max-width: 16ch;
}

.reviews-hero__lead {
  margin: 0;
  max-width: 52ch;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.reviews-strip {
  background: var(--navy-2);
  color: #fff;
  padding: 1.35rem 0;
  border-bottom: 3px solid var(--red);
}

.reviews-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.5rem;
  text-align: center;
}

.reviews-strip__grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  letter-spacing: 0.04em;
  color: var(--red);
  line-height: 1.1;
}

.reviews-strip__grid span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.reviews-list {
  background: var(--fog);
}

.reviews-list__stack {
  display: grid;
  gap: 1.25rem;
  max-width: 920px;
}

.review-card {
  display: grid;
  grid-template-columns: 1fr auto;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18, 24, 32, 0.18);
}

.review-card__main {
  padding: 1.5rem 1.5rem 1.35rem;
}

.review-card__stars {
  margin: 0 0 0.75rem;
  color: var(--red);
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.review-card__unit {
  display: inline-block;
  margin: 0 0 1.15rem;
  padding: 0.4rem 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.review-card__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, 0.25);
  border: 1px solid rgba(196, 30, 58, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  color: #fff;
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
}

.review-card__person strong {
  display: block;
  font-size: 0.98rem;
  color: #fff;
}

.review-card__person > div > span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.review-card__score {
  width: 7.5rem;
  background: linear-gradient(180deg, var(--red) 0%, #9a162c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 1rem 0.65rem;
  text-align: center;
}

.review-card__score-star {
  font-size: 1.35rem;
  line-height: 1;
}

.review-card__score-num {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.review-card__badge {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  max-width: 6.5rem;
  line-height: 1.25;
}

.reviews-close {
  background: #fff;
  border-top: 1px solid #d5dde6;
}

.reviews-close__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.reviews-close h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.reviews-close p {
  margin: 0 0 1.35rem;
  color: var(--muted);
}

.reviews-close__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 900px) {
  .reviews-strip__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .review-card {
    grid-template-columns: 1fr;
  }

  .review-card__score {
    width: 100%;
    flex-direction: row;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
  }

  .review-card__badge {
    max-width: none;
  }

  .reviews-hero h1 {
    max-width: none;
  }

  .reviews-strip__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-toggle {
  background: transparent;
  border: 1px solid rgba(45, 255, 110, 0.45);
  color: var(--brand-green);
  padding: 0.45rem 0.8rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(45, 255, 110, 0.12);
  border-color: var(--brand-green);
}

.footer__grid {
  display: grid;
  gap: 1.25rem 2rem;
}

@media (min-width: 720px) {
  .footer__grid {
    grid-template-columns: 1.1fr 1.4fr 1fr;
    align-items: start;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--brand-green);
}

.footer__meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

/* Dulling King — logo + styled wordmark */
.brand--logo .brand-text {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.brand--logo .brand-text strong.brand-name {
  font-size: clamp(0.95rem, 2.6vw, 1.3rem);
  white-space: nowrap;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.logo-hero {
  width: min(200px, 42vw);
  height: auto;
  margin: 0 auto 0.85rem;
  background: transparent;
  object-fit: contain;
  overflow: visible;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
}

.brand-name .name-dulling,
.hero-brand .name-dulling,
.about-hero__brand .name-dulling,
.brand-name .name-king,
.hero-brand .name-king,
.about-hero__brand .name-king {
  color: var(--brand-green);
  -webkit-text-fill-color: var(--brand-green);
  background: none;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.4);
}

.brand-name .name-king,
.hero-brand .name-king,
.about-hero__brand .name-king {
  margin: 0 0.22em;
}

.brand-name .name-sales,
.hero-brand .name-sales,
.about-hero__brand .name-sales {
  color: var(--brand-gold);
  -webkit-text-fill-color: var(--brand-gold);
  background: none;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-brand.brand-name {
  white-space: nowrap;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  letter-spacing: 0.06em;
}

.about-hero .hero-lockup {
  margin-bottom: 0.85rem;
  align-items: flex-start;
  text-align: left;
}

.about-hero .hero-brand--auction {
  text-align: left;
}

.about-hero .hero-brand--auction .hero-brand__sales {
  text-indent: 0;
}

.about-hero .logo-hero {
  margin-left: 0;
  width: min(220px, 48vw);
}

.coming-soon {
  background: linear-gradient(135deg, var(--navy-2), var(--steel));
  color: #fff;
  padding: 2rem 1.25rem;
  text-align: center;
}

.coming-soon p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.cat-tile {
  display: grid;
  place-items: end start;
  min-height: 180px;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(18, 24, 32, 0.15), rgba(18, 24, 32, 0.82)),
    linear-gradient(135deg, #2a3544, #1b232f);
  color: #fff;
  text-decoration: none;
}

.cat-tile strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
}

.cat-tile span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.offline-banner {
  background: #3d2e12;
  color: #f5e6c8;
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

/* Auction lot cards + listing panel */
.inv-card__lot {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  background: rgba(232, 197, 71, 0.95);
  color: #121820;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
}

.inv-card__status {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
  color: #fff;
  background: #1f7a3f;
}

.inv-card__status.is-upcoming {
  background: #3d5a80;
}

.inv-card__status.is-closing {
  background: #b45309;
}

.inv-card__status.is-sold {
  background: #5c6570;
}

.inv-card__bid-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.inv-card__ends {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.inv-card__reserve {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.inv-card__reserve.is-met {
  color: #1f7a3f;
}

.inv-card__bin {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.inv-hero__event {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.auction-panel {
  background: #fff;
  border: 1px solid #d5dde6;
  padding: 1rem 1.1rem 1.15rem;
  margin-bottom: 1.1rem;
  display: grid;
  gap: 0.2rem;
}

.auction-panel__top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.auction-panel__status,
.auction-panel__lot {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
}

.auction-panel__status {
  color: #fff;
  background: #1f7a3f;
}

.auction-panel__status.is-upcoming {
  background: #3d5a80;
}

.auction-panel__status.is-closing {
  background: #b45309;
}

.auction-panel__status.is-sold {
  background: #5c6570;
}

.auction-panel__lot {
  background: rgba(232, 197, 71, 0.95);
  color: #121820;
}

.auction-panel__reserve {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  background: #e8edf3;
  color: var(--muted);
}

.auction-panel__reserve.is-met {
  background: #d8f5e3;
  color: #1f7a3f;
}

.auction-panel__label {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.auction-panel .listing__price {
  margin: 0.1rem 0 0.15rem;
}

.auction-panel__meta,
.auction-panel__ends,
.auction-panel__countdown,
.auction-panel__note,
.auction-panel__bin {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.auction-panel__bin {
  margin-top: 0.35rem;
  color: var(--navy);
  font-weight: 600;
}

.auction-panel__countdown {
  font-weight: 700;
  color: var(--navy);
}

.auction-panel__note {
  margin-top: 0.55rem;
  line-height: 1.45;
}

.btn-bin {
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
}

.btn-bin:hover {
  background: var(--steel);
  border-color: var(--steel);
  color: #fff;
}

.auction-terms h2 {
  margin-top: 0;
}
