:root {
  --hwy-blue: #1A4659;
  --hwy-blue-deep: #123746;
  --hwy-blue-mid: #285F73;
  --hwy-blue-soft: #E7F1F5;
  --hwy-blue-soft-2: #D8EAF0;
  --hwy-blue-line: #B7D3DE;
  --hwy-green: #2F6579;
  --hwy-yellow: #CFC79A;
  --hwy-yellow-soft: #E6E0BF;
  --hwy-red: #285F73;
  --asphalt-dark: #172A32;
  --asphalt-light: #F3F8FA;
  --white: #FAFCFD;
  --reflective: #D6E3E9;
  --text-main: #1E2E35;
  --text-muted: #4E646E;
  --max-width: 1440px;
  --content-width: 1280px;
  --radius: 10px;
  --shadow: 0 4px 12px rgba(18, 55, 70, 0.08);
  --shadow-strong: 0 14px 28px rgba(18, 55, 70, 0.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Overpass', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--asphalt-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

button,
input,
select,
textarea { font: inherit; }

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

:focus-visible {
  outline: 3px solid #A9CBD6;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: var(--hwy-blue-soft-2);
  color: var(--hwy-blue-deep);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 900;
  z-index: 9999;
}

.skip-link:focus { left: 10px; }

h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
}

h2 {
  color: var(--hwy-blue);
  display: inline-block;
  border-bottom: 4px solid var(--hwy-blue-line);
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 2rem;
}

h3 { line-height: 1.2; }

p { margin-top: 0; }

.subtitle {
  margin-top: 0;
  color: var(--text-muted);
  font-size: 1.25rem;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

section { padding: 80px 20px; }

.section-header {
  text-align: center;
  margin: 0 auto 50px;
  max-width: 850px;
}

.site-header {
  background-color: var(--hwy-blue);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 4px 18px rgba(18, 55, 70, 0.18);
  border-bottom: 2px solid rgba(215, 234, 241, 0.9);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  flex: 0 0 auto;
  min-width: max-content;
}

.brand-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

.brand-text {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
  margin-left: auto;
}

.nav-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 18px 8px;
  color: rgba(250,252,253,0.88);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.nav-tab:hover,
.nav-tab.active {
  background-color: rgba(231, 241, 245, 0.11);
  color: var(--white);
  border-bottom-color: var(--hwy-yellow-soft);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  background-color: var(--hwy-blue-soft-2);
  color: var(--hwy-blue-deep);
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 900;
  margin-left: 6px;
  border: 1px solid rgba(250,252,253,0.35);
  box-shadow: 0 1px 0 rgba(255,255,255,0.16) inset;
  text-align: center;
  white-space: nowrap;
}

.nav-quote,
.nav-cta.active {
  background-color: var(--hwy-yellow-soft);
  color: var(--hwy-blue-deep);
  border-color: rgba(250,252,253,0.45);
}

.nav-call {
  background-color: #275F73;
  color: var(--white);
  border-color: rgba(231, 241, 245, 0.35);
}

.nav-cta:hover {
  background-color: #F2EACF;
  color: var(--hwy-blue-deep);
  transform: translateY(-1px);
}

.nav-call:hover {
  background-color: #356F83;
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 12px;
}

.mobile-nav { display: none; }
.mobile-nav.open { display: flex; }

.hero {
  background: linear-gradient(rgba(26, 70, 89, 0.72), rgba(26, 70, 89, 0.72)), url('../images/shop.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px 120px;
  text-align: center;
}

.hero-home { padding-top: 120px; }

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  margin: 40px auto 16px;
  max-width: 1050px;
  letter-spacing: 3px;
  overflow-wrap: anywhere;
}

.hero .subtitle {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: #EAF3F6;
}

.signage-badge {
  display: inline-block;
  background-color: #2B6477;
  color: #F8FBFC;
  padding: 5px 15px;
  border: 2px solid #D7E9EE;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  padding: 15px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--hwy-red);
  color: white;
  border-color: rgba(255,255,255,0.72);
}

.btn-primary:hover {
  background-color: #1E5366;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border-color: #D7E9EE;
}

.btn-secondary:hover {
  background-color: var(--hwy-blue-soft);
  color: var(--hwy-blue-deep);
}

.btn-yellow {
  background-color: var(--hwy-yellow-soft);
  color: var(--hwy-blue-deep);
  border-color: rgba(26, 70, 89, 0.35);
}

.btn-yellow:hover {
  background-color: #F3EBD2;
  transform: translateY(-2px);
}

.btn-blue {
  background-color: var(--hwy-blue);
  color: white;
  border-color: var(--hwy-blue);
}

.btn-blue:hover {
  background-color: var(--hwy-blue-deep);
  transform: translateY(-2px);
}

.btn-static {
  background-color: transparent;
  color: white;
  border-color: white;
  -webkit-tap-highlight-color: transparent;
}

.btn-static:hover,
.btn-static:active,
.btn-static:focus {
  background-color: transparent;
  color: white;
  transform: none;
}

.service-note {
  margin-top: 30px;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #fff;
}

.warning-icon { color: var(--hwy-yellow-soft); }

.no-rv-banner {
  max-width: 850px;
  margin: 0 auto 50px;
  background-color: #DDEEF4;
  color: var(--hwy-blue-deep);
  padding: 15px;
  text-align: center;
  font-weight: 900;
  border-radius: var(--radius);
  border: 1px solid var(--hwy-blue-line);
  box-shadow: var(--shadow);
  text-transform: uppercase;
}

.no-rv-banner p {
  margin: 10px 0 0;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
}

.no-rv-banner ul {
  max-width: 520px;
  margin: 12px auto 0;
  text-align: left;
  font-size: 0.95rem;
}

.shop-rate-banner {
  background: var(--white);
  border: 1px solid var(--hwy-blue-line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.shop-rate-banner h3 {
  color: var(--hwy-blue);
  margin-bottom: 5px;
  font-size: 1.6rem;
}

.shop-rate-banner p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 25px;
}

.service-grid-wide { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--reflective);
  border-top: 6px solid var(--hwy-blue);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card:hover { transform: translateY(-4px); }

.card h3 {
  color: var(--hwy-blue);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card p { margin-bottom: 0; }

.card-list {
  padding-left: 20px;
  margin: 15px 0 0;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.card-list li { margin-bottom: 5px; }

.card-pricing {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--reflective);
  font-weight: 900;
  color: var(--hwy-blue);
  line-height: 1.5;
}

.card-green { border-top-color: var(--hwy-green); }

.parts-section {
  background-color: var(--white);
  border-top: 1px solid var(--reflective);
}

.parts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.parts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.parts-list li {
  margin-bottom: 10px;
  color: var(--text-muted);
  font-weight: 700;
}

.check {
  color: var(--hwy-green);
  margin-right: 10px;
  font-weight: 900;
}

.parts-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.parts-image-grid img:first-child { grid-column: 1 / -1; }

.parts-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid var(--reflective);
  border-radius: var(--radius);
  background-color: var(--asphalt-light);
}

.showcase-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 4px solid var(--hwy-blue-line);
}

.showcase-img-white { border-color: #D7E9EE; }

.dw-section {
  background-color: var(--hwy-blue);
  color: var(--white);
  background-image: linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0));
}

.dw-section h2 {
  color: var(--white);
  border-color: #D7E9EE;
}

.dw-section p { color: #E9F2F5; }
.dw-section .subtitle { color: var(--white); }

.dw-specs {
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.22);
  margin-top: 20px;
}

.dw-specs ul {
  padding-left: 20px;
  margin: 0;
}

.about-section { background-color: #F4F8FA; }

.about-family-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 50px;
  border-left: 6px solid var(--hwy-blue);
  border-top: 1px solid var(--reflective);
  border-right: 1px solid var(--reflective);
  border-bottom: 1px solid var(--reflective);
}

.about-family-layout.large-photo { grid-template-columns: 350px minmax(0, 1fr); }
.about-family-layout.top-accent { border-left-width: 1px; border-top: 6px solid var(--hwy-blue); }

.family-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--hwy-blue-soft);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.info-box {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--reflective);
  border-left: 4px solid var(--hwy-green);
  box-shadow: var(--shadow);
}

.info-box h3 { color: var(--hwy-blue); }

.quote-panel {
  max-width: 760px;
  margin: 50px auto 0;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--hwy-blue-line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.quote-panel h3 { color: var(--hwy-blue); }

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 36px;
  align-items: start;
}

.quote-aside {
  background: var(--hwy-blue-soft);
  color: var(--hwy-blue-deep);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--hwy-blue-line);
}

.quote-aside h2 {
  color: var(--hwy-blue);
  border-color: var(--hwy-blue-line);
  font-size: 1.75rem;
}

.quote-aside .parts-list li { color: var(--text-main); }
.quote-aside .check { color: var(--hwy-green); }

.quote-form-card {
  background: var(--white);
  border: 1px solid var(--reflective);
  border-top: 6px solid var(--hwy-green);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-strong);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  color: var(--hwy-blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 2px solid #C9DDE5;
  border-radius: 7px;
  padding: 13px 14px;
  background: #fff;
  color: var(--text-main);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--hwy-blue);
  outline: 3px solid rgba(169, 203, 214, 0.65);
}

.form-help {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 8px 0 0;
}

.form-help a {
  color: var(--hwy-blue);
  font-weight: 900;
  text-decoration: underline;
}

.hidden-field,
.netlify-hidden-form {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.faq-section {
  background: #F4F8FA;
  border-top: 1px solid var(--reflective);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--reflective);
  border-left: 4px solid var(--hwy-blue);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.faq-list summary {
  color: var(--hwy-blue);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-list p { margin: 14px 0 0; }

.cta-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  background: var(--hwy-blue);
  color: white;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #D7E9EE;
}

.cta-box h2 {
  color: var(--white);
  border-bottom-color: #D7E9EE;
}

.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.page-intro {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.discount-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.discount-box h3 {
  color: var(--hwy-green);
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.discount-box p {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 10px 0 0;
}

.discount-box span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 15px;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.mb-0 { margin-bottom: 0; }

.site-footer {
  background-color: var(--asphalt-dark);
  color: #C7D4DA;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
}

.site-footer .footer-tagline {
  font-size: 0.8rem;
  opacity: 0.78;
  margin-bottom: 20px;
}

.geo-footer {
  background-color: #10232B;
  color: #B4C5CC;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.75rem;
  border-top: 1px solid rgba(215,234,241,0.18);
}

.geo-footer strong {
  display: block;
  margin-bottom: 5px;
  color: #E0EDF2;
}

.geo-footer strong + span { display: block; }
.geo-footer .neighborhood-label { margin-top: 10px; }

@media (max-width: 1360px) {
  .brand-text { font-size: 1.04rem; letter-spacing: 0.045em; }
  .brand-logo { width: 44px; height: 44px; }
  .nav-container { padding: 0 18px; gap: 12px; }
  .nav-tab { padding-left: 7px; padding-right: 7px; font-size: 0.7rem; }
  .nav-cta { padding-left: 10px; padding-right: 10px; font-size: 0.82rem; margin-left: 4px; }
}

@media (max-width: 1240px) {
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-nav {
    flex-direction: column;
    background: var(--hwy-blue);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    z-index: 1000;
    box-shadow: 0 10px 16px rgba(18,55,70,0.22);
  }
  .mobile-nav a {
    color: #FFFFFF;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-weight: 800;
    text-transform: uppercase;
  }
  .mobile-nav a:last-child { border-bottom: 0; }
  .mobile-nav .mobile-call,
  .mobile-nav .mobile-quote { color: var(--hwy-yellow-soft); }
}

@media (max-width: 900px) {
  section { padding: 64px 20px; }
  .section-header { margin-bottom: 30px; }
  .hero,
  .hero-home { padding: 80px 20px; }
  .hero h1 {
    margin-top: 26px;
    letter-spacing: 1px;
  }
  .parts-layout,
  .about-family-layout,
  .about-family-layout.large-photo,
  .quote-layout { grid-template-columns: 1fr; }
  .about-family-layout,
  .about-family-layout.large-photo { text-align: center; }
  .family-img {
    max-width: 300px;
    margin: 0 auto;
  }
  .quote-aside { text-align: left; }
}

@media (max-width: 640px) {
  .nav-container { padding: 0 14px; min-height: 70px; }
  .brand-text { font-size: 0.98rem; }
  .brand-logo { width: 42px; height: 42px; }
  h2 { font-size: 1.7rem; }
  .subtitle { font-size: 1.08rem; }
  .btn-group { align-items: stretch; }
  .btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.98rem;
  }
  .service-grid,
  .service-grid-wide,
  .faq-list,
  .form-grid { grid-template-columns: 1fr; }
  .parts-image-grid { grid-template-columns: 1fr; }
  .about-family-layout,
  .quote-form-card,
  .quote-aside,
  .cta-box,
  .quote-panel { padding: 24px 18px; }
  .form-field.full { grid-column: auto; }
}

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

.form-status {
  min-height: 1.4em;
  color: var(--hwy-blue);
  font-weight: 900;
  margin: 12px 0 0;
}

button[disabled],
.btn[disabled] {
  cursor: wait;
  opacity: 0.72;
}


/* Production header and low-eye-strain palette overrides - 20260501-prod2 */
.site-header {
  background-color: var(--hwy-blue);
  color: var(--white);
  border-bottom: 1px solid rgba(215, 234, 241, 0.86);
}

.nav-container {
  min-height: 74px;
  padding: 0 clamp(16px, 2.1vw, 30px);
  gap: 14px;
}

.brand {
  gap: 10px;
  min-width: 0;
  max-width: 280px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.brand-text {
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  letter-spacing: 0.065em;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-nav {
  gap: 4px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.nav-tab {
  min-height: 74px;
  padding: 0 9px;
  font-size: 0.75rem;
  letter-spacing: 0.015em;
  border-bottom-width: 3px;
}

.nav-tab:hover,
.nav-tab.active {
  background-color: rgba(231, 241, 245, 0.14);
  border-bottom-color: #CFE4EA;
}

.nav-cta {
  min-height: 42px;
  padding: 9px 13px;
  margin-left: 5px;
  border-radius: 7px;
  font-size: 0.86rem;
  color: var(--hwy-blue-deep);
  background-color: #DCEBF0;
  border: 1px solid rgba(215, 234, 241, 0.95);
  box-shadow: none;
}

.nav-quote,
.nav-cta.active {
  background-color: #D8EAF0;
  color: var(--hwy-blue-deep);
  border-color: #BFD7E2;
}

.nav-call {
  background-color: #2B6477;
  color: #F8FBFC;
  border-color: rgba(215, 234, 241, 0.65);
}

.nav-cta:hover,
.nav-quote:hover {
  background-color: #E7F1F5;
  color: var(--hwy-blue-deep);
}

.nav-call:hover {
  background-color: #356F83;
  color: #F8FBFC;
}

.short-label {
  display: none;
}

.hero {
  background: linear-gradient(rgba(26, 70, 89, 0.70), rgba(26, 70, 89, 0.70)), url('../images/shop.webp');
}

.signage-badge {
  background-color: #2B6477;
  border-color: #D7E9EE;
  color: #F8FBFC;
}

.btn-primary,
.btn-blue {
  background-color: #2B6477;
  border-color: #2B6477;
  color: #FFFFFF;
}

.btn-primary:hover,
.btn-blue:hover {
  background-color: #1A4659;
  border-color: #1A4659;
}

.btn-yellow {
  background-color: #DCEBF0;
  color: var(--hwy-blue-deep);
  border-color: #BFD7E2;
}

.btn-yellow:hover {
  background-color: #E7F1F5;
  color: var(--hwy-blue-deep);
}

.warning-icon {
  color: #D8EAF0;
}

.no-rv-banner,
.shop-rate-banner,
.quote-panel,
.quote-form-card,
.quote-aside,
.card,
.parts-box,
.cta-box {
  box-shadow: 0 3px 12px rgba(18, 55, 70, 0.08);
}

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

.form-status {
  min-height: 0;
}

@media (max-width: 1480px) {
  .nav-item-new .wide-label,
  .nav-call .wide-label {
    display: none;
  }

  .nav-item-new .short-label,
  .nav-call .short-label {
    display: inline;
  }

  .nav-tab {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 0.72rem;
  }

  .nav-cta {
    padding-left: 11px;
    padding-right: 11px;
  }

  .brand {
    max-width: 245px;
  }
}

@media (max-width: 1320px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav {
    flex-direction: column;
    background: var(--hwy-blue);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    z-index: 1000;
    box-shadow: 0 10px 16px rgba(18,55,70,0.22);
  }

  .mobile-nav a {
    color: #FFFFFF;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-nav .mobile-call,
  .mobile-nav .mobile-quote {
    color: #E1EEF3;
  }
}

@media (min-width: 1321px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-menu-btn,
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .brand-text {
    font-size: 0.9rem;
    letter-spacing: 0.045em;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }
}
