body {
  --green: #a85f00;
  --green-bright: #ffb321;
  --green-pale: #fff0d5;
}

.home-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 6rem 0 7rem;
}

.home-hero-copy {
  max-width: 900px;
}

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

.home-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.7rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.75;
}

.home-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 8rem 0;
}

.home-section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: 4rem;
}

.home-section-heading h2 {
  max-width: 650px;
}

.home-section-heading > p {
  margin: 0 0 .4rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.product-spotlight {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 28px 80px rgba(17, 27, 25, .09);
}

.product-visual {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 4rem);
  background: #e9ecea;
}

.product-visual img {
  display: block;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(9, 14, 13, .24);
}

.product-copy {
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
}

.product-label {
  margin: 0;
  color: var(--green);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 1rem 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.product-copy > p:not(.product-label) {
  color: var(--muted);
  line-height: 1.75;
}

.product-copy ul {
  margin: 1.8rem 0;
  padding: 0;
  list-style: none;
}

.product-copy li {
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .86rem;
}

.product-copy li::before {
  margin-right: .6rem;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.text-link {
  color: var(--green);
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.resources-section {
  padding: 8rem max(20px, calc((100vw - 1180px) / 2));
  background: white;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.resource-grid article {
  min-height: 280px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resource-grid article > span {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: .85rem;
}

.resource-grid h3 {
  margin: 3.5rem 0 .8rem;
}

.resource-grid p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

.resource-grid a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--green);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}

.resource-grid a:hover {
  text-decoration: underline;
}

.home-closing {
  padding: 8rem 20px;
  background: var(--ink);
  color: white;
  text-align: center;
}

.home-closing .eyebrow {
  color: var(--green-bright);
}

.home-closing h2 {
  max-width: 850px;
  margin: 0 auto;
}

.home-closing > p:not(.eyebrow) {
  margin: 1.2rem 0 2.5rem;
  color: rgba(255, 255, 255, .65);
}

@media (max-width: 900px) {
  .home-hero {
    min-height: auto;
  }

  .home-section-heading,
  .product-spotlight {
    grid-template-columns: 1fr;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .home-hero,
  .home-section {
    width: calc(100% - 28px);
  }

  .home-hero {
    padding: 4rem 0 5rem;
  }

  .home-section,
  .resources-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .product-spotlight {
    border-radius: 18px;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
