.home-container {
  background: var(--beige-light);
  padding: var(--s5) var(--s1);
}

.home-container:nth-of-type(2n) {
  background: var(--beige);
}

.home-container.single {
  background: hsl(36, 40%, 88%);
}

.home {
  color: var(--blue);
  background: white;
  border-radius: 8px;
  max-width: 1600px;
}

.home .slideshow {
  width: 100%;
}

.home .slideshow-thumbs {
  display: none;
}

.home .description {
  position: relative;
  z-index: 1;
  padding: var(--s-2);
  padding-top: var(--s2);
}

.single .description.shadow {
  display: none;
  border-radius: 8px;
  background: hsl(36, 40%, 80%);
  z-index: 0;
  left: -6px;
  top: 6px;
}

.home .description > *:not(.pricing) {
  padding-left: var(--s-2);
  padding-right: var(--s-2);
}

.home .description h2 {
  font-size: var(--s2);
  font-weight: normal;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-1);
}

.home .description h2 sup {
  display: inline-block;
  margin-top: -1em;
  position: relative;
  top: 4px;
}

.home .description h2 span {
  color: var(--gold);
  margin-left: 0.5ch;
  display: inline-block;
}

.home .description h3 {
  font-size: var(--s-1);
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}

.home .description .text {
  margin-bottom: var(--s0);
}

.home .description .text p:not(:last-of-type) {
  margin-bottom: var(--s0);
}

.home .benefits h2,
.home .pricing h2 {
  color: var(--gold);
  font-size: var(--s1);
}

.home .benefits ul {
  columns: 12rem 2;
  padding-left: var(--s-2);
}

.home .benefits li {
  margin-bottom: var(--s-4);
}

.home .benefits li::marker {
  content: '•  ';
  font-size: 0.8em;
  font-weight: 700;
}

.home .pricing {
  background: var(--beige);
  margin-top: var(--s-2);
  padding: var(--s-1);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.home .pricing > div {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: var(--s2);
}

.home .pricing h2 {
  margin-bottom: var(--s-3);
}

.home .pricing .info {
  margin: var(--s-2) 0;
}

.home .pricing .info li {
  margin-bottom: var(--s-2);
}

.home .pricing svg {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  margin-right: 0.5ch;
}

.home .pricing-link {
  background: var(--gold);
  padding: var(--s-1) var(--s4);
  display: inline-block;
  color: white;
  border-radius: 3px;
  font-size: var(--s-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: bold;
  transition: background 200ms ease;
}

.home .pricing-link:hover {
  background: var(--gold-light);
}

.home .regulation-link {
  display: flex;
  align-items: center;
  font-size: var(--s-2);
  margin-top: var(--s0);
}

.home .regulation-link svg {
  transform: scale(0.6);
  margin-right: 0.3ch;
}

.home .regulation-link .link {
  text-decoration: underline;
  line-height: 1;
}

.home .price-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid hsl(194, 10%, 60%);
  padding-bottom: var(--s-2);
}

.home .price-container .price {
  font-size: var(--s2);
  line-height: 1;
}

.home .blueprint {
  display: none;
  grid-column: 3;
  grid-row: 3;
}

.home .blueprint img {
  width: 80%;
}

.home .blueprint button {
  color: var(--blue);
  margin-top: var(--s-2);
  margin-left: 0.5ch;
  display: flex;
  align-items: center;
}

.home .blueprint span {
  margin-left: 0.5ch;
}

.home .blueprint button:hover {
  cursor: pointer;
}

.home .social {
  color: var(--gold);
  fill: var(--gold);
  padding: 0 var(--s0);
  padding-bottom: var(--s0);
  display: flex;
}

.home .social svg {
  flex: none;
  margin-right: var(--s-2);
}

.home .social .text {
  font-size: var(--s-2);
  font-weight: 600;
  line-height: 1.3;
}

.lum-lightbox {
  z-index: 10000;
}

@media (min-width: 620px) {
  .home .description > h2 {
    font-size: var(--s3);
  }
}

@media (min-width: 1000px) {
  .home {
    display: grid;
    grid-template-columns: 6% 1.5fr 1fr var(--s2);
    grid-template-rows: repeat(4, auto);
    grid-gap: var(--s0);
    grid-row-gap: var(--s2);
    background: none;
    border-radius: 0;
  }

  .single .description.shadow {
    display: block;
  }

  .home .description > *:not(.pricing) {
    padding-left: var(--s1);
    padding-right: var(--s1);
  }

  .home .pricing {
    padding: var(--s1);
  }

  .home .slideshow-container {
    grid-column: 1 / -1;
  }

  .home .slideshow-thumbs {
    display: grid;
    grid-column: 3;
  }

  .home .slideshow-controls {
    display: none;
  }

  .home .description {
    background: white;
    grid-column: 2;
    grid-row: 2 / 6;
    margin-top: -5rem;
    border-radius: 8px;
  }

  .home .blueprint {
    display: block;
    align-self: start;
  }

  .home .social {
    grid-row: 4;
    grid-column: 3;
    padding-left: 0;
    max-width: 40ch;
  }
}

@media (min-width: 1200px) {
  .home-container {
    padding: var(--s6) var(--s2);
  }

  .home {
    margin: 0 auto;
    grid-column-gap: var(--s2);
    grid-row-gap: var(--s3);
  }

  .home .description > *:not(.pricing) {
    padding-left: var(--s2);
    padding-right: var(--s2);
  }

  .home .description {
    margin-top: -7rem;
    padding-top: var(--s5);
  }

  .home .description > h2 {
    font-size: var(--s4);
    margin-bottom: var(--s2);
  }

  .home .description .text {
    margin-bottom: var(--s3);
  }

  .home .benefits li {
    margin-bottom: 0.33rem;
  }

  .home .pricing {
    margin-top: var(--s3);
  }
}
