:root {
  --sp-copper: #a66c32;
  --sp-copper-dark: #70441e;
  --sp-green: #174c3b;
  --sp-ink: #24201d;
  --sp-paper: #f5f0e8;
  --sp-line: rgba(36, 32, 29, .18);
}

.sp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.sp-hero-actions .btn {
  margin: 0 !important;
}

.sp-hero-note {
  max-width: 620px;
  margin: 14px 0 0 auto;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .7);
}

.sp-paths {
  padding: 72px 20px;
  background: var(--sp-paper);
}

.sp-paths__inner,
.sp-decision__inner,
.sp-close__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.sp-kicker {
  margin: 0 0 12px;
  color: var(--sp-copper-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sp-paths h2,
.sp-decision h2,
.sp-close h2 {
  max-width: 850px;
  margin: 0;
  color: var(--sp-ink);
  font-family: Oswald, Arial, sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: .98;
  text-transform: uppercase;
}

.sp-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--sp-line);
  background: var(--sp-line);
}

.sp-path {
  min-height: 310px;
  padding: 34px;
  background: #fff;
}

.sp-path strong {
  display: block;
  min-height: 80px;
  color: var(--sp-green);
  font-family: Oswald, Arial, sans-serif;
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
}

.sp-path p {
  min-height: 102px;
  margin: 18px 0 26px;
  color: #4b4540;
  font-size: 16px;
  line-height: 1.6;
}

.sp-path a,
.sp-decision a,
.sp-close a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid var(--sp-green);
  background: var(--sp-green);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.sp-path a:hover,
.sp-path a:focus,
.sp-decision a:hover,
.sp-decision a:focus,
.sp-close a:hover,
.sp-close a:focus {
  border-color: var(--sp-copper-dark);
  background: var(--sp-copper-dark);
}

.sp-decision {
  padding: 92px 20px;
  background: #fff;
}

.sp-decision__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
}

.sp-decision figure {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

.sp-decision figure::after {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 2px solid var(--sp-copper);
  content: "";
}

.sp-decision img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.sp-decision__copy > p:not(.sp-kicker) {
  margin: 24px 0;
  color: #4b4540;
  font-size: 18px;
  line-height: 1.65;
}

.sp-decision__list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.sp-decision__list li {
  padding: 16px 0;
  border-top: 1px solid var(--sp-line);
  color: var(--sp-ink);
  font-size: 16px;
  line-height: 1.45;
}

.sp-decision__list li:last-child {
  border-bottom: 1px solid var(--sp-line);
}

.sp-close {
  padding: 80px 20px;
  background: var(--sp-green);
}

.sp-close__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
}

.sp-close .sp-kicker,
.sp-close h2 {
  color: #fff;
}

.sp-close p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.6;
}

.sp-close__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.sp-close a {
  border-color: #fff;
  background: #fff;
  color: var(--sp-green) !important;
}

.sp-close a:last-child {
  background: transparent;
  color: #fff !important;
}

footer .footer-bottom__logo .rr-footer-brand-logo {
  display: block !important;
  width: min(320px, 80vw) !important;
  max-width: min(320px, 80vw) !important;
  height: auto !important;
  max-height: 58px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

footer .footer-bottom__copyright-links {
  display: none !important;
}

.sp-mobile-roof-help {
  display: none;
}

@media (max-width: 991px) {
  .sp-paths__grid,
  .sp-decision__inner,
  .sp-close__inner {
    grid-template-columns: 1fr;
  }

  .sp-path strong,
  .sp-path p {
    min-height: 0;
  }

  .sp-decision figure,
  .sp-decision img {
    min-height: 440px;
  }

  .sp-close__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .sp-hero-actions {
    justify-content: flex-start;
  }

  .sp-hero-note {
    margin-left: 0;
    text-align: left;
  }

  .sp-paths,
  .sp-decision,
  .sp-close {
    padding: 58px 18px;
  }

  .sp-paths__grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .sp-path {
    min-height: 0;
    padding: 28px;
  }

  .sp-decision__inner {
    gap: 42px;
  }

  .sp-decision figure,
  .sp-decision img {
    min-height: 340px;
  }

  .sp-close__actions a {
    width: 100%;
  }

  .sp-mobile-roof-help {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 2147483000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 13px 18px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--sp-green);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .32);
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration: none !important;
    text-transform: uppercase;
  }
}
