/* 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: 1140px;
  --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(34px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -.04em;
  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, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.03em;
  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(22px, 2.8vw, 32px);
}

.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;
}

/* V95: about width and top rhythm cleanup. */
body.bwav2-about-template {
  --bwav2-wrap: 1140px;
}
@media (min-width: 901px) {
  body.bwav2-about-template .bwav2-wrap {
    max-width: 1140px !important;
    width: min(calc(100vw - 40px), 1140px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

body.bwav2-about-template .bwav2-hero {
  padding-top: 42px !important;
  padding-bottom: 24px !important;
}
body.bwav2-about-template .bwav2-section--cta {
  padding-bottom: 54px !important;
}

/* V97: fix About V2 top rhythm by overriding Astra's plain-container spacing. */
body.bwav2-about-template.ast-plain-container.ast-no-sidebar #primary,
body.bwav2-about-template.ast-page-builder-template #primary,
body.bwav2-about-template #primary.bwav2-site {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}

body.bwav2-about-template .site-content,
body.bwav2-about-template .site-content > .ast-container,
body.bwav2-about-template .site-content .ast-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.bwav2-about-template .bwav2-hero {
  padding-top: 28px !important;
  padding-bottom: 22px !important;
}

@media (max-width: 780px) {
  body.bwav2-about-template .bwav2-hero {
    padding-top: 24px !important;
    padding-bottom: 20px !important;
  }
}
