.home-estimate-section {
  background: var(--cream);
  padding-block: clamp(72px, 9vw, 118px);
}

.home-estimate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}

.home-estimate-intro {
  position: sticky;
  top: 140px;
}

.home-estimate-intro h2 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.3vw, 74px);
}

.home-estimate-intro > p {
  color: var(--ink-soft);
  max-width: 520px;
  font-size: 18px;
}

.home-estimate-contact-links {
  border-bottom: 1px solid #13251f2e;
  margin-top: 34px;
}

.home-estimate-contact-link {
  border-top: 1px solid #13251f2e;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  font-size: 14px;
  font-weight: 800;
}

.home-estimate-contact-link span {
  color: var(--orange-dark);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-estimate-panel {
  box-shadow: var(--shadow);
}

.home-estimate-panel h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 45px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.home-estimate-panel > p {
  color: var(--muted);
}

@media (max-width: 880px) {
  .home-estimate-grid {
    grid-template-columns: 1fr;
  }

  .home-estimate-intro {
    position: static;
  }

  .home-estimate-intro h2 {
    max-width: 680px;
  }

  .home-estimate-panel {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .home-estimate-section {
    padding-block: 72px;
  }

  .home-estimate-grid {
    gap: 32px;
  }

  .home-estimate-intro h2 {
    font-size: 42px;
  }

  .home-estimate-panel {
    padding: 28px 22px;
  }

  .home-estimate-contact-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .home-estimate-panel .lead-form-frame {
    height: 760px;
  }
}
