:root {
  --qs-yellow: #F4C400;
  --qs-charcoal: #232629;
  --link-blue: #0000EE;
  --white: #FFFFFF;
  --light-gray: #F2F2F2;
  --mid-gray: #6D6D6D;
  --accent-red: #D7312D;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--white);
  color: var(--qs-charcoal);
  font-family: "Open Sans", Arial, sans-serif;
}

a { color: var(--link-blue); }

.container { width: min(1180px, 92%); }

.qs-topbar {
  background: var(--white);
  border-top: 5px solid var(--qs-yellow);
  border-bottom: 1px solid #ddd;
}

.qs-topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.qs-brand,
.qs-footer-brand,
.qs-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--qs-charcoal);
  font-weight: 800;
  text-transform: uppercase;
}

.qs-brand:hover { color: var(--qs-charcoal); }

.qs-brand-text {
  text-transform: none;
  font-size: 1.05rem;
}

.qs-mark {
  display: inline-flex;
  align-items: center;
}

.qs-mark span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
}

.qs-mark span:first-child {
  background: var(--qs-yellow);
  color: var(--qs-charcoal);
}

.qs-mark span:last-child {
  margin-left: -4px;
  background: var(--qs-charcoal);
  color: var(--white);
}

.qs-mark-large span {
  width: 54px;
  height: 54px;
  font-size: 1.7rem;
}

.qs-phone {
  color: var(--qs-charcoal);
  font-weight: 700;
}

.qs-nav {
  background: var(--qs-charcoal);
  box-shadow: none;
  min-height: auto;
  height: auto;
  line-height: 1.4;
}

.qs-nav .nav-wrapper {
  min-height: auto;
  height: auto;
}

.qs-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0;
  padding: 10px 0;
}

.qs-menu li { list-style: none; }

.qs-menu a {
  display: block;
  color: var(--white);
  padding: 8px 10px;
  font-weight: 700;
}

.qs-menu a:hover {
  background: rgba(244, 196, 0, .18);
}

.qs-submenu {
  margin: 0;
  padding: 0 0 0 12px;
}

.qs-submenu a {
  font-size: .88rem;
  font-weight: 600;
  opacity: .88;
}

.qs-hero {
  background: linear-gradient(90deg, rgba(244,196,0,.96), rgba(244,196,0,.82)), url("/wp-content/uploads/2015/11/landing_furgoneta.jpg") right center / contain no-repeat;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.qs-hero h1 {
  margin: 28px 0 18px;
  color: var(--qs-charcoal);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.02;
  font-weight: 800;
}

.qs-lead {
  color: var(--qs-charcoal);
  font-size: 1.22rem;
  line-height: 1.55;
}

.qs-cta,
.qs-footer-cta {
  background: var(--accent-red);
  color: var(--white);
  font-weight: 800;
}

.qs-cta:hover,
.qs-footer-cta:hover {
  background: #b92320;
  color: var(--white);
}

.qs-vehicle-panel {
  min-height: 360px;
}

.qs-main-section {
  padding: 46px 0 64px;
}

.qs-page-title {
  background: var(--light-gray);
  border-bottom: 4px solid var(--qs-yellow);
  padding: 34px 0;
}

.qs-page-title h1,
.qs-article h1,
.qs-article h2,
.qs-card h3,
.qs-category-card h2 {
  color: var(--qs-charcoal);
  font-weight: 800;
}

.qs-content-panel,
.qs-article,
.qs-sidebar,
.qs-card,
.qs-product-card,
.qs-category-card {
  background: var(--white);
  border: 1px solid #e2e2e2;
}

.qs-content-panel,
.qs-article,
.qs-sidebar {
  padding: 28px;
}

.qs-product-card {
  min-height: 128px;
  display: flex;
  align-items: end;
  padding: 18px;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--qs-charcoal), #3d4247);
  border-bottom: 6px solid var(--qs-yellow);
}

.qs-product-card span {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
}

.qs-listing-grid {
  display: grid;
  gap: 16px;
}

.qs-card {
  display: grid;
  grid-template-columns: minmax(0, 160px) 1fr;
  gap: 16px;
  padding: 18px;
  margin-bottom: 16px;
}

.qs-card img,
.qs-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.qs-figure {
  margin: 24px 0;
}

.qs-figure figcaption {
  color: var(--mid-gray);
  font-size: .9rem;
  margin-top: 8px;
}

.qs-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.qs-list li {
  margin: 0 0 8px;
}

.qs-sidebar {
  background: var(--light-gray);
  border-top: 5px solid var(--qs-yellow);
}

.qs-sidebar h3 {
  margin-top: 0;
  color: var(--accent-red);
  font-weight: 800;
}

.qs-breadcrumbs {
  margin-bottom: 12px;
}

.qs-breadcrumbs a {
  margin-right: 12px;
  font-weight: 700;
}

.toc {
  background: var(--light-gray);
  padding: 18px 22px;
  margin: 24px 0;
}

.qs-footer {
  background: var(--qs-charcoal);
  color: var(--white);
  padding: 42px 0;
  border-top: 8px solid var(--qs-yellow);
}

.qs-footer h3,
.qs-footer a {
  color: var(--white);
}

.qs-footer p {
  color: #ddd;
}

.qs-footer-cta {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 2px;
}

.inline-image { max-width: 120px; }
.qs-table-wrap { overflow: auto; }
blockquote { border-left-color: var(--qs-yellow); color: var(--mid-gray); }

@media (max-width: 800px) {
  .qs-topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .qs-hero {
    min-height: 520px;
    background-size: cover;
    background-position: center bottom;
  }

  .qs-menu {
    display: block;
  }

  .qs-menu a {
    padding: 9px 0;
  }

  .qs-card {
    grid-template-columns: 1fr;
  }
}
