.quote-page {
  min-height: 100vh;
  background: #f4f4f2;
}

.quote-page-main {
  padding: 150px 0 86px;
  background:
    radial-gradient(circle at 12% 16%, rgba(224, 174, 83, .08), transparent 32%),
    #f4f4f2;
}

.quote-page-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(540px, 1.08fr);
  gap: clamp(58px, 7vw, 112px);
  align-items: start;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.quote-page-intro {
  padding: 20px 0;
}

.quote-intro-label {
  margin: 0 0 18px;
  color: #168b66;
  font-size: 15px;
  font-weight: 700;
}

.quote-page-intro h1 {
  max-width: 590px;
  margin: 0;
  color: #17110d;
  font-size: clamp(40px, 4.7vw, 66px);
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.quote-page-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: #514942;
  font-size: 17px;
  line-height: 1.65;
}

.quote-benefits {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.quote-benefits li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #352d28;
  font-size: 16px;
}

.quote-benefits svg,
.quote-contact-card svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: #25b982;
  stroke-width: 2.4;
}

.quote-contact-card {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #d8d5cf;
}

.quote-contact-card p,
.quote-email {
  display: flex;
  gap: 9px;
  align-items: center;
}

.quote-contact-card p {
  margin: 0 0 9px;
  color: #514942;
}

.quote-phone {
  display: block;
  width: max-content;
  color: #1d1713;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: .01em;
}

.quote-email {
  width: max-content;
  margin-top: 12px;
  color: #514942;
  font-size: 15px;
}

.quote-page-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  padding: 34px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid #dedbd5;
  border-radius: 10px;
  box-shadow: 0 26px 70px rgba(40, 31, 24, .08);
}

.quote-page-form label {
  display: grid;
  gap: 8px;
  color: #332b25;
  font-size: 13px;
  font-weight: 650;
}

.quote-page-form input,
.quote-page-form select,
.quote-page-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: #211a15;
  background: #fff;
  border: 1px solid #8f8982;
  border-radius: 2px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-page-form textarea {
  min-height: 110px;
  resize: vertical;
}

.quote-page-form input:focus,
.quote-page-form select:focus,
.quote-page-form textarea:focus {
  border-color: #8b5b2c;
  box-shadow: 0 0 0 3px rgba(198, 144, 63, .16);
}

.quote-page-form input::placeholder,
.quote-page-form textarea::placeholder {
  color: #aaa6a2;
}

.quote-field-full {
  grid-column: 1 / -1;
}

.quote-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.quote-submit-row button {
  min-height: 50px;
  padding: 0 28px;
  color: #24180e;
  background: linear-gradient(100deg, #ffe7ad, #dda742);
  border: 1px solid #e5b85e;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.quote-submit-row button:hover,
.quote-submit-row button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(181, 121, 39, .22);
}

.quote-submit-row button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.quote-submit-row p {
  flex: 1 1 270px;
  margin: 0;
  color: #706862;
  font-size: 12px;
  line-height: 1.5;
}

.quote-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 1060px) {
  .quote-page-layout {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 40px));
  }

  .quote-page-intro h1,
  .quote-page-lede {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .quote-page-main {
    padding: 112px 0 56px;
  }

  .quote-page-layout {
    width: min(100% - 28px, 760px);
    gap: 34px;
  }

  .quote-page-intro h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .quote-page-form {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 18px;
  }

  .quote-field-full {
    grid-column: auto;
  }

  .quote-submit-row button {
    width: 100%;
    padding-inline: 18px;
  }
}
