:root {
  --ink: #080808;
  --coal: #121212;
  --paper: #080808;
  --white: #ffffff;
  --line: #2a2a2a;
  --muted: #b8b8b8;
  --red: #b71f1f;
  --teal: #078f9b;
  --gold: #f0f0f0;
  --shadow: 0 18px 45px rgba(0, 0, 0, .42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  background-image:
    linear-gradient(90deg, rgba(7, 143, 155, .08), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .028) 0 1px, transparent 1px 18px);
  background-attachment: fixed;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid var(--red);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 8px 18px;
  background: #000;
  color: var(--white);
  font-size: 14px;
}

.top-strip a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 7, 7, .96);
  border-bottom: 1px solid #242424;
  backdrop-filter: blur(12px);
}

.site-header::after {
  content: "";
  display: block;
  height: 5px;
  background:
    linear-gradient(90deg, var(--teal) 0 33%, #f2f2f2 33% 66%, var(--red) 66% 100%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 248px;
}

.brand img {
  width: 76px;
  height: 72px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.brand small {
  color: #bdbdbd;
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: 6px;
  padding: 9px 11px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--white);
  color: var(--ink);
}

.site-nav a {
  color: var(--white);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .48) 48%, rgba(0, 0, 0, .2)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 18px);
}

.hero-content {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 116px 22px 78px;
  color: var(--white);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 68px;
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 5px 0 rgba(195, 35, 35, .55), 0 12px 32px rgba(0, 0, 0, .45);
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  font-size: 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}

.hero .eyebrow,
.contact-band .eyebrow {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

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

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

.button.ghost.light {
  border-color: rgba(255, 255, 255, .7);
  color: var(--white);
}

.button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: -38px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 22px;
}

.fact {
  min-height: 98px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-right: 0;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.fact::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--red);
}

.fact:nth-child(2)::before {
  background: var(--teal);
}

.fact:nth-child(3)::before {
  background: var(--gold);
}

.fact:last-child {
  border-right: 1px solid var(--line);
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  font-size: 24px;
}

.fact span {
  color: var(--muted);
}

.section,
.page-intro {
  padding: 78px 0;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 22px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  font-size: 38px;
  margin: 0 0 14px;
}

h3 {
  margin: 0 0 10px;
}

.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 720px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.service-card,
.review-card,
.sale-card,
.offer-card,
.contact-card,
.ebay-card,
.feed-fallback,
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-card,
.offer-card,
.contact-card,
.review-card,
.action-card,
.service-list-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover,
.offer-card:hover,
.contact-card:hover,
.review-card:hover,
.action-card:hover,
.service-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(195, 35, 35, .45);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .14);
}

.service-card img,
.offer-card img,
.sale-card img,
.ebay-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div,
.offer-card div,
.sale-card-body,
.contact-card,
.feed-fallback {
  padding: 20px;
}

.service-card p,
.offer-card p,
.sale-card p,
.contact-card p {
  color: var(--muted);
}

.split-band,
.contact-band {
  background: var(--coal);
  background-image:
    linear-gradient(120deg, rgba(195, 35, 35, .18), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 18px);
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 40px;
  align-items: center;
}

.split-band p:not(.eyebrow),
.contact-band p {
  color: #d8d5cc;
}

.feature-image,
.intro-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-image {
  aspect-ratio: 5 / 4;
}

.feature-image.compact {
  max-height: 330px;
  object-fit: contain;
  background: var(--white);
  padding: 28px;
}

.intro-image {
  aspect-ratio: 4 / 3;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-row article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-row.punchy {
  align-items: stretch;
}

.action-card {
  position: relative;
  overflow: hidden;
}

.feature-row.punchy .action-card {
  display: grid;
  grid-template-rows: 22px 94px minmax(58px, auto) 48px;
  align-content: start;
  gap: 16px;
}

.feature-row.punchy .action-card p,
.feature-row.punchy .action-card h2 {
  margin: 0;
}

.feature-row.punchy .action-card .button {
  align-self: start;
  justify-self: start;
}

.action-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 170px;
  height: 170px;
  border: 18px solid rgba(8, 8, 8, .08);
  border-radius: 50%;
}

.action-card.redline {
  border-top: 7px solid var(--red);
}

.action-card.blueline {
  border-top: 7px solid var(--teal);
}

.review-card {
  padding: 24px;
  margin: 0;
}

.review-card p {
  margin-top: 0;
}

.review-card cite {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-list article,
.values-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-list h2 {
  font-size: 24px;
}

.copy-block p {
  color: var(--muted);
}

.values-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.values-panel li {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.values-panel li:first-child {
  border-top: 0;
}

.values-panel span {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8f4f3;
  color: #08656e;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  color: var(--red) !important;
  font-size: 24px;
  font-weight: 900;
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.ebay-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 24px;
}

.ebay-search {
  flex: 1;
}

.ebay-search label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.ebay-search div {
  display: flex;
  gap: 8px;
}

.ebay-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.feed-state {
  margin-bottom: 18px;
  padding: 14px 16px;
  background: var(--white);
  border-left: 4px solid var(--teal);
}

.ebay-browser-shell,
.ebay-widget-shell {
  overflow: hidden;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: #d9d9d9;
  background: #0b0b0b;
  border-bottom: 1px solid #2a2a2a;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
}

.browser-bar span:nth-child(2) {
  background: var(--gold);
}

.browser-bar span:nth-child(3) {
  background: var(--teal);
}

.browser-bar strong {
  margin-left: 8px;
  font-size: 13px;
}

.ebay-frame {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: var(--white);
}

.frame-note {
  padding: 13px 16px;
  background: #171717;
  color: #e8e4da;
  font-size: 14px;
}

.ebay-widget-inner {
  min-height: 520px;
  padding: 22px;
  background: var(--paper);
}

#osd-ebay-listings {
  background: var(--paper);
}

#osd-ebay-listings input,
#osd-ebay-listings button,
#osd-ebay-listings select {
  font: inherit;
}

#osd-ebay-listings a {
  color: var(--ink);
}

.feed-state[data-type="error"] {
  border-left-color: var(--red);
}

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

.ebay-card a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.ebay-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.meta-line {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 14px;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

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

.big-link {
  display: inline-block;
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  text-decoration: none;
}

.hours-list {
  padding-left: 18px;
}

.blog-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.blog-card div {
  padding: 30px;
}

.contact-band {
  padding: 56px 0;
}

.contact-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer {
  background: #0c0c0c;
  color: var(--white);
  padding: 48px 0 20px;
}

.footer-grid,
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 22px;
}

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

.footer-logo {
  width: 78px;
  height: 74px;
  object-fit: contain;
}

.site-footer h2 {
  font-size: 18px;
}

.site-footer a,
.site-footer span {
  display: block;
  color: #e5e2da;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid #333;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 16px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 22px;
    right: 22px;
    top: calc(100% - 1px);
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .quick-facts,
  .card-grid.three,
  .card-grid.four,
  .ebay-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .feature-row,
  .contact-grid,
  .blog-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .feature-row.punchy .action-card {
    grid-template-rows: auto;
    gap: 14px;
  }

  body[data-page="contact"] .page-intro {
    display: none;
  }

  body[data-page="contact"] .intro-emoji {
    display: none;
  }

  .top-strip {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero p:not(.eyebrow),
  .lead {
    font-size: 18px;
  }

  .quick-facts,
  .card-grid.three,
  .card-grid.four,
  .service-list,
  .ebay-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    margin-top: 0;
    padding: 0;
  }

  .fact {
    border-right: 1px solid var(--line);
    box-shadow: none;
  }

  .section,
  .page-intro {
    padding: 54px 0;
  }

  h2 {
    font-size: 30px;
  }

  .ebay-toolbar,
  .ebay-search div,
  .contact-band-inner,
  .footer-bottom,
  .footer-bottom span:last-child {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .ebay-frame {
    height: 620px;
  }
}

/* Dark garage pass */
body {
  background-color: #070707;
  color: #f5f5f5;
}

.site-header,
.nav-shell,
.page-intro,
.section {
  background-color: transparent;
}

.site-nav a {
  color: #f5f5f5;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: #f5f5f5;
  color: #080808;
}

.page-intro {
  border-bottom: 1px solid #222;
}

.page-intro .split,
.section-inner.split {
  align-items: center;
}

.lead,
.section-heading p,
.copy-block p,
.contact-card p,
.service-card p,
.offer-card p,
.sale-card p,
.feature-row p,
.values-panel span {
  color: #c9c9c9;
}

.service-card,
.review-card,
.sale-card,
.offer-card,
.contact-card,
.feed-fallback,
.blog-card,
.feature-row article,
.service-list article,
.values-panel,
.contact-form {
  background: #111;
  border-color: #2d2d2d;
  color: #f5f5f5;
}

.service-card img,
.offer-card img,
.sale-card img,
.intro-image,
.feature-image {
  filter: contrast(1.05) saturate(.95);
}

.quick-facts {
  margin-top: -32px;
}

.fact {
  background: #111;
  border-color: #2d2d2d;
  color: #f5f5f5;
}

.fact span,
dt {
  color: #bdbdbd;
}

.button.secondary {
  background: #f5f5f5;
  color: #080808;
}

.button.ghost {
  border-color: #f5f5f5;
  color: #f5f5f5;
}

.big-link,
.price {
  color: #58c7d1 !important;
}

.contact-form {
  padding: 26px;
  border-radius: 8px;
}

.contact-form label {
  display: block;
  margin: 0 0 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 0 0 16px;
  padding: 13px 14px;
  border: 1px solid #343434;
  border-radius: 6px;
  background: #050505;
  color: #f5f5f5;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #078f9b;
  outline-offset: 2px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-message {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #333;
}

.form-message p {
  margin: 0 0 6px;
}

.form-message p:last-child {
  margin-bottom: 0;
}

.form-message.ok {
  background: rgba(7, 143, 155, .16);
  border-color: #078f9b;
}

.form-message.error {
  background: rgba(183, 31, 31, .16);
  border-color: #b71f1f;
}

.ebay-widget-inner {
  background: #0b0b0b;
}

#osd-ebay-listings {
  background: #0b0b0b !important;
  color: #f2f2f2;
}

/* eBay widget hard polish */
#osd-ebay-listings,
#osd-ebay-listings * {
  box-sizing: border-box !important;
}

#osd-ebay-listings {
  font-family: Arial, Helvetica, sans-serif !important;
}

#osd-ebay-listings .sticky-wrapper {
  background: #0b0b0b !important;
  color: #d6d6d6 !important;
  border: 0 !important;
}

#osd-ebay-listings .ebay-logo {
  margin: 0 0 10px !important;
  padding: 0 !important;
}

#osd-ebay-listings .ebay-logo::before {
  content: "right now on";
  display: block;
  margin-bottom: 3px;
  color: #9fb9bd;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

#osd-ebay-listings .disclaimer {
  margin: 10px 0 16px !important;
  padding: 10px 12px !important;
  border: 1px solid #2d2d2d !important;
  border-radius: 6px !important;
  background: #121212 !important;
  color: #cfcfcf !important;
  font-size: 13px !important;
}

#osd-ebay-listings .disclaimer span {
  border-color: #078f9b !important;
  color: #f5f5f5 !important;
}

#osd-ebay-listings .osd-search-box {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  margin: 0 0 18px !important;
  padding: 14px !important;
  border: 1px solid #2d2d2d !important;
  border-radius: 8px !important;
  background: #111 !important;
}

#osd-ebay-listings #osd-searchTerm {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  height: 44px !important;
  padding: 0 13px !important;
  border: 1px solid #343434 !important;
  border-radius: 6px !important;
  background: #050505 !important;
  color: #f5f5f5 !important;
  font-size: 15px !important;
}

#osd-ebay-listings .osd-btn,
#osd-ebay-listings button.osd-btn,
#osd-ebay-listings a.osd-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  padding: 9px 13px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: #078f9b !important;
  color: #fff !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

#osd-ebay-listings .reset-button {
  background: #2b2b2b !important;
}

#osd-ebay-listings .paging {
  display: flex !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  background: transparent !important;
  color: #f5f5f5 !important;
}

#osd-ebay-listings .previous-page,
#osd-ebay-listings .next-page {
  padding: 8px 12px !important;
  border-radius: 6px !important;
  background: #1b1b1b !important;
  border: 1px solid #343434 !important;
  color: #f5f5f5 !important;
}

#osd-ebay-listings .previous-page.disabled,
#osd-ebay-listings .next-page.disabled {
  opacity: .45 !important;
}

#osd-ebay-listings #eBayListings,
#osd-ebay-listings .grid-3-listing {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: transparent !important;
}

#osd-ebay-listings .listItem {
  width: auto !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #2d2d2d !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: #111 !important;
  color: #f5f5f5 !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .26) !important;
}

#osd-ebay-listings .listItem > div {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

#osd-ebay-listings .eBayImage {
  height: 210px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px !important;
  background: #f2f2f2 !important;
}

#osd-ebay-listings .eBayImage img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

#osd-ebay-listings .eBayData {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  padding: 15px !important;
  background: #111 !important;
}

#osd-ebay-listings .eBayTitle {
  min-height: 54px !important;
  margin: 0 0 12px !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
  color: #f5f5f5 !important;
}

#osd-ebay-listings .eBayTitle a,
#osd-ebay-listings .eBayData a {
  color: #f5f5f5 !important;
  text-decoration: none !important;
}

#osd-ebay-listings .eBayData ul {
  display: grid !important;
  gap: 10px !important;
  margin: auto 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#osd-ebay-listings .eBayAuctionPrice {
  color: #58c7d1 !important;
  font-size: 22px !important;
  font-weight: 900 !important;
}

#osd-ebay-listings .bitImage {
  display: none !important;
}

#osd-ebay-listings .eBayViewMore .osd-btn {
  width: 100% !important;
  background: #b71f1f !important;
}

@media (max-width: 980px) {
  #osd-ebay-listings #eBayListings,
  #osd-ebay-listings .grid-3-listing {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  #osd-ebay-listings .osd-search-box {
    display: grid !important;
  }

  #osd-ebay-listings #eBayListings,
  #osd-ebay-listings .grid-3-listing {
    grid-template-columns: 1fr !important;
  }
}

/* v6: motorcycle workshop redesign */
.top-strip {
  background: #050505;
  border-bottom: 1px solid #1f1f1f;
}

.site-header {
  background: rgba(6, 6, 6, .97);
  border-bottom: 1px solid #222;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .34);
}

.site-header::after {
  height: 2px;
  background: #078f9b;
}

.nav-shell {
  padding: 10px 22px;
}

.brand {
  gap: 14px;
  min-width: 300px;
}

.brand img {
  width: 62px;
  height: 62px;
}

.brand strong {
  font-size: 19px;
  letter-spacing: 0;
}

.brand small {
  color: #9aa4a6;
}

.site-nav {
  gap: 2px;
}

.site-nav a {
  border-radius: 3px;
  color: #efefef;
  padding: 10px 12px;
  text-transform: uppercase;
  font-size: 12px;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: #078f9b;
  color: #fff;
}

.hero {
  min-height: 620px;
}

.hero-bg {
  filter: grayscale(.1) contrast(1.18) saturate(.75);
}

.frosted-hero .hero-bg {
  filter: blur(9px) grayscale(.2) contrast(.92) saturate(.55);
  transform: scale(1.05);
}

.frosted-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .76) 46%, rgba(0, 0, 0, .6)),
    rgba(7, 143, 155, .12);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .7) 46%, rgba(0, 0, 0, .42)),
    linear-gradient(0deg, rgba(0, 0, 0, .4), transparent 38%);
}

.hero-content {
  padding-bottom: 86px;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(46px, 7vw, 76px);
  text-shadow: none;
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  color: #e0e0e0;
}

.eyebrow {
  color: #58c7d1;
}

.hero .eyebrow,
.contact-band .eyebrow {
  color: #58c7d1;
}

.quick-facts {
  margin-top: 0;
  max-width: none;
  padding: 0;
  background: #0e0e0e;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.fact {
  box-shadow: none;
  border-top: 0;
  border-bottom: 0;
  border-color: #222;
  background: #0e0e0e;
}

.fact::before {
  background: #078f9b;
}

.section,
.page-intro {
  padding: 64px 0;
}

.page-intro {
  background:
    radial-gradient(circle at 0 0, rgba(7, 143, 155, .14), transparent 35%),
    #090909;
}

.section-heading {
  margin-bottom: 22px;
}

.service-card,
.offer-card,
.contact-card,
.review-card,
.feature-row article,
.service-list article,
.values-panel,
.contact-form,
.ebay-widget-shell {
  border-radius: 3px;
}

.service-card img,
.offer-card img,
.sale-card img {
  aspect-ratio: 16 / 9;
}

.feature-image,
.intro-image {
  border-radius: 3px;
}

.intro-emoji {
  display: grid;
  place-items: center;
  min-height: 300px;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid #2d2d2d;
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(7, 143, 155, .24), transparent 48%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 18px),
    #111;
  box-shadow: var(--shadow);
  color: #fff;
  font-size: clamp(100px, 14vw, 210px);
  line-height: 1;
  text-shadow: 0 12px 26px rgba(0, 0, 0, .45);
}

.intro-image--graphic {
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  filter: none !important;
}

.button {
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 13px;
}

.button.primary,
#osd-ebay-listings .eBayViewMore .osd-btn {
  background: #078f9b !important;
}

.button.secondary {
  background: #f2f2f2;
}

.contact-band {
  padding: 46px 0;
}

.floating-ebay {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 15px;
  border: 1px solid #2e2e2e;
  border-radius: 3px;
  background: #fff;
  color: #070707;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .36);
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}

.floating-ebay img {
  width: 50px;
  height: auto;
}

.ebay-toolbar {
  align-items: center;
}

.ebay-widget-inner {
  padding: 16px;
}

#osd-ebay-listings .ebay-logo,
#osd-ebay-listings .disclaimer {
  display: none !important;
}

#osd-ebay-listings .osd-search-box {
  margin-bottom: 14px !important;
  padding: 10px !important;
}

#osd-ebay-listings #osd-searchTerm {
  height: 38px !important;
  font-size: 13px !important;
}

#osd-ebay-listings .osd-btn,
#osd-ebay-listings button.osd-btn,
#osd-ebay-listings a.osd-btn {
  min-height: 34px !important;
  padding: 7px 10px !important;
  font-size: 12px !important;
}

#osd-ebay-listings #eBayListings,
#osd-ebay-listings .grid-3-listing {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

#osd-ebay-listings .listItem {
  border-radius: 3px !important;
}

#osd-ebay-listings .eBayImage {
  height: 86px !important;
  padding: 8px !important;
  overflow: hidden !important;
}

#osd-ebay-listings .eBayImage img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 70px !important;
  object-fit: contain !important;
}

#osd-ebay-listings .eBayData {
  padding: 10px !important;
}

#osd-ebay-listings .eBayTitle {
  min-height: 42px !important;
  margin-bottom: 8px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}

#osd-ebay-listings .eBayAuctionPrice {
  font-size: 16px !important;
}

#osd-ebay-listings .paging {
  margin-bottom: 12px !important;
}

@media (max-width: 980px) {
  .brand {
    min-width: 0;
  }

  .site-nav {
    background: #080808;
  }

  #osd-ebay-listings #eBayListings,
  #osd-ebay-listings .grid-3-listing {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 52px;
    height: 52px;
  }

  .floating-ebay {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }

  #osd-ebay-listings #eBayListings,
  #osd-ebay-listings .grid-3-listing {
    grid-template-columns: 1fr !important;
  }
}

/* v8: original DL Motorcycles logo badge */
.nav-shell {
  padding: 7px 22px;
}

.brand {
  min-width: 128px;
}

.brand img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .55));
}

.brand span {
  display: none;
}

.footer-logo {
  width: 136px;
  height: 136px;
  object-fit: contain;
}

@media (max-width: 680px) {
  .nav-shell {
    padding: 7px 14px;
  }

  .brand img {
    width: 84px;
    height: 84px;
  }
}

/* v9: rotating 5-star Google reviews */
.google-review-section {
  background:
    linear-gradient(135deg, rgba(7, 143, 155, .18), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .045) 0 2px, transparent 2px 18px),
    #070707;
  color: #fff;
}

.google-review-section .section-heading {
  max-width: 760px;
}

.google-review-section .section-heading h2 {
  color: #fff;
}

.review-carousel {
  max-width: 920px;
  min-height: 330px;
  display: grid;
  gap: 22px;
  padding: 34px;
  background: #fff;
  color: #101010;
  border: 1px solid rgba(255, 255, 255, .16);
  border-top: 5px solid #078f9b;
  border-radius: 3px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .36);
}

.review-carousel-head,
.review-carousel-foot,
.google-review-slide footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-carousel-head {
  flex-wrap: wrap;
  color: #575757;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.google-source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 34px;
  padding: 0 13px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
}

.review-stars {
  color: #f6b500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 1px;
}

.review-slides {
  position: relative;
  min-height: 150px;
}

.google-review-slide {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}

.google-review-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.google-review-slide:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(0);
}

.google-review-slide p {
  margin: 0;
  color: #151515;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 800;
}

.google-review-slide footer {
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid #e8e8e8;
}

.google-review-slide cite {
  color: #078f9b;
  font-style: normal;
  font-weight: 900;
}

.google-review-slide footer span {
  color: #5f5f5f;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-carousel-foot {
  justify-content: space-between;
  flex-wrap: wrap;
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-dots button {
  width: 34px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d7d7d7;
  cursor: pointer;
}

.review-dots button.is-active {
  background: #078f9b;
}

@media (max-width: 680px) {
  .review-carousel {
    min-height: 390px;
    padding: 24px;
  }

  .google-review-slide p {
    font-size: 21px;
  }

  .review-carousel-foot .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-review-slide {
    transition: none;
  }
}

/* v10: real Google review module */
.google-review-section {
  background:
    linear-gradient(120deg, rgba(7, 143, 155, .16), transparent 32%),
    #070707;
}

.google-reviews-widget {
  display: grid;
  grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  max-width: 1040px;
}

.google-rating-panel,
.google-reviews-widget .review-carousel {
  background: #fff;
  color: #111;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
}

.google-rating-panel {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: 28px;
  border-top: 5px solid #4285f4;
}

.google-wordmark {
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.google-wordmark strong {
  margin-left: 8px;
  color: #202124;
  font-size: 16px;
  font-weight: 800;
}

.g-blue {
  color: #4285f4;
}

.g-red {
  color: #ea4335;
}

.g-yellow {
  color: #fbbc05;
}

.g-green {
  color: #34a853;
}

.google-score {
  color: #202124;
  font-size: 58px;
  font-weight: 900;
  line-height: .9;
}

.google-rating-panel p {
  margin: 0;
  color: #5f6368;
  font-weight: 700;
}

.google-reviews-widget .review-carousel {
  max-width: none;
  min-height: 286px;
  gap: 18px;
  padding: 28px;
  border-top: 5px solid #34a853;
}

.google-reviews-widget .review-carousel-head {
  justify-content: space-between;
  gap: 14px;
  color: #5f6368;
  font-size: 13px;
}

.google-live-link {
  color: #1a73e8;
}

.google-reviews-widget .review-slides {
  min-height: 136px;
}

.google-reviews-widget .google-review-slide {
  align-content: start;
  gap: 14px;
}

.google-reviews-widget .google-review-slide p {
  color: #202124;
  font-size: 21px;
  font-weight: 750;
  line-height: 1.38;
}

.google-reviews-widget .google-review-slide footer {
  border-top-color: #ededed;
  padding-top: 14px;
}

.google-reviews-widget .google-review-slide cite {
  color: #202124;
}

.google-reviews-widget .google-review-slide footer span {
  color: #70757a;
}

.review-stars.small {
  font-size: 16px;
  letter-spacing: 0;
}

.google-reviews-widget .review-dots button {
  width: 26px;
  height: 7px;
}

.google-reviews-widget .review-dots button.is-active {
  background: #1a73e8;
}

@media (max-width: 860px) {
  .google-reviews-widget {
    grid-template-columns: 1fr;
  }

  .google-rating-panel {
    align-content: start;
  }
}

@media (max-width: 680px) {
  .google-rating-panel,
  .google-reviews-widget .review-carousel {
    padding: 22px;
  }

  .google-score {
    font-size: 46px;
  }

  .google-reviews-widget .review-carousel {
    min-height: 330px;
  }

  .google-reviews-widget .google-review-slide p {
    font-size: 18px;
  }
}

/* v11: Find Us map page */
.find-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.find-details,
.map-panel,
.find-info-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .1);
}

.find-details {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 30px;
  border-top: 5px solid #078f9b;
}

.find-details address {
  display: grid;
  gap: 5px;
  color: #202124;
  font-style: normal;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.find-info-grid {
  display: grid;
  gap: 12px;
}

.find-info-grid article {
  display: grid;
  gap: 7px;
  padding: 18px;
  box-shadow: none;
}

.find-info-grid h3 {
  margin: 0;
  font-size: 17px;
}

.find-info-grid span,
.find-info-grid p {
  margin: 0;
  color: var(--muted);
}

.map-panel {
  overflow: hidden;
  min-height: 560px;
  border-top: 5px solid #c32323;
}

.google-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

@media (max-width: 920px) {
  .find-grid {
    grid-template-columns: 1fr;
  }

  .map-panel,
  .google-map {
    min-height: 430px;
  }
}

@media (max-width: 680px) {
  .find-details {
    padding: 24px;
  }

  .find-details address {
    font-size: 18px;
  }

  .map-panel,
  .google-map {
    min-height: 360px;
  }
}

/* v12: cleanup pass from review */
.brand img {
  width: 132px;
  height: 104px;
}

.footer-logo {
  width: 148px;
  height: 118px;
}

.contact-grid {
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(7, 143, 155, .08), transparent 45%),
    #111;
  border: 1px solid #2b2b2b;
  border-top: 4px solid #078f9b;
  color: #f6f6f6;
}

.contact-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.contact-card .big-link {
  color: #54d7e4;
  font-size: clamp(21px, 1.9vw, 29px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 0;
  color: #dedede;
  font-size: 17px;
  line-height: 1.5;
}

.contact-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.contact-card:hover {
  border-color: #078f9b;
}

.google-review-section {
  background:
    linear-gradient(120deg, rgba(7, 143, 155, .14), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .04) 0 2px, transparent 2px 18px),
    #070707;
}

.google-rating-panel,
.google-reviews-widget .review-carousel {
  background:
    linear-gradient(145deg, rgba(7, 143, 155, .08), transparent 44%),
    #111;
  color: #f5f5f5;
  border-color: #2b2b2b;
}

.google-rating-panel {
  border-top-color: #078f9b;
}

.google-wordmark strong,
.google-score,
.google-reviews-widget .google-review-slide p,
.google-reviews-widget .google-review-slide cite {
  color: #fff;
}

.google-rating-panel p,
.google-reviews-widget .google-review-slide footer span {
  color: #cfcfcf;
}

.google-reviews-widget .review-carousel {
  border-top-color: #c32323;
}

.google-reviews-widget .review-carousel-head,
.google-live-link {
  display: none;
}

.google-reviews-widget .google-review-slide footer {
  border-top-color: #333;
}

.find-details,
.map-panel,
.find-info-grid article {
  background:
    linear-gradient(145deg, rgba(7, 143, 155, .08), transparent 44%),
    #111;
  color: #f5f5f5;
  border-color: #2b2b2b;
}

.find-details h2,
.find-details address,
.find-info-grid h3 {
  color: #fff;
}

.find-info-grid span,
.find-info-grid p {
  color: #d7d7d7;
}

.find-details .button.secondary {
  color: #111;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.footer-copy {
  color: #d7d7d7;
  font-size: 13px;
}

.footer-credit-line {
  display: inline;
  margin: 0;
  color: #d7d7d7;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 13px;
}

.footer-credit {
  display: inline;
  color: #d7d7d7 !important;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.footer-credit:hover {
  color: #fff !important;
}

.footer-bottom .footer-copy {
  display: block;
}

.footer-bottom .footer-credit-line,
.footer-bottom .footer-credit {
  display: inline;
}

.footer-bottom .footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.offer-grid {
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.offer-card img {
  height: 184px;
  aspect-ratio: auto;
  flex: 0 0 auto;
}

.offer-card > div {
  flex: 1;
  display: grid;
  grid-template-rows: 108px 44px minmax(124px, auto);
  align-content: start;
  gap: 16px;
  padding: 26px 26px 28px;
}

.offer-card h2,
.offer-card p {
  margin: 0;
}

.offer-card h2 {
  display: flex;
  align-items: flex-start;
  font-size: 40px;
  line-height: 1.05;
}

.offer-card .price {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 12px;
  border-left: 3px solid #58c7d1;
  background: rgba(88, 199, 209, .12);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.offer-card p:not(.price) {
  max-width: 28ch;
  min-height: 112px;
  font-size: 17px;
  line-height: 1.5;
}

@media (max-width: 680px) {
  .offer-card > div {
    grid-template-rows: auto;
    gap: 14px;
    padding: 22px;
  }

  .offer-card h2 {
    font-size: 32px;
  }

  .offer-card .price {
    min-height: 38px;
    font-size: 22px;
  }

  .offer-card p:not(.price) {
    min-height: 0;
  }
}

.hours-address {
  margin: 22px 0 18px;
  padding: 18px 20px;
  border-left: 4px solid #58c7d1;
  background: rgba(0, 0, 0, .24);
}

.hours-address h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.hours-address p {
  margin: 0 0 12px;
  color: #e7e7e7;
  line-height: 1.45;
}

.hours-address a {
  color: #58c7d1;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.hours-address a:hover {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(560px, calc(100vw - 36px));
  padding: 16px;
  background: #111;
  color: #fff;
  border: 1px solid #333;
  border-top: 4px solid #078f9b;
  border-radius: 4px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-banner .button {
  flex: 0 0 auto;
}

@media (max-width: 680px) {
  .brand img {
    width: 102px;
    height: 82px;
  }

  .footer-logo {
    width: 132px;
    height: 104px;
  }

  .cookie-banner {
    bottom: 74px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner .button {
    width: 100%;
  }
}

/* v19: scroll reveals and mobile polish */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, .98);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .34);
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .62s ease,
    transform .62s ease,
    border-color .18s ease,
    box-shadow .18s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .service-card.reveal-item.is-visible:hover,
.reveal-ready .service-list-card.reveal-item.is-visible:hover,
.reveal-ready .offer-card.reveal-item.is-visible:hover,
.reveal-ready .contact-card.reveal-item.is-visible:hover,
.reveal-ready .review-card.reveal-item.is-visible:hover,
.reveal-ready .action-card.reveal-item.is-visible:hover {
  transform: translateY(-4px);
}

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

  .reveal-ready .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    position: relative;
    padding: 8px 18px;
  }

  .menu-toggle {
    flex: 0 0 auto;
    background: #111;
    border-color: #333;
  }

  .menu-toggle span:not(.sr-only) {
    background: #fff;
  }

  .site-nav {
    left: 18px;
    right: 18px;
    top: calc(100% + 6px);
    grid-template-columns: 1fr;
    gap: 4px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 10px;
    background: rgba(8, 8, 8, .98);
    border-color: #303030;
    border-radius: 3px;
  }

  .site-nav a {
    width: 100%;
    padding: 13px 12px;
    color: #fff;
  }

  .section-inner,
  .footer-grid,
  .footer-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro-image,
  .feature-image {
    width: 100%;
    max-height: 420px;
  }
}

@media (max-width: 680px) {
  .top-strip {
    gap: 10px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 92px;
    height: 74px;
  }

  .site-header::after {
    height: 4px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding: 86px 18px 48px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1;
  }

  .hero p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.45;
  }

  .cta-row {
    width: 100%;
  }

  .button {
    min-height: 46px;
    white-space: normal;
  }

  .quick-facts {
    margin-top: 0;
  }

  .fact {
    min-height: 82px;
    padding: 18px;
  }

  .section,
  .page-intro {
    padding: 46px 0;
  }

  .section-heading h2,
  .copy-block h2,
  .split h2,
  .contact-band h2,
  .page-intro h1 {
    font-size: 30px;
    line-height: 1.06;
  }

  .lead,
  .section-heading p,
  .copy-block p,
  .split p:not(.eyebrow),
  .contact-band p {
    font-size: 16px;
    line-height: 1.55;
  }

  .service-card div,
  .sale-card-body,
  .contact-card,
  .feed-fallback,
  .blog-card div {
    padding: 18px;
  }

  .service-card img,
  .offer-card img,
  .sale-card img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .offer-card h2 {
    font-size: 34px;
  }

  .offer-card p:not(.price) {
    max-width: none;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-band-inner {
    align-items: stretch;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-grid > div {
    padding-bottom: 20px;
    border-bottom: 1px solid #262626;
  }

  .footer-grid > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
    padding-top: 18px;
    text-align: center;
  }

  .footer-bottom .footer-copy {
    max-width: 32ch;
    color: #d7d7d7;
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-bottom .footer-credit-line,
  .footer-bottom .footer-credit {
    display: inline;
    font-size: 10px;
    line-height: inherit;
  }

  .footer-bottom .footer-links {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }

  .footer-bottom .footer-links a {
    display: inline-block;
    line-height: 1.3;
  }

  .floating-ebay {
    right: 10px;
    bottom: 10px;
    min-height: 42px;
    max-width: calc(100vw - 20px);
    padding: 9px 11px;
    font-size: 11px;
  }

  .floating-ebay img {
    width: 42px;
  }

  .cookie-banner {
    left: 10px;
    bottom: 66px;
    width: calc(100vw - 20px);
    gap: 10px;
    padding: 11px;
  }

  .cookie-banner p {
    font-size: 12px;
    line-height: 1.35;
  }

  .cookie-banner .button {
    min-height: 40px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .nav-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand img {
    width: 78px;
    height: 64px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 460px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section-heading h2,
  .copy-block h2,
  .split h2,
  .contact-band h2,
  .page-intro h1 {
    font-size: 27px;
  }

  .offer-card h2 {
    font-size: 30px;
  }

  .offer-card .price {
    font-size: 20px;
  }

  .section-inner,
  .footer-grid,
  .footer-bottom {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* v20: contact form copy alignment */
.contact-form-section {
  padding-top: 46px;
}

.contact-form-section .section-inner.split {
  align-items: start;
}

.contact-form-section .section-inner.split > div:first-child {
  padding-top: 34px;
}

@media (max-width: 980px) {
  .contact-form-section .section-inner.split > div:first-child {
    padding-top: 0;
  }
}

/* v21: mobile review carousel and parts image cleanup */
.google-reviews-widget .google-review-slide:not(.is-active),
.review-carousel .google-review-slide:not(.is-active) {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.google-reviews-widget .google-review-slide.is-active,
.review-carousel .google-review-slide.is-active {
  display: grid;
  opacity: 1;
  visibility: visible;
}

.google-reviews-widget .review-slides {
  min-height: 0;
}

@media (max-width: 680px) {
  .google-rating-panel,
  .google-reviews-widget .review-carousel {
    padding: 18px;
  }

  .google-reviews-widget .review-carousel {
    min-height: 0;
    gap: 16px;
  }

  .google-reviews-widget .google-review-slide {
    gap: 12px;
  }

  .google-reviews-widget .google-review-slide p {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
  }

  .google-reviews-widget .google-review-slide footer {
    display: grid;
    gap: 5px;
    padding-top: 12px;
  }

  .google-reviews-widget .review-dots {
    flex-wrap: wrap;
    gap: 8px;
  }

  .google-reviews-widget .review-dots button {
    width: 24px;
  }
}

/* v30: compact scrolling header with the brand in the home hero */
.site-header {
  position: relative;
  top: auto;
  z-index: 30;
  background: #060606;
  box-shadow: none;
}

.nav-shell {
  min-height: 52px;
  padding: 3px 22px;
  justify-content: flex-end;
}

.site-nav {
  flex: 0 1 auto;
  justify-content: flex-end;
}

.site-nav a {
  padding: 8px 11px;
}

.hero-logo {
  position: absolute;
  z-index: 2;
  top: 52px;
  right: max(8px, calc((100vw - var(--max)) / 2 + 6px));
  display: block;
  width: 220px;
  height: 174px;
  text-decoration: none;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .52));
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 52px;
    padding: 3px 18px;
  }

  .site-nav {
    flex: none;
  }

  .hero-logo {
    top: 40px;
    right: 10px;
    width: 160px;
    height: 126px;
  }
}

@media (max-width: 680px) {
  .nav-shell {
    min-height: 52px;
    padding: 3px 14px;
  }

  .hero-logo {
    top: 10px;
    left: 50%;
    right: auto;
    width: 90px;
    height: 72px;
    transform: translateX(-50%);
  }
}

@media (max-width: 420px) {
  .hero-logo {
    top: 10px;
    left: 50%;
    right: auto;
    width: 88px;
    height: 70px;
    transform: translateX(-50%);
  }
}

/* v31: visible staging marker for the sample site */
body::before {
  content: "SAMPLE\A WEBSITE";
  position: fixed;
  z-index: 20;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, .12);
  font-size: clamp(72px, 15vw, 250px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .88;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%) rotate(-24deg);
  text-align: center;
  white-space: pre-line;
}
