@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Open+Sans:wght@400;600;700&family=Sofia+Sans+Condensed:wght@700;800;900&display=swap");

:root {
  --bing-red: #ed1c24;
  --bing-dark: #383838;
  --bing-gray: #707070;
  --hero-gray: #818383;
  --soft: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.11);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Open Sans", sans-serif;
  color: var(--bing-gray);
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  letter-spacing: 0;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

img {
  max-width: 100%;
  display: block;
}

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

.wrap {
  width: min(1220px, calc(100% - 80px));
  margin: 0 auto;
}

.kvhsr-pg {
  min-height: 100vh;
  overflow: hidden;
}

.home-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  pointer-events: none;
}

.mb-custom-header-wrapper,
.sticky-header,
.bottom-bar {
  pointer-events: none;
}

.bottom-bar {
  position: relative;
  width: 100%;
  padding-top: 27px;
}

.top-logo {
  position: absolute;
  left: 120px;
  top: 27px;
  pointer-events: auto;
}

.brand-wordmark {
  display: grid;
  grid-template-columns: 88px auto;
  align-items: center;
  width: 252px;
  height: 92px;
  color: #111;
  text-transform: uppercase;
  transform-origin: left top;
}

.home-page .brand-wordmark {
  grid-template-columns: 250px auto;
  width: 700px;
  height: 280px;
}

.brand-ring {
  position: relative;
  display: block;
  width: 88px;
  height: 88px;
  border: 12px solid var(--bing-red);
  border-right-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 1px #fff);
}

.home-page .brand-ring {
  width: 250px;
  height: 250px;
  border-width: 28px;
}

.brand-ring::after {
  display: none;
  content: "";
}

.home-page .brand-ring::after {
  display: none;
}

.brand-p {
  position: absolute;
  left: 24px;
  top: 8px;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 66px;
  line-height: 1;
  font-weight: 900;
}

.home-page .brand-p {
  left: 69px;
  top: 32px;
  font-size: 150px;
  -webkit-text-stroke-width: 3px;
}

.brand-name {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-left: -8px;
  padding-bottom: 11px;
  color: #050505;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 1px 0 #fff, -1px 0 #fff, 0 1px #fff, 0 -1px #fff;
}

.home-page .brand-name {
  margin-left: -58px;
  padding-bottom: 23px;
  font-size: 74px;
}

.brand-name::after {
  content: "";
  position: absolute;
  left: 0;
  right: -78px;
  bottom: 0;
  height: 7px;
  background: var(--bing-red);
  box-shadow: 0 0 0 2px #fff;
}

.home-page .brand-name::after {
  right: -168px;
  height: 13px;
}

.header-body {
  position: absolute;
  top: 48px;
  right: 119px;
  pointer-events: auto;
}

.mb-main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hs-menu-depth-1 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}

.hs-menu-depth-1 > a {
  color: #fff;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.hs-menu-depth-1:hover > a,
.hs-menu-depth-1.active > a {
  opacity: 0.72;
}

.chev {
  color: var(--bing-red);
  font-size: 17px;
  line-height: 1;
  transform: translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: 36px;
  left: 50%;
  width: 220px;
  padding: 16px 0;
  margin: 0;
  list-style: none;
  background: #fff;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  margin-left: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.hs-menu-depth-1:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 20px;
  color: var(--bing-gray);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.25;
  text-transform: none;
}

.dropdown-menu a:hover {
  color: var(--bing-red);
}

.mobile-only,
#mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 540px;
  isolation: isolate;
  background-color: var(--hero-gray);
  overflow: hidden;
}

.home-hero {
  min-height: 100vh;
  background: var(--hero-gray);
}

.sub-hero {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.about-hero {
  min-height: 631px;
  background-position: center 38%;
}

.service-hero {
  min-height: 542px;
  background-position: center 42%;
}

.contact-hero {
  min-height: 475px;
  background-position: center 34%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: -1;
}

.home-hero .hero-overlay {
  background: transparent;
}

.hero-content {
  position: absolute;
  color: #fff;
  width: min(1180px, calc(100% - 80px));
  left: 50%;
  transform: translateX(-50%);
}

.home-hero .hero-content {
  top: 448px;
  left: 120px;
  transform: none;
  width: min(760px, calc(100% - 180px));
}

.sub-hero .hero-content {
  top: 280px;
  text-align: center;
}

.contact-hero .hero-content {
  top: 268px;
  left: 120px;
  transform: none;
  width: min(520px, calc(100% - 180px));
  text-align: left;
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--bing-red);
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 70px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-shadow: none;
}

.home-hero h1,
.sub-hero h1 {
  color: #fff;
  text-shadow: 3px 5px 3px rgba(0, 0, 0, 0.46);
}

.home-hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 66px;
  line-height: 0.98;
}

.hero h3 {
  margin: 0;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.23;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.42);
}

.home-hero h3 {
  width: 760px;
  max-width: 100%;
}

.hero-actions {
  display: flex;
  gap: 54px;
  margin-top: 22px;
}

.bing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 181px;
  min-height: 44px;
  padding: 9px 28px;
  border: 2px solid var(--bing-red);
  background: transparent;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.bing-btn:hover {
  background: var(--bing-red);
  color: #fff;
}

.red-fill {
  background: var(--bing-red);
  color: #fff;
}

.red-fill:hover {
  background: #c9151d;
  border-color: #c9151d;
}

.section {
  position: relative;
  padding: 86px 0;
  background: #fff;
}

.title-block {
  text-align: center;
  margin-bottom: 74px;
}

.title-block h2,
.red-heading h2,
.live-copy h2,
.gray-callout h2 {
  margin: 0;
  color: var(--bing-dark);
  font-family: Manrope, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.title-block p {
  margin: 9px auto 0;
  max-width: 720px;
  color: #9b9b9b;
  font-size: 16px;
  line-height: 1.5;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-cards article {
  min-height: 203px;
  padding: 28px 24px 18px;
  text-align: center;
  background: #f3f3f3;
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.value-cards:hover article {
  opacity: 0.22;
}

.value-cards article:hover {
  opacity: 1;
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  position: relative;
  width: 88px;
  height: 72px;
  margin: 0 auto 22px;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  inset: 8px 16px;
  background: #808285;
  clip-path: polygon(50% 0, 86% 22%, 86% 100%, 14% 100%, 14% 22%);
}

.icon::after {
  inset: 24px 44px 10px 8px;
  background: #ff747b;
  clip-path: polygon(0 100%, 0 38%, 20% 55%, 20% 36%, 42% 54%, 42% 28%, 100% 48%, 100% 100%);
}

.icon.speed::before {
  inset: 4px 16px;
  border: 8px solid #dadada;
  border-right-color: transparent;
  border-radius: 50%;
  background: transparent;
  clip-path: none;
}

.icon.speed::after {
  inset: 46px 18px 8px 18px;
  background: repeating-linear-gradient(135deg, #ffb7bb 0 9px, transparent 9px 18px);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.icon.people::before {
  inset: 14px 12px;
  border: 8px solid #ebebeb;
  border-radius: 50%;
  background: transparent;
  clip-path: none;
}

.icon.people::after {
  inset: 26px 28px 20px;
  border-radius: 50%;
  background: #ffb7bb;
  clip-path: none;
}

.icon.wind::before {
  inset: 4px 14px;
  background: #f4f4f4;
  clip-path: polygon(50% 0, 63% 36%, 100% 36%, 70% 57%, 82% 100%, 50% 73%, 18% 100%, 30% 57%, 0 36%, 37% 36%);
}

.value-cards h4,
.roof-card h4,
.footer h4,
.note-row h4 {
  margin: 0 0 12px;
  color: var(--bing-dark);
  font-family: Manrope, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.value-cards p,
.serve-grid p,
.project-grid p,
.note-row p,
.core-grid p {
  margin: 0;
  color: var(--bing-gray);
}

.red-photo-section {
  padding: 0;
  background: var(--bing-red);
  color: #fff;
  overflow: hidden;
}

.red-photo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(237, 28, 36, 0.9), rgba(237, 28, 36, 0.9)), var(--band-image);
  background-size: cover;
  background-position: center;
}

.split-on-red {
  position: relative;
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 40px;
  min-height: 650px;
  align-items: center;
  z-index: 1;
}

.split-on-red h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 38px;
  line-height: 1.2;
}

.split-on-red p {
  color: #fff;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: 420px;
}

.service-tabs article,
.service-tabs a {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-decoration: none;
}

.service-tabs article::before,
.service-tabs a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(56, 56, 56, 0), rgba(56, 56, 56, 0.55), rgba(56, 56, 56, 1));
}

.service-tabs article > div,
.service-tabs a > div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: #fff;
}

.service-tabs h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 26px;
  line-height: 1.15;
}

.service-tabs p {
  margin: 0;
  color: #fff;
}

.serve-section {
  background: #fff;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  text-align: center;
}

.serve-grid article {
  padding: 0 5px;
}

.serve-grid span {
  display: block;
  width: 98px;
  height: 78px;
  margin: 0 auto 19px;
  background: #f1f1f1;
  clip-path: polygon(50% 0, 100% 30%, 86% 100%, 14% 100%, 0 30%);
}

.serve-grid h3 {
  margin: 0 0 9px;
  color: var(--bing-dark);
  font-family: Manrope, sans-serif;
  font-size: 19px;
  line-height: 1.2;
}

.gray-callout {
  background: #3e3e3e;
  color: #fff;
  overflow: hidden;
}

.gray-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(237, 28, 36, 0.28), rgba(56, 56, 56, 0.86));
}

.callout-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 55px;
  align-items: center;
  min-height: 345px;
}

.quote-mark {
  width: 132px;
  height: 103px;
  border-left: 26px solid var(--bing-red);
  border-radius: 0 0 42px 42px;
  opacity: 0.75;
}

.gray-callout h2,
.gray-callout p {
  color: #fff;
}

.gray-callout p {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: 22px;
  line-height: 1.55;
}

.live-section {
  background: #f6f6f6;
}

.live-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 40px;
  align-items: center;
}

.live-copy {
  min-height: 360px;
  padding: 55px 35px;
  background-image: radial-gradient(circle at 10% 10%, rgba(237, 28, 36, 0.12), transparent 55%);
}

.live-copy span {
  display: block;
  color: var(--bing-red);
  font-weight: 700;
  margin-bottom: 12px;
}

.live-copy p {
  margin: 18px 0 25px;
}

.live-copy .bing-btn {
  color: var(--bing-red);
}

.live-copy .bing-btn:hover {
  color: #fff;
}

.live-image {
  min-height: 430px;
  background-image: var(--live-image);
  background-size: cover;
  background-position: center;
}

.project-section {
  background: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.roof-card {
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.roof-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.roof-img {
  height: 220px;
  background-image: var(--roof-image);
  background-size: cover;
  background-position: center;
}

.roof-card > div:last-child {
  min-height: 167px;
  padding: 23px 24px 26px;
}

.intro-section {
  padding-top: 90px;
}

.two-col {
  display: grid;
  grid-template-columns: 0.52fr 0.48fr;
  gap: 70px;
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: 0.48fr 0.52fr;
}

.red-heading {
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 9px solid var(--bing-red);
}

.red-heading h2 {
  max-width: 620px;
}

.two-col p,
.contact-copy p {
  max-width: 650px;
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.55;
}

.circle-image {
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  margin-left: auto;
  border: 18px solid var(--bing-red);
  border-radius: 50%;
  background-image: var(--circle-image);
  background-size: cover;
  background-position: center;
}

.circle-image.red-left {
  margin: 0;
}

.values-section,
.split-feature {
  background: #f7f7f7;
}

.split-feature.white {
  background: #fff;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.core-grid article {
  min-height: 214px;
  padding: 31px 26px;
  background: #fff;
  border-top: 5px solid var(--bing-red);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.core-grid h3 {
  margin: 0 0 13px;
  color: var(--bing-dark);
  font-family: Manrope, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.note-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.note-row article {
  padding: 28px;
  background: #f5f5f5;
}

.contact-section {
  padding-top: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: 70px;
  align-items: start;
}

.contact-form {
  padding: 70px 40px 50px;
  background: #fff;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.12);
}

.contact-form label {
  display: block;
  margin-bottom: 19px;
  color: var(--bing-gray);
}

.contact-form span {
  color: var(--bing-red);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  border: 0;
  background: #f1f1f1;
  color: var(--bing-dark);
  padding: 10px 12px;
  outline: 2px solid transparent;
  transition: outline-color 180ms ease;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline-color: var(--bing-red);
}

.contact-form .bing-btn {
  margin-top: 8px;
}

.contact-card {
  margin: 30px 0;
  padding: 28px;
  background: #f5f5f5;
  border-left: 7px solid var(--bing-red);
}

.contact-card p {
  margin: 0 0 9px;
}

.contact-card a {
  color: var(--bing-dark);
}

.contact-card a:hover {
  color: var(--bing-red);
}

.service-area h3 {
  margin: 0 0 12px;
  color: var(--bing-dark);
  font-family: Manrope, sans-serif;
  font-size: 26px;
}

.footer {
  padding: 72px 0 35px;
  color: #fff;
  background: #3d3d3d;
}

.footer a:hover {
  color: var(--bing-red);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 45px;
}

.footer-logo .brand-wordmark {
  transform: scale(0.78);
  transform-origin: left top;
}

.footer-logo {
  min-height: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 58px;
}

.footer h4 {
  color: #fff;
  font-size: 20px;
}

.footer p {
  margin: 0 0 10px;
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #cfcfcf;
  font-size: 14px;
}

.not-found {
  display: grid;
  place-content: center;
  min-height: 100vh;
  padding: 40px;
  text-align: center;
}

.not-found h1 {
  color: var(--bing-dark);
  font-family: Manrope, sans-serif;
}

.not-found a {
  color: var(--bing-red);
}

@media (max-width: 1180px) {
  .top-logo {
    left: 70px;
  }

  .home-page .brand-wordmark {
    transform: scale(0.78);
  }

  .header-body {
    right: 70px;
  }

  .mb-main-nav {
    gap: 20px;
  }

  .serve-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  html.menu-open,
  html.menu-open body {
    overflow: hidden;
  }

  .wrap {
    width: calc(100% - 40px);
  }

  .hide-mobile {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .bottom-bar {
    padding-top: 24px;
  }

  .top-logo {
    left: 20px;
    top: 25px;
  }

  .brand-wordmark,
  .home-page .brand-wordmark {
    grid-template-columns: 82px auto;
    width: 260px;
    height: 93px;
    transform: none;
  }

  .brand-ring,
  .home-page .brand-ring {
    width: 82px;
    height: 82px;
    border-width: 8px;
  }

  .brand-p,
  .home-page .brand-p {
    left: 23px;
    top: 14px;
    font-size: 58px;
    -webkit-text-stroke-width: 2px;
  }

  .brand-name,
  .home-page .brand-name {
    margin-left: -6px;
    padding-bottom: 10px;
    font-size: 27px;
  }

  .brand-name::after,
  .home-page .brand-name::after {
    right: -47px;
    height: 6px;
    box-shadow: 0 0 0 1px #fff;
  }

  .mobile-click {
    position: absolute;
    top: 58px;
    right: 31px;
    display: grid;
    gap: 5px;
    place-items: center;
    border: 0;
    padding: 0;
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    pointer-events: auto;
    cursor: pointer;
  }

  .ham-wrap {
    display: grid;
    gap: 7px;
    width: 35px;
  }

  .ham-wrap span {
    display: block;
    height: 2px;
    background: #fff;
  }

  .ham-text {
    color: #fff;
    font-size: 14px;
    line-height: 1;
  }

  #mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 39px;
    bottom: 0;
    z-index: 100;
    display: block;
    background: #fff;
    transform: translateX(-105%);
    transition: transform 240ms ease;
    pointer-events: auto;
    box-shadow: 39px 0 0 #5b5b5b;
  }

  html.menu-open #mobile-menu {
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 21px 20px 17px;
  }

  .mobile-menu-head .brand-wordmark {
    transform: none;
  }

  .mobile-close {
    position: relative;
    width: 42px;
    height: 58px;
    border: 0;
    background: transparent;
    color: var(--bing-dark);
    cursor: pointer;
  }

  .mobile-close span {
    position: absolute;
    top: 16px;
    left: 6px;
    width: 35px;
    height: 2px;
    background: var(--bing-red);
  }

  .mobile-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-close span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .mobile-close b {
    position: absolute;
    left: 4px;
    bottom: 5px;
    font-weight: 400;
    text-transform: uppercase;
  }

  .mb-mobile-nav {
    padding: 13px 20px;
    margin: 0;
    list-style: none;
  }

  .mb-mobile-nav > li {
    border-bottom: 0;
  }

  .mb-mobile-nav button,
  .mb-mobile-nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 55px;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--bing-dark);
    text-align: left;
    font-size: 16px;
    cursor: pointer;
  }

  .mb-mobile-nav button span {
    font-size: 34px;
    line-height: 1;
  }

  .mb-mobile-nav li > div {
    display: none;
    padding: 3px 0 12px 15px;
    background: rgba(128, 130, 133, 0.1);
  }

  .mb-mobile-nav li.expanded > div {
    display: block;
  }

  .mb-mobile-nav li > div a {
    display: block;
    padding: 9px 10px;
    color: var(--bing-dark);
    font-size: 15px;
  }

  .home-hero {
    min-height: 844px;
  }

  .sub-hero,
  .about-hero,
  .service-hero {
    min-height: 520px;
  }

  .contact-hero {
    min-height: 430px;
  }

  .home-hero .hero-content,
  .contact-hero .hero-content,
  .sub-hero .hero-content {
    top: 302px;
    left: 40px;
    width: calc(100% - 80px);
    transform: none;
    text-align: left;
  }

  .sub-hero .hero-content {
    top: 248px;
    text-align: center;
  }

  .contact-hero .hero-content {
    top: 248px;
  }

  .hero h1,
  .home-hero h1 {
    font-size: 40px;
    line-height: 1.28;
    margin-bottom: 23px;
  }

  .home-hero h1 {
    max-width: 300px;
  }

  .hero h3 {
    font-size: 28px;
    line-height: 1.16;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 22px;
  }

  .bing-btn {
    width: min(310px, 100%);
    min-height: 66px;
    padding: 10px 20px;
  }

  .section {
    padding: 60px 0;
  }

  .title-block {
    margin-bottom: 42px;
  }

  .title-block h2,
  .red-heading h2,
  .live-copy h2,
  .gray-callout h2 {
    font-size: 30px;
  }

  .value-cards,
  .service-tabs,
  .serve-grid,
  .project-grid,
  .core-grid,
  .note-row,
  .contact-grid,
  .two-col,
  .two-col.reverse,
  .live-grid,
  .split-on-red,
  .footer-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .value-cards:hover article {
    opacity: 1;
  }

  .split-on-red {
    min-height: auto;
    padding: 60px 0;
  }

  .service-tabs article,
  .service-tabs a {
    min-height: 330px;
  }

  .serve-grid {
    gap: 36px;
  }

  .callout-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    min-height: auto;
  }

  .gray-callout p {
    font-size: 18px;
  }

  .circle-image {
    width: 100%;
    margin: 20px 0 0;
    border-width: 12px;
  }

  .contact-form {
    padding: 35px 22px;
  }

  .footer-logo .brand-wordmark {
    transform: none;
  }
}

/* ==========================================================================
   deep-page template (site-shell) — generated services / locations /
   property-types detail routes.
   Scoped under .site-shell, plus the standalone .internal-links
   "Explore More" section the generator emits after the shell.
   Homepage styles above are untouched; .footer/.wrap rules above are
   overridden here only inside .site-shell. kvhsr-h-* classes ship their own
   inline stylesheet and are intentionally not styled here.
   ========================================================================== */
.site-shell {
  background: #fff;
  color: var(--bing-gray);
  font-size: 17px;
  line-height: 1.65;
}

/* ---- topbar ---- */
.site-shell .topbar {
  background: var(--bing-dark);
  color: #fff;
  font-size: 13px;
}

.site-shell .topbar-inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1220px;
  padding: 9px 22px;
}

.site-shell .socials {
  display: flex;
  gap: 10px;
}

.site-shell .social-dot {
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  opacity: 0.55;
  transition: opacity 180ms ease;
  width: 10px;
}

.site-shell .socials .social-dot:hover {
  opacity: 1;
}

.site-shell .top-phone {
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.site-shell .top-phone:hover {
  color: var(--bing-red);
}

.site-shell .mobile-call {
  align-items: center;
  color: #fff;
  display: none;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  gap: 8px;
}

.site-shell .mobile-call .social-dot {
  background: var(--bing-red);
  opacity: 1;
}

/* ---- masthead ---- */
.site-shell .masthead {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 20;
}

.site-shell .masthead-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1220px;
  padding: 16px 22px;
}

.site-shell .brand-logo {
  display: inline-flex;
  flex: 0 0 auto;
}

.site-shell .brand-logo img {
  display: block;
  height: 44px;
  width: auto;
}

.site-shell .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
}

.site-shell .nav-links a {
  color: var(--bing-dark);
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.site-shell .nav-links a:hover,
.site-shell .nav-links a.active {
  color: var(--bing-red);
}

/* CSS-only <details> fallback menu — shown under 900px */
.site-shell .mobile-nav {
  display: none;
}

/* ---- inner hero ---- */
.site-shell .content-card {
  display: block;
}

.site-shell .inner-hero {
  background: linear-gradient(160deg, var(--bing-dark) 0%, #232323 100%);
  color: #fff;
  padding: clamp(44px, 6vw, 84px) max(22px, calc(50% - 588px));
}

.site-shell .eyebrow {
  background: var(--bing-red);
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  padding: 4px 12px;
  text-transform: uppercase;
}

.site-shell .inner-hero h1 {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 16px;
  max-width: 900px;
  text-transform: uppercase;
}

.site-shell .inner-hero p {
  font-size: 18px;
  margin: 0 0 26px;
  max-width: 760px;
  opacity: 0.9;
}

.site-shell .btn {
  background: var(--bing-red);
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  padding: 13px 28px;
  transition: background 200ms ease;
}

.site-shell .btn:hover {
  background: #c4151b;
  color: #fff;
}

/* ---- content grid + article ---- */
.site-shell .content-grid {
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  grid-template-columns: minmax(0, 1.75fr) minmax(260px, 0.65fr);
  margin: 0 auto;
  max-width: 1220px;
  padding: clamp(36px, 5vw, 64px) 22px;
}

.site-shell .article-body p {
  margin: 0 0 18px;
}

.site-shell .article-body h2 {
  color: var(--bing-dark);
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  margin: 34px 0 16px;
  text-transform: uppercase;
}

.site-shell .article-body a {
  color: var(--bing-red);
  text-decoration: underline;
}

.site-shell .article-body a:hover {
  color: #c4151b;
}

.site-shell .article-body dl {
  background: var(--soft);
  border-left: 4px solid var(--bing-red);
  margin: 30px 0 0;
  padding: 24px 26px;
}

.site-shell .article-body dt {
  color: var(--bing-dark);
  font-weight: 700;
  margin: 18px 0 6px;
}

.site-shell .article-body dt:first-child {
  margin-top: 0;
}

.site-shell .article-body dd {
  margin: 0 0 12px;
}

/* ---- FAQ accordion ---- */
.site-shell .faq {
  background: var(--soft);
  border-left: 4px solid var(--bing-red);
  margin-top: 36px;
  padding: 24px 26px;
}

.site-shell .faq h2 {
  margin-top: 0;
}

.site-shell .faq details {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  margin-bottom: 10px;
}

.site-shell .faq summary {
  color: var(--bing-dark);
  cursor: pointer;
  font-weight: 700;
  padding: 13px 16px;
}

.site-shell .faq summary:hover {
  color: var(--bing-red);
}

.site-shell .faq details[open] summary {
  border-bottom: 1px solid #e3e3e3;
  color: var(--bing-red);
}

.site-shell .faq details p {
  margin: 0;
  padding: 13px 16px;
}

/* ---- side panel ---- */
.site-shell .side-panel {
  align-self: start;
  background: var(--bing-dark);
  border-radius: 4px;
  border-top: 4px solid var(--bing-red);
  color: #fff;
  padding: 26px 24px;
  position: sticky;
  top: 24px;
}

.site-shell .side-panel h3 {
  color: #fff;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.site-shell .side-panel a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: block;
  font-size: 15px;
  padding: 10px 0;
}

.site-shell .side-panel a:last-child {
  border-bottom: 0;
}

.site-shell .side-panel a:hover {
  color: var(--bing-red);
}

/* ---- footer (overrides the homepage .footer rules inside the shell) ---- */
.site-shell .footer {
  padding: clamp(40px, 5vw, 72px) 0 30px;
}

.site-shell .footer-grid {
  gap: clamp(26px, 4vw, 56px);
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}

.site-shell .footer-logo {
  height: 40px;
  margin-bottom: 16px;
  min-height: 0;
  width: auto;
}

.site-shell .footer h3 {
  color: #fff;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.site-shell .footer p {
  color: #cfcfcf;
  font-size: 15px;
  margin: 0 0 10px;
}

.site-shell .footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-shell .footer ul a {
  color: #cfcfcf;
  display: block;
  margin: 0;
  padding: 4px 0;
}

.site-shell .footer a:hover {
  color: var(--bing-red);
}

.site-shell .legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #bdbdbd;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px 22px;
  margin-top: 30px;
  padding: 16px 0 4px;
}

.site-shell .legal span {
  margin-right: auto;
}

.site-shell .legal a {
  color: #bdbdbd;
}

.site-shell .legal a:hover {
  color: var(--bing-red);
}

/* ---- standalone "Explore More" block emitted after the shell ---- */
.internal-links {
  color: var(--bing-gray);
  margin: 0 auto;
  max-width: 1220px;
  padding: clamp(28px, 4vw, 48px) 22px clamp(40px, 5vw, 64px);
}

.internal-links h2 {
  color: var(--bing-dark);
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.internal-links ul {
  display: grid;
  gap: 0 28px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.internal-links a {
  border-bottom: 1px solid #ececec;
  color: var(--bing-dark);
  display: block;
  font-weight: 600;
  padding: 9px 0;
}

.internal-links a:hover {
  color: var(--bing-red);
}

/* ---- deep-page responsive ---- */
@media (max-width: 900px) {
  .site-shell .top-phone,
  .site-shell .socials {
    display: none;
  }

  .site-shell .mobile-call {
    display: inline-flex;
  }

  .site-shell .nav-links {
    display: none;
  }

  .site-shell .mobile-nav {
    display: block;
  }

  .site-shell .mobile-nav summary {
    background: var(--bing-red);
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Manrope, sans-serif;
    font-weight: 700;
    list-style: none;
    padding: 9px 20px;
  }

  .site-shell .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .site-shell .mobile-nav[open] {
    flex-basis: 100%;
  }

  .site-shell .mobile-nav a {
    border-bottom: 1px solid #ececec;
    color: var(--bing-dark);
    display: block;
    font-weight: 600;
    padding: 12px 4px;
  }

  .site-shell .mobile-nav a:hover {
    color: var(--bing-red);
  }

  .site-shell .content-grid,
  .site-shell .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-shell .side-panel {
    position: static;
  }
}
