.las-trust-proof {
  width: 100%;
  overflow: hidden;
}
.las-trust-proof__header {
  background: #75A37E;
  text-align: center;
  padding: 32px 24px;
}
.las-trust-proof__header-title {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 40px);
  line-height: 1.2;
  color: #fff;
  margin: 0;
}
.las-trust-proof__body {
  background: #FDFFEB;
  padding: 28px 24px 32px;
}
.las-trust-proof__info-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.las-trust-proof__info-row {
  display: flex;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E0E0E0;
}
.las-trust-proof__info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 480px) {
  .las-trust-proof__info-row {
    flex-direction: column;
    gap: 2px;
  }
}
.las-trust-proof__info-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  color: #727272;
  min-width: 180px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .las-trust-proof__info-label {
    min-width: 130px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .las-trust-proof__info-label {
    min-width: unset;
  }
}
.las-trust-proof__info-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #2D2D2D;
}
@media (max-width: 600px) {
  .las-trust-proof__info-value {
    font-size: 13px;
  }
}
.las-trust-proof__registry-image {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #E0E0E0;
  margin-bottom: 24px;
}
.las-trust-proof__registry-image img {
  width: 100%;
  display: block;
}
.las-trust-proof__btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.las-trust-proof__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  color: #2D2D2D;
  background: #F0C05A;
  padding: 18px 40px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.las-trust-proof__btn:hover {
  background: #e0af45;
}
.las-trust-proof__btn:is(button) {
  appearance: none;
  -webkit-appearance: none;
}
.las-trust-proof__btn-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.las-trust-proof__btn-icon svg,
.las-trust-proof__btn-icon img,
.las-trust-proof__btn-icon i {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (max-width: 480px) {
  .las-trust-proof__btn {
    font-size: 15px;
    padding: 14px 24px;
  }
}
.las-trust-proof__presence-heading {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 40px);
  line-height: 1.2;
  color: #75A37E;
  text-align: center;
  margin: 0 0 20px;
}
@media (max-width: 480px) {
  .las-trust-proof__presence-heading {
    font-size: clamp(20px, 6vw, 32px);
  }
}
.las-trust-proof__map-image {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.las-trust-proof__map-image img {
  width: 100%;
  display: block;
}

.las-tp-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.las-tp-modal.is-open {
  display: flex;
}
.las-tp-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  cursor: pointer;
}
.las-tp-modal__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 580px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: las-tp-modal-in 0.25s ease;
}
@media (max-width: 600px) {
  .las-tp-modal__box {
    padding: 36px 20px 28px;
    border-radius: 14px;
  }
}
.las-tp-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #727272;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.las-tp-modal__close:hover {
  color: #2D2D2D;
  background: rgba(0, 0, 0, 0.06);
}
.las-tp-modal__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  color: #2D2D2D;
  margin: 0 0 12px;
}
@media (max-width: 600px) {
  .las-tp-modal__title {
    font-size: 22px;
  }
}
.las-tp-modal__desc {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #727272;
  margin: 0 0 24px;
}
.las-tp-modal__form {
  width: 100%;
}

@keyframes las-tp-modal-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}/*# sourceMappingURL=las-trust-proof.css.map */