:root {
  /* Brand colors (from georgiarvoutlet.com) */
  --brand-red: #ae2731;
  --brand-red-dark: #841e25;
  --brand-dark: #252525;
  --brand-text: #333333;
  --brand-light: #f5f5f5;
  --text-muted: #707070;
  --border: #e6e6e6;

  /* Brand fonts */
  --font-body: "Roboto Condensed", Helvetica, Arial, sans-serif;
  --font-heading: Poppins, Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--brand-text);
}
h1,
h2,
h3,
h4,
.btn {
  font-family: var(--font-heading);
}
a {
  text-decoration: none;
}
:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 2px;
}

.section {
  padding: 5rem 0;
}
.bg-brand-light {
  background: var(--brand-light);
}

.section-title {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--brand-dark);
}
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  background: var(--brand-red);
  margin-top: 0.6rem;
}
.text-center .section-title::after {
  margin-inline: auto;
}

.btn {
  border-radius: 0;
  font-weight: 700;
  white-space: nowrap;
}
.btn-brand {
  background: var(--brand-red);
  color: #fff;
  border: 0;
}
.btn-brand:hover,
.btn-brand:focus {
  background: var(--brand-red-dark);
  color: #fff;
}
.btn-outline-brand {
  border: 2px solid var(--brand-dark);
  color: var(--brand-dark);
}
.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: var(--brand-dark);
  color: #fff;
}

.top-line {
  height: 6px;
  background: var(--brand-red);
}
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header .navbar-brand img {
  height: 64px;
  width: auto;
}
.site-header .nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-dark);
  padding: 0.5rem 0.9rem !important;
}
.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: var(--brand-red);
}
.dropdown-menu {
  border-radius: 0;
  border-top: 3px solid var(--brand-red);
}
.dropdown-item:active {
  background: var(--brand-red);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 10rem;
  background-color: var(--brand-dark);
  background-image:
    linear-gradient(
      90deg,
      rgba(37, 37, 37, 0.85) 0%,
      rgba(37, 37, 37, 0.4) 60%,
      rgba(37, 37, 37, 0.2) 100%
    ),
    var(--hero-img, none);
  background-size: cover;
  background-position: center 80%;
}
.hero-box {
  position: relative;
  z-index: 2;
  max-width: 600px;
  background: #fff;
  border-left: 8px solid var(--brand-red);
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.hero-box h1 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.02;
  color: var(--brand-dark);
}
.hero-box h1 span {
  color: var(--brand-red);
}
.hero-box .lead {
  font-size: 1.15rem;
}
.hero-search .form-select {
  height: 50px;
  border-radius: 0;
}
.hero-search .btn {
  height: 50px;
}

.burst {
  position: absolute;
  z-index: 2;
  right: 8%;
  top: 2.5rem; 
  width: 240px;
  height: 240px;
}
.burst-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotate(-8deg);
  animation: burst-in 0.8s cubic-bezier(0.2, 1.4, 0.4, 1) 0.3s both;
}
.burst svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}
.burst p {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 2.8rem;
  text-align: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.1;
  text-transform: uppercase;
}
@keyframes burst-in {
  from {
    transform: rotate(-60deg) scale(0);
  }
  to {
    transform: rotate(-8deg) scale(1);
  }
}

.hero-mountains {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 130px;
  z-index: 1;
}

.cat-tile {
  display: block;
  text-align: center;
  padding: 1rem 1rem 1.5rem;
  color: inherit;
}
.cat-img {
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cat-img img {
  max-height: 120px;
  max-width: 100%;
  transition: transform 0.5s ease;
}
.cat-img .bi {
  font-size: 4rem;
  color: #c9c9c9;
  transition: transform 0.5s ease;
}
.cat-tile:hover .cat-img img,
.cat-tile:hover .cat-img .bi {
  transform: translateX(14px);
}
.cat-tile h3 {
  margin: 1rem 0 0;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--brand-red);
}
.cat-tile h3::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  margin: 0.5rem auto 0;
  background: var(--brand-dark);
  transition: width 0.3s;
}
.cat-tile:hover h3::after,
.cat-tile:focus h3::after {
  width: 50px;
}
.cats {
  border-bottom: 6px solid var(--brand-red);
}

.price-tag {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.6rem 1.5rem 3rem;
  background: var(--brand-dark);
  color: #fff;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 24px 100%, 0 50%);
  transition: background 0.25s;
}
.price-tag::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-light);
  transform: translateY(-50%);
}
.price-tag .amt {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.1;
}
.price-tag small {
  opacity: 0.75;
  font-size: 0.9rem;
}
.price-tag .bi {
  margin-left: auto;
  font-size: 1.4rem;
  transition: transform 0.25s;
}
.price-tag:hover,
.price-tag:focus {
  background: var(--brand-red);
  color: #fff;
}
.price-tag:hover .bi {
  transform: translateX(5px);
}

.rv-card {
  border-radius: 0;
  border-color: var(--border);
  transition: box-shadow 0.25s;
}
.rv-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.rv-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  min-height: 2.5em;
  color: var(--brand-dark);
}
.rv-card .badge {
  border-radius: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.4rem 0.6rem;
}
.rv-card .badge-warranty {
  background: var(--brand-red);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.rv-card__specs-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  background: var(--brand-light);
  border: 1px solid var(--border);
  border-radius: 50rem;
  font-size: 0.85rem;
  color: var(--brand-text);
}
.rv-card__specs-pill svg,
.rv-card__specs-pill .bi {
  flex: none;
  color: var(--brand-red);
}
.rv-card__specs-pill span + svg,
.rv-card__specs-pill span + .bi {
  margin-left: 0.6rem;
}

.rv-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.trust-band {
  background: var(--brand-dark);
  color: #fff;
}
.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.trust-icon {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  font-size: 1.5rem;
}
.trust-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
}
.trust-item p {
  margin: 0;
  color: #cfcfcf;
}

.reviews-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.review {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}
.review::before {
  content: "\201C";
  position: absolute;
  top: -0.6rem;
  right: 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  line-height: 1;
  color: #f1d9db;
}
.review .stars {
  position: relative;
  color: #e0a100;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.review blockquote {
  position: relative;
  flex: 1;
  margin: 0 0 1.25rem;
}
.review blockquote p {
  margin: 0;
  color: #444;
}

.review--featured {
  grid-column: 1 / -1;
  padding: 2.25rem 2.5rem;
  background: var(--brand-dark);
  border: 0;
  border-left: 8px solid var(--brand-red);
}
.review--featured::before {
  color: var(--brand-red);
  font-size: 8rem;
  opacity: 0.9;
}
.review--featured blockquote p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.55;
  color: #fff;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
}
.review-author b {
  display: block;
  font-family: var(--font-heading);
  color: var(--brand-dark);
  line-height: 1.2;
}
.review-author small {
  color: var(--text-muted);
}
.review--featured .review-author b {
  color: #fff;
}
.review--featured .review-author small {
  color: #bdbdbd;
}

/* ---------- Shared: small red label above headings ---------- */
.kicker {
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-red);
}

.brands {
  overflow: hidden;
}
.brands-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 3rem;
  margin-bottom: 2.5rem;
}
.brands-sub {
  max-width: 420px;
  margin: 0;
  color: var(--text-muted);
}

.brand-marquee {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.brand-track {
  display: flex;
  width: max-content;
  animation: brand-scroll 40s linear infinite;
}
.brand-marquee:hover .brand-track,
.brand-marquee:focus-within .brand-track {
  animation-play-state: paused;
}
@keyframes brand-scroll {
  to {
    transform: translateX(-50%);
  } 
}

.brand-list {
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0.5rem 0.625rem 1rem;
  list-style: none;
}
.brand-chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 110px;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.brand-chip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--brand-red);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.brand-chip:hover,
.brand-chip:focus {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}
.brand-chip:hover::after,
.brand-chip:focus::after {
  transform: scaleX(1);
}

.brand-chip__logo {
  max-width: 100%;
  max-height: 56px;
  filter: grayscale(100%);
  opacity: 0.7;
  mix-blend-mode: multiply; /* hides white boxes baked into some logos (e.g. Vibe) */
  transition:
    filter 0.25s,
    opacity 0.25s;
}
.brand-chip:hover .brand-chip__logo,
.brand-chip:focus .brand-chip__logo {
  filter: none;
  opacity: 1;
}

.brand-chip__logo.logo-light,
.brand-chip:hover .brand-chip__logo.logo-light,
.brand-chip:focus .brand-chip__logo.logo-light {
  filter: invert(1) grayscale(100%);
}

.about-collage {
  position: relative;
  padding: 0 2.5rem 2.5rem 0;
}
.about-collage::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 70%;
  background: var(--brand-red);
}
.about-photo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}
.about-seal {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 150px;
  height: 150px;
  transform: rotate(-10deg);
}
.about-seal svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}
.about-seal p {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}
.about-seal small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brand-dark);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}
.about-facts li {
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 4px solid var(--brand-red);
}
.fact-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand-dark);
}
.fact-num small {
  font-size: 0.9rem;
  font-weight: 700;
}
.fact-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.visit-list {
  list-style: none;
  padding: 0;
}
.visit-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.visit-list .bi {
  font-size: 1.25rem;
  color: var(--brand-red);
}
.visit-list a {
  color: var(--brand-dark);
  font-weight: 500;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

.footer-mountains {
  display: block;
  width: 100%;
  height: 70px;
  background: var(--brand-light);
}
.site-footer {
  background: var(--brand-dark);
  color: #cbd5e1;
  font-size: 0.9rem;
}
.site-footer h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.site-footer a {
  color: #cbd5e1;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer li {
  margin-bottom: 0.5rem;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.25s;
}
.social a:hover {
  background: var(--brand-red);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}
.footer-bottom a {
  margin-left: 1rem;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--brand-dark);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.6rem 0;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}
.mobile-bar a:first-child {
  background: var(--brand-red);
}
.mobile-bar .bi {
  font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .hero {
    padding: 10rem 0 7rem;
  }
  .burst {
    right: 1rem;
    top: 1rem;
    margin-top: 0;
    width: 140px;
    height: 140px;
  }
  .burst p {
    font-size: 0.7rem;
    padding: 1.6rem;
  }
  .hero-mountains {
    height: 70px;
  }
  body {
    padding-bottom: 64px;
  } /* room for the mobile action bar */
}
@media (max-width: 767.98px) {
  .section {
    padding: 3.5rem 0;
  }
  .hero-box {
    padding: 1.75rem;
  }
  .site-header .navbar-brand img {
    height: 50px;
  }
  .footer-bottom a {
    margin: 0 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review--featured {
    padding: 1.75rem;
  }
  .review--featured blockquote p {
    font-size: 1.05rem;
  }
  .about-collage {
    padding: 0 1.5rem 1.5rem 0;
  }
  .about-seal {
    top: -24px;
    left: -8px;
    width: 110px;
    height: 110px;
  }
  .about-seal p {
    font-size: 0.85rem;
  }
  .about-facts {
    grid-template-columns: 1fr;
  }
  .brand-chip {
    width: 170px;
    height: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .brand-list--copy {
    display: none;
  }
}
