/* Backwoods About Us V2 - V77 copy + spacing polish */
:root {
  --bwav2-maroon: #8b0f16;
  --bwav2-maroon-dark: #65070c;
  --bwav2-ink: #202938;
  --bwav2-muted: #5e6878;
  --bwav2-line: #ddd7cd;
  --bwav2-soft: #faf8f4;
  --bwav2-white: #fff;
  --bwav2-wrap: 1000px;
  --bwav2-gap: 24px;
}

body.bwav2-about-template .site-content > .ast-container,
body.bwav2-about-template .site-content .ast-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.bwav2-site,
.bwav2-site * {
  box-sizing: border-box;
}

.bwav2-site {
  color: var(--bwav2-ink);
  background: #fff;
  font-family: inherit;
}

.bwav2-wrap {
  width: min(var(--bwav2-wrap), calc(100% - 40px));
  margin: 0 auto;
}

.bwav2-hero {
  padding: 18px 0 0;
}

.bwav2-kicker {
  margin: 0 0 9px;
  color: var(--bwav2-maroon);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.bwav2-site h1,
.bwav2-site h2,
.bwav2-site h3,
.bwav2-site p {
  font-family: inherit;
}

.bwav2-site h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--bwav2-ink);
}

.bwav2-lede {
  margin: 14px 0 22px;
  max-width: 740px;
  font-size: 17px;
  line-height: 1.58;
  color: var(--bwav2-muted);
}

.bwav2-hero-image {
  margin: 0;
  border: 2px solid var(--bwav2-line);
  background: #fff;
  box-shadow: 0 8px 20px rgba(32, 41, 56, .045);
  overflow: hidden;
}

.bwav2-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.bwav2-section {
  padding: 26px 0 0;
}

.bwav2-section--story {
  padding-top: 24px;
}

.bwav2-story {
  max-width: 900px;
}

.bwav2-story h2,
.bwav2-section-title,
.bwav2-cta h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--bwav2-ink);
}

.bwav2-story p,
.bwav2-value-item span,
.bwav2-cta p {
  color: var(--bwav2-muted);
  font-size: 16px;
  line-height: 1.65;
}

.bwav2-story p {
  margin: 10px 0 0;
}

.bwav2-section-title {
  max-width: 760px;
  margin-bottom: 16px;
}

.bwav2-value-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--bwav2-line);
  border-bottom: 2px solid var(--bwav2-line);
}

.bwav2-value-item {
  padding: 15px 18px 16px 0;
  border-right: 1px solid var(--bwav2-line);
  margin-right: 18px;
}

.bwav2-value-item:last-child {
  border-right: 0;
  margin-right: 0;
}

.bwav2-value-item strong {
  display: block;
  color: var(--bwav2-ink);
  font-size: 16px;
  line-height: 1.25;
  margin: 0 0 6px;
}

.bwav2-value-item span {
  display: block;
}

.bwav2-section--cta {
  padding: 34px 0 56px;
}

.bwav2-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background: var(--bwav2-maroon);
  border: 2px solid var(--bwav2-maroon-dark);
  padding: 22px 24px;
  color: #fff;
}

.bwav2-cta h2,
.bwav2-cta p {
  color: #fff;
}

.bwav2-cta h2 {
  font-size: clamp(24px, 2.6vw, 30px);
}

.bwav2-cta p {
  max-width: 640px;
  margin: 8px 0 0;
}

.bwav2-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.bwav2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 2px solid var(--bwav2-maroon);
  background: var(--bwav2-maroon);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  transition: transform .34s ease, box-shadow .34s ease, background-color .34s ease, color .34s ease;
}

.bwav2-btn:hover,
.bwav2-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(32, 41, 56, .12);
  background: var(--bwav2-maroon-dark);
  color: #fff;
}

.bwav2-btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--bwav2-maroon);
}

.bwav2-btn--light:hover,
.bwav2-btn--light:focus-visible {
  background: var(--bwav2-soft);
  color: var(--bwav2-maroon-dark);
}

.bwav2-btn--light-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.bwav2-btn--light-outline:hover,
.bwav2-btn--light-outline:focus-visible {
  background: #fff;
  color: var(--bwav2-maroon);
}

body.bwav2-about-template footer.elementor-location-footer,
body.bwav2-about-template #colophon {
  margin-top: 0 !important;
}

/* V76: keep the footer/map treatment consistent with the working Contact/Financing V2 pages. */
body.bw2-v2-prototype-page .bw2-v2-footer-off,
body.bw2-v2-prototype-page footer.elementor-location-footer .elementor-element-40e04e8,
body.bw2-v2-prototype-page footer.elementor-location-footer .elementor-element-30a853,
body.bw2-v2-prototype-page footer.elementor-location-footer .elementor-widget-social-icons,
body.bw2-v2-prototype-page footer.elementor-location-footer .elementor-social-icons-wrapper,
body.bw2-v2-prototype-page #colophon .elementor-element-40e04e8,
body.bw2-v2-prototype-page #colophon .elementor-element-30a853,
body.bw2-v2-prototype-page #colophon .elementor-widget-social-icons,
body.bw2-v2-prototype-page #colophon .elementor-social-icons-wrapper,
body.bw2-v2-prototype-page #ast-scroll-top,
body.bw2-v2-prototype-page .ast-scroll-to-top-right,
body.bw2-v2-prototype-page .ast-scroll-to-top-left,
body.bw2-v2-prototype-page footer.elementor-location-footer .bw2-footer-mobile-inline-row,
body.bw2-v2-prototype-page footer.elementor-location-footer .bw2-v2-footer-legal-row,
body.bw2-v2-prototype-page #colophon .bw2-footer-mobile-inline-row,
body.bw2-v2-prototype-page #colophon .bw2-v2-footer-legal-row {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  max-height: 0 !important;
  max-width: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
}

body.bw2-v2-prototype-page footer.elementor-location-footer .elementor-widget-google_maps,
body.bw2-v2-prototype-page footer.elementor-location-footer .elementor-widget-google_maps .elementor-widget-container,
body.bw2-v2-prototype-page footer.elementor-location-footer .elementor-widget-google_maps iframe,
body.bw2-v2-prototype-page footer.elementor-location-footer iframe[src*="google.com/maps"],
body.bw2-v2-prototype-page footer.elementor-location-footer iframe[src*="maps.google"],
body.bw2-v2-prototype-page #colophon .elementor-widget-google_maps,
body.bw2-v2-prototype-page #colophon .elementor-widget-google_maps .elementor-widget-container,
body.bw2-v2-prototype-page #colophon .elementor-widget-google_maps iframe,
body.bw2-v2-prototype-page #colophon iframe[src*="google.com/maps"],
body.bw2-v2-prototype-page #colophon iframe[src*="maps.google"],
body.bw2-v2-prototype-page footer .elementor-widget-google_maps,
body.bw2-v2-prototype-page footer .elementor-widget-google_maps .elementor-widget-container,
body.bw2-v2-prototype-page footer .elementor-widget-google_maps iframe,
body.bw2-v2-prototype-page footer iframe[src*="google.com/maps"],
body.bw2-v2-prototype-page footer iframe[src*="maps.google"] {
  display: block !important;
  height: auto !important;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  opacity: 1 !important;
  overflow: visible !important;
  padding: 0 !important;
  position: relative !important;
  visibility: visible !important;
  width: 100% !important;
}

body.bw2-v2-prototype-page footer.elementor-location-footer iframe[src*="google.com/maps"],
body.bw2-v2-prototype-page footer.elementor-location-footer iframe[src*="maps.google"],
body.bw2-v2-prototype-page #colophon iframe[src*="google.com/maps"],
body.bw2-v2-prototype-page #colophon iframe[src*="maps.google"],
body.bw2-v2-prototype-page footer iframe[src*="google.com/maps"],
body.bw2-v2-prototype-page footer iframe[src*="maps.google"] {
  height: clamp(280px, 34vw, 390px) !important;
  min-height: 280px !important;
}

body.bw2-v2-prototype-page footer.elementor-location-footer .bw2-v2-footer-final-row,
body.bw2-v2-prototype-page #colophon .bw2-v2-footer-final-row,
body.bw2-v2-prototype-page footer .bw2-v2-footer-final-row {
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
  clear: both !important;
  display: block !important;
  height: auto !important;
  margin: 0 !important;
  min-height: 58px !important;
  overflow: visible !important;
  padding: 0 !important;
  position: relative !important;
  visibility: visible !important;
  width: 100% !important;
  z-index: 1 !important;
}

body.bw2-v2-prototype-page footer.elementor-location-footer .bw2-v2-footer-final-inner,
body.bw2-v2-prototype-page #colophon .bw2-v2-footer-final-inner,
body.bw2-v2-prototype-page footer .bw2-v2-footer-final-inner {
  align-items: center !important;
  display: flex !important;
  gap: 20px !important;
  justify-content: space-between !important;
  line-height: 1.25 !important;
  margin: 0 auto !important;
  max-width: 1000px !important;
  min-height: 58px !important;
  padding: 16px 0 18px !important;
  width: min(calc(100% - 40px), 1000px) !important;
}

body.bw2-v2-prototype-page footer.elementor-location-footer .bw2-v2-footer-final-copyright,
body.bw2-v2-prototype-page #colophon .bw2-v2-footer-final-copyright,
body.bw2-v2-prototype-page footer .bw2-v2-footer-final-copyright {
  color: #2f3a4a !important;
  display: block !important;
  flex: 1 1 auto !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  margin: 0 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  text-align: left !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.bw2-v2-prototype-page footer.elementor-location-footer .bw2-v2-footer-final-social,
body.bw2-v2-prototype-page #colophon .bw2-v2-footer-final-social,
body.bw2-v2-prototype-page footer .bw2-v2-footer-final-social {
  align-items: center !important;
  background: #3f5f9f !important;
  border: 0 !important;
  border-radius: 50% !important;
  color: #fff !important;
  display: inline-flex !important;
  flex: 0 0 24px !important;
  height: 24px !important;
  justify-content: center !important;
  line-height: 1 !important;
  margin: 0 !important;
  min-height: 24px !important;
  min-width: 24px !important;
  padding: 0 !important;
  text-decoration: none !important;
  width: 24px !important;
}

body.bw2-v2-prototype-page footer.elementor-location-footer .bw2-v2-footer-final-social svg,
body.bw2-v2-prototype-page #colophon .bw2-v2-footer-final-social svg,
body.bw2-v2-prototype-page footer .bw2-v2-footer-final-social svg {
  display: block !important;
  height: 14px !important;
  max-height: 14px !important;
  max-width: 14px !important;
  width: 14px !important;
}

@media (max-width: 780px) {
  .bwav2-wrap {
    width: min(100% - 32px, var(--bwav2-wrap));
  }

  .bwav2-hero {
    padding-top: 20px;
  }

  .bwav2-lede {
    font-size: 16.5px;
  }

  .bwav2-hero-image img {
    aspect-ratio: 4 / 3;
  }

  .bwav2-value-list {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .bwav2-value-item {
    border-right: 0;
    border-bottom: 1px solid var(--bwav2-line);
    margin-right: 0;
    padding: 14px 0;
  }

  .bwav2-cta {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .bwav2-cta-actions {
    justify-content: stretch;
  }

  .bwav2-cta-actions .bwav2-btn {
    width: 100%;
  }

  body.bw2-v2-prototype-page footer.elementor-location-footer iframe[src*="google.com/maps"],
  body.bw2-v2-prototype-page footer.elementor-location-footer iframe[src*="maps.google"],
  body.bw2-v2-prototype-page #colophon iframe[src*="google.com/maps"],
  body.bw2-v2-prototype-page #colophon iframe[src*="maps.google"],
  body.bw2-v2-prototype-page footer iframe[src*="google.com/maps"],
  body.bw2-v2-prototype-page footer iframe[src*="maps.google"] {
    height: 360px !important;
    min-height: 360px !important;
  }

  body.bw2-v2-prototype-page footer.elementor-location-footer .bw2-v2-footer-final-inner,
  body.bw2-v2-prototype-page #colophon .bw2-v2-footer-final-inner,
  body.bw2-v2-prototype-page footer .bw2-v2-footer-final-inner {
    gap: 18px !important;
    max-width: none !important;
    min-height: 64px !important;
    padding: 17px 26px calc(17px + env(safe-area-inset-bottom, 0px)) !important;
    width: 100% !important;
  }

  body.bw2-v2-prototype-page footer.elementor-location-footer .bw2-v2-footer-final-copyright,
  body.bw2-v2-prototype-page #colophon .bw2-v2-footer-final-copyright,
  body.bw2-v2-prototype-page footer .bw2-v2-footer-final-copyright {
    font-size: 12px !important;
  }

  body.bw2-v2-prototype-page footer.elementor-location-footer .bw2-v2-footer-final-social,
  body.bw2-v2-prototype-page #colophon .bw2-v2-footer-final-social,
  body.bw2-v2-prototype-page footer .bw2-v2-footer-final-social {
    flex-basis: 23px !important;
    height: 23px !important;
    min-height: 23px !important;
    min-width: 23px !important;
    width: 23px !important;
  }

  body.bw2-v2-prototype-page footer.elementor-location-footer .bw2-v2-footer-final-social svg,
  body.bw2-v2-prototype-page #colophon .bw2-v2-footer-final-social svg,
  body.bw2-v2-prototype-page footer .bw2-v2-footer-final-social svg {
    height: 13px !important;
    max-height: 13px !important;
    max-width: 13px !important;
    width: 13px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bwav2-btn {
    transition: none;
  }
}

/* V77 final rhythm: About page should match Financing/Contact V2 map + footer behavior. */
body.bwav2-about-template footer.elementor-location-footer,
body.bwav2-about-template #colophon,
body.bwav2-about-template footer {
  background: #fff !important;
}

body.bwav2-about-template footer.elementor-location-footer,
body.bwav2-about-template #colophon {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.bwav2-about-template footer.elementor-location-footer .elementor-widget-google_maps,
body.bwav2-about-template #colophon .elementor-widget-google_maps,
body.bwav2-about-template footer .elementor-widget-google_maps {
  margin-top: 0 !important;
}



/* V79 sitewide V2 polish: brand-hover and shared rhythm helpers.
   Scope stays on V2 prototype pages so the live site templates are untouched. */
body.bw2-v2-prototype-page .main-header-menu .menu-link:hover,
body.bw2-v2-prototype-page .main-header-menu .menu-link:focus,
body.bw2-v2-prototype-page .main-header-menu .menu-link:focus-visible,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item > .menu-link:hover,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item > .menu-link:focus,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .current-menu-item > .menu-link,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .current_page_item > .menu-link,
body.bw2-v2-prototype-page .site-header a:hover,
body.bw2-v2-prototype-page .site-header a:focus-visible {
  color: #870012 !important;
}
body.bw2-v2-prototype-page .main-header-menu .menu-link,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item > .menu-link,
body.bw2-v2-prototype-page .site-header a {
  transition: color .28s ease, opacity .28s ease !important;
}
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item > .menu-link:focus-visible,
body.bw2-v2-prototype-page .site-header a:focus-visible {
  outline: 2px solid #870012 !important;
  outline-offset: 3px !important;
}


/* V79 about: match Contact V2 top rhythm and footer/map spacing. */
body.bwav2-about-template .bwav2-hero {
  border-top: 1px solid #eee !important;
  padding-top: 42px !important;
  padding-bottom: 0 !important;
}
body.bwav2-about-template .bwav2-wrap {
  max-width: var(--bwav2-wrap, 1000px) !important;
  width: min(var(--bwav2-wrap, 1000px), calc(100% - 40px)) !important;
}
body.bwav2-about-template .bwav2-site h1 {
  font-weight: 800 !important;
}
body.bwav2-about-template .bwav2-section--cta {
  padding-top: 30px !important;
  padding-bottom: 56px !important;
}
@media (max-width: 760px) {
  body.bwav2-about-template .bwav2-hero {
    padding-top: 36px !important;
  }
  body.bwav2-about-template .bwav2-wrap {
    width: min(calc(100% - 28px), var(--bwav2-wrap, 1000px)) !important;
  }
}

/* V80 final sitewide rhythm pass.
   Contact V2 is the reference for top/bottom page rhythm. */
body.bw2-v2-prototype-page {
  --bw2-v80-width: 1140px;
  --bw2-v80-gutter: 40px;
  --bw2-v80-top: 54px;
  --bw2-v80-top-mobile: 34px;
  --bw2-v80-bottom: 64px;
  --bw2-v80-maroon: #870012;
  --bw2-v80-maroon-dark: #5e000b;
  --bw2-v80-ink: #232b37;
  --bw2-v80-muted: #596372;
}

body.bw2-v2-prototype-page .bw2-wrap,
body.bw2-v2-prototype-page .bwiv2-wrap,
body.bw2-v2-prototype-page .bwcv2-wrap,
body.bw2-v2-prototype-page .bwfv2-wrap,
body.bw2-v2-prototype-page .bwav2-wrap,
body.bw2-v2-prototype-page .bwsv2-wrap {
  max-width: var(--bw2-v80-width) !important;
  width: min(calc(100% - var(--bw2-v80-gutter)), var(--bw2-v80-width)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Header/menu: remove theme/browser blue hover and use the Backwoods maroon everywhere on V2. */
body.bw2-v2-prototype-page .main-header-menu .menu-link:hover,
body.bw2-v2-prototype-page .main-header-menu .menu-link:focus,
body.bw2-v2-prototype-page .main-header-menu .menu-link:focus-visible,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item:hover > .menu-link,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item > .menu-link:hover,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item > .menu-link:focus,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .current-menu-item > .menu-link,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .current_page_item > .menu-link,
body.bw2-v2-prototype-page .site-header a:hover,
body.bw2-v2-prototype-page .site-header a:focus-visible,
body.bw2-v2-prototype-page .ast-mobile-header-wrap .menu-link:hover,
body.bw2-v2-prototype-page .ast-mobile-header-wrap .menu-link:focus-visible,
body.bw2-v2-prototype-page .ast-menu-toggle:hover,
body.bw2-v2-prototype-page .ast-menu-toggle:focus-visible,
body.bw2-v2-prototype-page .main-header-menu-toggle:hover,
body.bw2-v2-prototype-page .main-header-menu-toggle:focus-visible {
  color: var(--bw2-v80-maroon) !important;
  border-color: var(--bw2-v80-maroon) !important;
}
body.bw2-v2-prototype-page .main-header-menu .menu-link,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item > .menu-link,
body.bw2-v2-prototype-page .site-header a,
body.bw2-v2-prototype-page .ast-menu-toggle,
body.bw2-v2-prototype-page .main-header-menu-toggle {
  transition: color .28s ease, border-color .28s ease, background-color .28s ease, transform .28s ease !important;
}
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item > .menu-link:focus-visible,
body.bw2-v2-prototype-page .site-header a:focus-visible {
  outline: 2px solid rgba(135, 0, 18, .32) !important;
  outline-offset: 3px !important;
}

/* Contact reference rhythm */
body.bwcv2-contact-template .bwcv2-hero {
  padding-top: var(--bw2-v80-top) !important;
  padding-bottom: 22px !important;
}
body.bwcv2-contact-template .bwcv2-main {
  padding-top: 28px !important;
  padding-bottom: var(--bw2-v80-bottom) !important;
}

/* Inventory, About, Financing should start where Contact starts. */
body.bwiv2-inventory-template .bwiv2-page,
body.bwav2-about-template .bwav2-hero,
body.bwfv2-financing-template .bwfv2-page-head {
  padding-top: var(--bw2-v80-top) !important;
}
body.bwiv2-inventory-template .bwiv2-page {
  padding-bottom: var(--bw2-v80-bottom) !important;
}
body.bwav2-about-template .bwav2-section--cta {
  padding-bottom: 56px !important;
}
body.bwav2-about-template .bwav2-site {
  padding-bottom: 0 !important;
}

/* Vehicle detail keeps its closer VDP top, but uses the same bottom/map discipline. */
body.bwsv2-detail-template .bwsv2-vdp {
  padding-bottom: 48px !important;
}
body.bwsv2-detail-template .bwsv2-related,
body.bwsv2-detail-template .bwsv2-view-all {
  margin-bottom: 0 !important;
}

/* Financing typography and layout: less heavy, centered, no banded background. */
body.bwfv2-financing-template .site-content > .ast-container,
body.bwfv2-financing-template #primary,
body.bwfv2-financing-template .site-main,
body.bwfv2-financing-template article,
body.bwfv2-financing-template .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.bwfv2-financing-template .bwfv2-page {
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  background: #fff !important;
}
body.bwfv2-financing-template .bwfv2-kicker {
  color: var(--bw2-v80-maroon) !important;
  font-weight: 800 !important;
}
body.bwfv2-financing-template .bwfv2-page-head h1 {
  font-size: clamp(30px, 3.2vw, 36px) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
  line-height: 1.12 !important;
  max-width: 860px !important;
}
body.bwfv2-financing-template .bwfv2-page-head p,
body.bwfv2-financing-template .bwfv2-section-title p,
body.bwfv2-financing-template .bwfv2-step-row p,
body.bwfv2-financing-template .bwfv2-bring-card > p:not(.bwfv2-kicker),
body.bwfv2-financing-template .bwfv2-cta p {
  color: var(--bw2-v80-muted) !important;
  font-size: 16px !important;
  line-height: 1.58 !important;
}
body.bwfv2-financing-template .bwfv2-section-title h2,
body.bwfv2-financing-template .bwfv2-bring-card h2,
body.bwfv2-financing-template .bwfv2-cta h2 {
  font-size: clamp(24px, 2.6vw, 30px) !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  line-height: 1.18 !important;
}
body.bwfv2-financing-template .bwfv2-step-row h3,
body.bwfv2-financing-template .bwfv2-checklist li,
body.bwfv2-financing-template .bwfv2-btn {
  font-weight: 800 !important;
}
body.bwfv2-financing-template .bwfv2-hero-image-section {
  padding-bottom: 28px !important;
}
body.bwfv2-financing-template .bwfv2-process {
  padding-top: 0 !important;
  padding-bottom: 28px !important;
}
body.bwfv2-financing-template .bwfv2-bring {
  background: #fff !important;
  border: 0 !important;
  padding: 0 0 28px !important;
}
body.bwfv2-financing-template .bwfv2-bring-card {
  padding: 26px !important;
}
body.bwfv2-financing-template .bwfv2-cta {
  background: transparent !important;
  padding: 0 0 56px !important;
  margin-bottom: 0 !important;
}
body.bwfv2-financing-template .bwfv2-cta-inner {
  background: #870012 !important;
  color: #fff !important;
  padding: 34px 38px !important;
}
body.bwfv2-financing-template .bwfv2-cta h2,
body.bwfv2-financing-template .bwfv2-cta p,
body.bwfv2-financing-template .bwfv2-cta .bwfv2-kicker,
body.bwfv2-financing-template .bwfv2-cta .bwfv2-kicker--light {
  color: #fff !important;
}

/* Footer/map handoff. */
body.bw2-v2-prototype-page footer.elementor-location-footer,
body.bw2-v2-prototype-page #colophon,
body.bw2-v2-prototype-page footer {
  margin-top: 0 !important;
}
body.bw2-v2-prototype-page footer.elementor-location-footer iframe,
body.bw2-v2-prototype-page #colophon iframe,
body.bw2-v2-prototype-page footer iframe {
  display: block !important;
}

@media (max-width: 720px) {
  body.bw2-v2-prototype-page {
    --bw2-v80-gutter: 32px;
  }
  body.bwcv2-contact-template .bwcv2-hero,
  body.bwiv2-inventory-template .bwiv2-page,
  body.bwav2-about-template .bwav2-hero,
  body.bwfv2-financing-template .bwfv2-page-head {
    padding-top: var(--bw2-v80-top-mobile) !important;
  }
  body.bwcv2-contact-template .bwcv2-main,
  body.bwiv2-inventory-template .bwiv2-page,
  body.bwsv2-detail-template .bwsv2-vdp {
    padding-bottom: 44px !important;
  }
  body.bwfv2-financing-template .bwfv2-page-head h1 {
    font-size: clamp(28px, 8vw, 30px) !important;
  }
  body.bwfv2-financing-template .bwfv2-cta-inner {
    padding: 28px 24px !important;
  }
}


/* V81 sitewide V2 rhythm + link polish.
   Contact V2 is the spacing reference. Scope stays on prototype pages only. */
body.bw2-v2-prototype-page {
  --bw2-v81-width: 1140px;
  --bw2-v81-gutter: 40px;
  --bw2-v81-top: 42px;
  --bw2-v81-top-mobile: 30px;
  --bw2-v81-bottom: 56px;
  --bw2-v81-maroon: #870012;
  --bw2-v81-maroon-dark: #5e000b;
  --bw2-v81-ink: #232b37;
  --bw2-v81-muted: #596372;
  --bw2-v81-line: #d9d0c5;
}

body.bw2-v2-prototype-page .bw2-wrap,
body.bw2-v2-prototype-page .bwiv2-wrap,
body.bw2-v2-prototype-page .bwcv2-wrap,
body.bw2-v2-prototype-page .bwfv2-wrap,
body.bw2-v2-prototype-page .bwav2-wrap,
body.bw2-v2-prototype-page .bwsv2-wrap {
  box-sizing: border-box !important;
  max-width: var(--bw2-v81-width) !important;
  width: min(calc(100% - var(--bw2-v81-gutter)), var(--bw2-v81-width)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Header/menu V2 link hover: keep the browser/theme blue out of the V2 prototype. */
body.bw2-v2-prototype-page #masthead a:hover,
body.bw2-v2-prototype-page #masthead a:focus-visible,
body.bw2-v2-prototype-page .site-header a:hover,
body.bw2-v2-prototype-page .site-header a:focus-visible,
body.bw2-v2-prototype-page .main-header-menu .menu-link:hover,
body.bw2-v2-prototype-page .main-header-menu .menu-link:focus,
body.bw2-v2-prototype-page .main-header-menu .menu-link:focus-visible,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item:hover > .menu-link,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item > .menu-link:hover,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item > .menu-link:focus,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .current-menu-item > .menu-link,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .current_page_item > .menu-link,
body.bw2-v2-prototype-page .ast-mobile-header-wrap .menu-link:hover,
body.bw2-v2-prototype-page .ast-mobile-header-wrap .menu-link:focus-visible,
body.bw2-v2-prototype-page .ast-menu-toggle:hover,
body.bw2-v2-prototype-page .ast-menu-toggle:focus-visible,
body.bw2-v2-prototype-page .main-header-menu-toggle:hover,
body.bw2-v2-prototype-page .main-header-menu-toggle:focus-visible {
  color: var(--bw2-v81-maroon) !important;
  border-color: var(--bw2-v81-maroon) !important;
}
body.bw2-v2-prototype-page #masthead a,
body.bw2-v2-prototype-page .site-header a,
body.bw2-v2-prototype-page .main-header-menu .menu-link,
body.bw2-v2-prototype-page .ast-builder-menu .main-navigation .menu-item > .menu-link,
body.bw2-v2-prototype-page .ast-menu-toggle,
body.bw2-v2-prototype-page .main-header-menu-toggle {
  transition: color .28s ease, border-color .28s ease, background-color .28s ease, transform .28s ease !important;
}
body.bw2-v2-prototype-page #masthead a:focus-visible,
body.bw2-v2-prototype-page .site-header a:focus-visible {
  outline: 2px solid rgba(135, 0, 18, .32) !important;
  outline-offset: 3px !important;
}

/* Inner-page top/bottom rhythm. Contact V2 is the reference. */
body.bwcv2-contact-template .bwcv2-hero,
body.bwav2-about-template .bwav2-hero,
body.bwfv2-financing-template .bwfv2-page-head {
  padding-top: var(--bw2-v81-top) !important;
}
body.bwiv2-inventory-template .bwiv2-page {
  padding-top: var(--bw2-v81-top) !important;
  padding-bottom: var(--bw2-v81-bottom) !important;
}
body.bwcv2-contact-template .bwcv2-main {
  padding-top: 26px !important;
  padding-bottom: var(--bw2-v81-bottom) !important;
}
body.bwav2-about-template .bwav2-section--cta,
body.bwfv2-financing-template .bwfv2-cta {
  padding-bottom: var(--bw2-v81-bottom) !important;
}
body.bwsv2-detail-template .bwsv2-vdp {
  padding-bottom: 48px !important;
}

/* Map/footer handoff: one clean map transition and no extra page-bottom whitespace. */
body.bw2-v2-prototype-page footer.elementor-location-footer,
body.bw2-v2-prototype-page #colophon,
body.bw2-v2-prototype-page footer {
  margin-top: 0 !important;
}
body.bw2-v2-prototype-page footer.elementor-location-footer iframe,
body.bw2-v2-prototype-page #colophon iframe,
body.bw2-v2-prototype-page footer iframe {
  display: block !important;
}

@media (max-width: 720px) {
  body.bw2-v2-prototype-page {
    --bw2-v81-gutter: 32px;
  }
  body.bwcv2-contact-template .bwcv2-hero,
  body.bwav2-about-template .bwav2-hero,
  body.bwfv2-financing-template .bwfv2-page-head,
  body.bwiv2-inventory-template .bwiv2-page {
    padding-top: var(--bw2-v81-top-mobile) !important;
  }
  body.bwcv2-contact-template .bwcv2-main,
  body.bwiv2-inventory-template .bwiv2-page,
  body.bwsv2-detail-template .bwsv2-vdp {
    padding-bottom: 44px !important;
  }
}


/* V81 About-specific spacing cleanup. */
body.bwav2-about-template .bwav2-hero {
  padding-top: var(--bw2-v81-top) !important;
  padding-bottom: 0 !important;
}
body.bwav2-about-template .bwav2-lede {
  margin-bottom: 24px !important;
}
body.bwav2-about-template .bwav2-section {
  padding-top: 30px !important;
}
body.bwav2-about-template .bwav2-section--story {
  padding-top: 28px !important;
}
body.bwav2-about-template .bwav2-section--cta {
  padding-top: 34px !important;
  padding-bottom: 54px !important;
}
body.bwav2-about-template .bwav2-cta + .bwav2-cta,
body.bwav2-about-template .bwav2-section--cta + .bwav2-section--cta {
  display: none !important;
}
@media (max-width: 720px) {
  body.bwav2-about-template .bwav2-hero {
    padding-top: var(--bw2-v81-top-mobile) !important;
  }
  body.bwav2-about-template .bwav2-section--cta {
    padding-bottom: 44px !important;
  }
}

.ast-plain-container.ast-no-sidebar #primary {
  margin: 0px !important;
}

/* V82 typography cap: no V2 headings above 36px desktop. */
body.bw2-v2-prototype-page .entry-content h1,
body.bw2-v2-prototype-page .bwav2-site h1,
body.bw2-v2-prototype-page .bwfv2-page-head h1,
body.bw2-v2-prototype-page .bwcv2-hero h1,
body.bw2-v2-prototype-page .bwiv2-page h1,
body.bw2-v2-prototype-page .bwsv2-vdp h1 {
  font-size: clamp(30px, 3.2vw, 36px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.025em !important;
}

body.bw2-v2-prototype-page .entry-content h2,
body.bw2-v2-prototype-page .bwav2-site h2,
body.bw2-v2-prototype-page .bwfv2-page h2,
body.bw2-v2-prototype-page .bwcv2-main h2,
body.bw2-v2-prototype-page .bwiv2-page h2,
body.bw2-v2-prototype-page .bwsv2-vdp h2 {
  font-size: clamp(24px, 2.6vw, 30px) !important;
  line-height: 1.18 !important;
  letter-spacing: -.02em !important;
}

body.bw2-v2-prototype-page .entry-content h3,
body.bw2-v2-prototype-page .bwav2-site h3,
body.bw2-v2-prototype-page .bwfv2-page h3,
body.bw2-v2-prototype-page .bwcv2-main h3,
body.bw2-v2-prototype-page .bwiv2-page h3,
body.bw2-v2-prototype-page .bwsv2-vdp h3 {
  font-size: clamp(20px, 2vw, 22px) !important;
  line-height: 1.25 !important;
  letter-spacing: -.01em !important;
}

body.bw2-v2-prototype-page .entry-content h4,
body.bw2-v2-prototype-page .bwav2-site h4,
body.bw2-v2-prototype-page .bwfv2-page h4,
body.bw2-v2-prototype-page .bwcv2-main h4,
body.bw2-v2-prototype-page .bwiv2-page h4,
body.bw2-v2-prototype-page .bwsv2-vdp h4 {
  font-size: clamp(14px, 1.6vw, 15px) !important;
  line-height: 1.35 !important;
}

@media (max-width: 720px) {
  body.bw2-v2-prototype-page .entry-content h1,
  body.bw2-v2-prototype-page .bwav2-site h1,
  body.bw2-v2-prototype-page .bwfv2-page-head h1,
  body.bw2-v2-prototype-page .bwcv2-hero h1,
  body.bw2-v2-prototype-page .bwiv2-page h1,
  body.bw2-v2-prototype-page .bwsv2-vdp h1 {
    font-size: clamp(28px, 8vw, 30px) !important;
  }

  body.bw2-v2-prototype-page .entry-content h2,
  body.bw2-v2-prototype-page .bwav2-site h2,
  body.bw2-v2-prototype-page .bwfv2-page h2,
  body.bw2-v2-prototype-page .bwcv2-main h2,
  body.bw2-v2-prototype-page .bwiv2-page h2,
  body.bw2-v2-prototype-page .bwsv2-vdp h2 {
    font-size: clamp(24px, 7vw, 26px) !important;
  }
}