/* =========================================================
 * Landing Page template — landing-template.php
 * Palette and typography follow the theme:
 * gold #aa8453 / accent #e4a853 / light #f8f5f0
 * headings "Gilda Display", body Barlow
 * ========================================================= */

/* ---------- Shared ---------- */

/* Suptitles are gold across the page and stay that way regardless of the
   per-section text colour set in ACF. */
.landing-page .section-suptitle {
  color: #aa8453;
}

/* Sections with a background image get an overlay so text stays readable.
   Only the shared plumbing lives here — each section defines its own
   ::before further down, so colour and opacity can differ per section. */
.landing-page .lp-has-bg {
  position: relative;
}

.landing-page .lp-has-bg > .container {
  position: relative;
  z-index: 1;
}

.landing-page .lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 34px;
  border: 1px solid #aa8453;
  background-color: #aa8453;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.4s ease;
}

.landing-page .lp-btn::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 10px;
  background-color: currentColor;
  /* arrow → drawn as a mask so it always matches the text colour */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10'%3E%3Cpath d='M0 5h15M11 1l4 4-4 4' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E")
    no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 10'%3E%3Cpath d='M0 5h15M11 1l4 4-4 4' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E")
    no-repeat center / contain;
  transition: transform 0.4s ease;
}

.landing-page .lp-btn:hover::before {
  transform: translateX(4px);
}

.landing-page .lp-btn:hover {
  background-color: #96703f;
  border-color: #96703f;
  color: #fff;
}

.landing-page .lp-btn--outline {
  background-color: transparent;
  color: #aa8453;
  border-color: #aa8453;
}

.landing-page .lp-btn--outline:hover {
  background-color: #aa8453;
  border-color: #aa8453;
  color: #fff;
}

.landing-page .lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.landing-page .lp-badges {
  list-style: none;
  margin: 35px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-page .lp-badges__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid #f1eeeb;
  background-color: #fff;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.landing-page .lp-badges__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.landing-page .lp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.landing-page .lp-tag {
  padding: 10px 20px;
  border: 1px solid #aa8453;
  background-color: #aa8453;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
}

.landing-page .lp-tag:hover {
  border-color: rgba(34, 34, 34, 0.15);
  background-color: #fff;
  color: #aa8453;
}

/* ---------- Hero ---------- */

.landing-page .lp-hero {
  background-color: #f8f5f0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* .site-header is position:fixed — the top padding clears it, same as the front page hero */
  padding: 210px 0 110px 0;
}

.landing-page .lp-hero__title {
  margin: 0 0 30px 0;
  color: #222;
  font-family: "Gilda Display";
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
}

.landing-page .lp-hero__desc p {
  margin: 0 0 15px 0;
  max-width: 780px;
  color: #666;
  font-size: 18px;
  line-height: 1.55;
}

.landing-page .lp-hero__desc p:last-of-type {
  margin-bottom: 0;
}

.landing-page .lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 22px 45px;
  margin-top: 45px;
}

.landing-page .lp-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.landing-page .lp-hero__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
  flex-direction: column;
}

.landing-page .lp-hero__socials-label {
  color: #666;
  font-size: 16px;
  line-height: 1.4;
}

.landing-page .lp-hero__socials-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.landing-page .lp-hero__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.landing-page a.lp-hero__social:hover {
  transform: translateY(-3px);
}

.landing-page .lp-hero__social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- What We Buy ---------- */

.landing-page .lp-buy {
  padding: 100px 0;
}

.lp-buy__text h2 {
  margin-bottom: 30px;
}

.landing-page .lp-buy__intro p {
  margin: 20px 0 0 0;
  color: #666;
  font-size: 18px;
  line-height: 1.45833;
}

.landing-page .lp-buy__list {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.landing-page .lp-buy__item {
  position: relative;
  padding-left: 48px;
}

.landing-page .lp-buy__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 35px;
  border-bottom: 1px solid #aa8453;
}

/* Sub-headings use Barlow 600 — Gilda Display ships a single weight,
   so bolding it would render as a synthetic (faux) bold. */
.landing-page .lp-buy__item-title {
  margin: 0 0 6px 0;
  color: #222;
  font-family: "Gilda Display";
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.landing-page .lp-buy__item-text p {
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.45833;
}

.landing-page .lp-buy__image {
  height: 100%;
  min-height: 400px;
}

.landing-page .lp-buy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 13px;
}

/* Second copy of the image, rendered under the heading.
   Hidden on desktop, swapped in below 992px. */
.landing-page .lp-buy__image--mobile,
.landing-page .lp-value__image--mobile {
  display: none;
}

/* ---------- Value ---------- */

.landing-page .lp-value {
  padding: 100px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lp-value__text h2 {
  margin-bottom: 30px;
}

.landing-page .lp-value__intro p {
  margin: 20px 0 0 0;
  color: #666;
  font-size: 18px;
  line-height: 1.45833;
}

.landing-page .lp-value__list {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.landing-page .lp-value__list-item {
  position: relative;
  padding-left: 48px;
}

.landing-page .lp-value__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 35px;
  border-bottom: 1px solid #aa8453;
}

.landing-page .lp-value__list-item__title {
  margin: 0 0 6px 0;
  color: #222;
  font-family: "Gilda Display";
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.landing-page .lp-value__list-item__desc p {
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.45833;
}

.landing-page .lp-value__image {
  height: 100%;
  min-height: 400px;
}

.landing-page .lp-value__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 13px;
}

/* ---------- Selling Process ---------- */

.landing-page .lp-process {
  padding: 0 0 100px 0;
}

.landing-page .lp-process__title {
  margin-bottom: 55px;
  padding-top: 100px;
}

.landing-page .lp-process__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.landing-page .lp-process__item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 30px 60px 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.landing-page .lp-process__item-img {
  width: 30%;
  max-width: 320px;
  flex-shrink: 0;
}

.landing-page .lp-process__item-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.landing-page .lp-process__item-text {
  flex: 1;
}

.landing-page .lp-process__item-title {
  margin: 0 0 10px 0;
  color: #222;
  font-family: "Gilda Display";
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.landing-page .lp-process__item-desc p {
  margin: 0;
  color: #666;
  font-size: 18px;
  line-height: 1.45833;
}

.landing-page .lp-process__item-number {
  position: absolute;
  right: 0;
  top: 30px;
  color: #e4a853;
  font-size: 20px;
  line-height: 1;
}

/* ---------- Why Us ---------- */

.landing-page .lp-why {
  background-color: #f8f5f0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
}

.landing-page .lp-why__title {
  margin-bottom: 55px;
}

.landing-page .lp-why__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.landing-page .lp-why__card {
  width: calc(33.333% - 17.34px);
  padding: 35px 30px 40px 30px;
  border: 1px solid #f1eeeb;
  background-color: #fff;
}

.landing-page .lp-why__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 25px;
}

.landing-page .lp-why__card-icon img {
  object-fit: contain;
}

.landing-page .lp-why__card-title {
  margin: 0 0 14px 0;
  color: #222;
  font-family: "Gilda Display";
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.landing-page .lp-why__card-text p {
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.45833;
}

/* ---------- Jewelry Types ---------- */

.landing-page .lp-types {
  padding: 100px 0;
}

.landing-page .lp-types__title {
  margin-bottom: 55px;
}

.landing-page .lp-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 10px;
}

.landing-page .lp-types__item {
  position: relative;
  display: block;
  overflow: hidden;
}

.landing-page .lp-types__item--tall {
  grid-row: span 2;
}

.landing-page .lp-types__item--wide {
  grid-column: span 2;
}

.landing-page .lp-types__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.landing-page .lp-types__item:hover img {
  transform: scale(1.05);
}

.landing-page .lp-types__item-label {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 40px 18px 16px 18px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.landing-page .lp-types__footer {
  margin-top: 30px;
}

.landing-page .lp-types__footer p {
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.45833;
}

.landing-page .lp-types__footer a {
  color: #aa8453;
}

/* ---------- What To Bring ---------- */

.landing-page .lp-bring {
  padding: 0 0 90px 0;
}

.landing-page .lp-bring__title {
  margin-bottom: 25px;
}

.landing-page .lp-bring__text p {
  margin: 0 0 15px 0;
  max-width: 860px;
  color: #666;
  font-size: 18px;
  line-height: 1.45833;
}

.landing-page .lp-bring__list-title {
  margin: 35px 0 18px 0;
  color: #222;
  font-family: "Gilda Display";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.landing-page .lp-bring__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-page .lp-bring__list-item {
  position: relative;
  padding-left: 32px;
  color: #666;
  font-size: 17px;
  line-height: 1.5;
}

.landing-page .lp-bring__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 13px;
  border-right: 2px solid #aa8453;
  border-bottom: 2px solid #aa8453;
  transform: rotate(45deg);
}

/* ---------- Estate ---------- */

.landing-page .lp-estate {
  padding: 0 0 90px 0;
}

.landing-page .lp-estate__text p {
  margin: 20px 0 0 0;
  color: #666;
  font-size: 18px;
  line-height: 1.45833;
}

/* ---------- FAQ (theme markup, spacing only) ---------- */

.landing-page .lp-faq {
  padding: 0 0 90px 0;
}

/* ---------- Appraisal ---------- */

.landing-page .lp-appraisal {
  background-color: #f8f5f0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.landing-page .lp-appraisal__desc p {
  margin: 20px 0 0 0;
  max-width: 560px;
  color: #666;
  font-size: 18px;
  line-height: 1.45833;
}

.landing-page .lp-appraisal__form {
  padding: 35px 30px 40px 30px;
  background-color: #fff;
  border: 1px solid #f1eeeb;
}

.landing-page .lp-appraisal__form-title {
  margin: 0 0 25px 0;
  color: #222;
  font-family: "Gilda Display";
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.landing-page .lp-appraisal__form input[type="text"],
.landing-page .lp-appraisal__form input[type="email"],
.landing-page .lp-appraisal__form input[type="tel"],
.landing-page .lp-appraisal__form input[type="date"],
.landing-page .lp-appraisal__form textarea {
  width: 100%;
  padding: 13px 15px;
  margin-bottom: 12px;
  border: 1px solid #f1eeeb;
  background-color: #fff;
  color: #222;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
}

.landing-page .lp-appraisal__form textarea {
  min-height: 110px;
  resize: vertical;
}

.landing-page .lp-appraisal__form input:focus,
.landing-page .lp-appraisal__form textarea:focus {
  outline: none;
  border-color: #aa8453;
}

.landing-page .lp-appraisal__form input[type="submit"] {
  width: 100%;
  padding: 16px 28px;
  border: 1px solid #aa8453;
  background-color: #aa8453;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
}

.landing-page .lp-appraisal__form input[type="submit"]:hover {
  background-color: transparent;
  color: #222;
  border-color: rgba(34, 34, 34, 0.5);
}

/* ---------- Store ---------- */

.landing-page .lp-store {
  padding: 90px 0;
}

.landing-page .lp-store__title {
  margin-bottom: 20px;
}

.landing-page .lp-store__text p {
  margin: 0 0 40px 0;
  max-width: 860px;
  color: #666;
  font-size: 18px;
  line-height: 1.45833;
}

.landing-page .lp-store__box {
  height: 100%;
  padding: 35px 30px 40px 30px;
  background-color: #f8f5f0;
}

.landing-page .lp-store__box-title {
  margin: 0 0 18px 0;
  color: #222;
  font-family: "Gilda Display";
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.landing-page .lp-store__address p {
  margin: 0 0 8px 0;
  color: #666;
  font-size: 17px;
  line-height: 1.5;
}

.landing-page .lp-store__address a {
  color: #aa8453;
}

.landing-page .lp-store__map {
  height: 100%;
  min-height: 300px;
}

.landing-page .lp-store__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

/* ---------- Popups ---------- */

body.lp-popup-open {
  overflow: hidden;
}

.lp-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  overflow-y: auto;
}

.lp-popup[hidden] {
  display: none;
}

.lp-popup__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.55);
}

.lp-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: auto;
  padding: 50px 45px;
  background-color: #fff;
  border: 1px solid #f1eeeb;
  box-shadow: 0 20px 60px -20px rgba(34, 34, 34, 0.35);
  animation: lp-popup-in 0.35s ease-out;
}

@keyframes lp-popup-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-popup__close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: none;
  color: #666;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lp-popup__close:hover,
.lp-popup__close:focus-visible {
  color: #aa8453;
}

.lp-popup__title {
  margin: 0 0 12px 0;
  color: #222;
  font-family: "Gilda Display";
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.lp-popup__text {
  margin-bottom: 28px;
  text-align: center;
}

.lp-popup__text p {
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.5;
}

.lp-popup__form input[type="text"],
.lp-popup__form input[type="email"],
.lp-popup__form input[type="tel"],
.lp-popup__form input[type="date"],
.lp-popup__form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid #dcd5cb;
  background-color: #fff;
  color: #222;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
}

.lp-popup__form textarea {
  min-height: 100px;
  resize: vertical;
}

.lp-popup__form input:focus,
.lp-popup__form textarea:focus {
  outline: none;
  border-color: #aa8453;
}

.lp-popup__form input[type="submit"] {
  width: 100%;
  padding: 17px 28px;
  border: 1px solid #aa8453;
  background-color: #aa8453;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
}

.lp-popup__form input[type="submit"]:hover {
  background-color: transparent;
  color: #222;
  border-color: rgba(34, 34, 34, 0.5);
}

.landing-page .lp-btn:focus-visible,
.lp-popup__close:focus-visible,
.lp-popup__form input:focus-visible,
.lp-popup__form textarea:focus-visible {
  outline: 2px solid #aa8453;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .lp-popup__dialog {
    animation: none;
  }
}

/* =========================================================
 * Responsive
 * ========================================================= */

@media only screen and (max-width: 1199px) {
  .landing-page .lp-hero__title {
    font-size: 44px;
  }

  .landing-page .lp-why__card {
    width: calc(50% - 13px);
  }
}

@media only screen and (max-width: 991px) {
  /* Top bar is showing by default, so the hero clears header + bar.
     Once the bar is dismissed, landing.js flags <body> and this drops back. */
  .landing-page .lp-hero {
    padding: 200px 0 60px 0;
  }

  body.lp-top-bar-closed .landing-page .lp-hero {
    padding-top: 130px;
  }

  .landing-page .lp-hero__title {
    font-size: 36px;
  }

  .landing-page .lp-hero__actions {
    gap: 22px 30px;
  }

  .landing-page .lp-btn {
    padding: 17px 26px;
    font-size: 16px;
  }

  .landing-page .lp-buy,
  .landing-page .lp-value,
  .landing-page .lp-types,
  .landing-page .lp-store {
    padding: 60px 0;
  }

  .landing-page .lp-process,
  .landing-page .lp-bring,
  .landing-page .lp-estate,
  .landing-page .lp-faq {
    padding: 0 0 60px 0;
  }

  .landing-page .lp-why {
    padding: 60px 0;
  }

  .landing-page .lp-buy__image,
  .landing-page .lp-value__image {
    margin-top: 40px;
    min-height: 0;
    height: 340px;
  }

  /* Swap: the column copy goes away, the one under the heading takes over. */
  .landing-page .lp-buy__image-col,
  .landing-page .lp-value__image-col {
    display: none;
  }

  .landing-page .lp-buy__image--mobile,
  .landing-page .lp-value__image--mobile {
    display: block;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .landing-page .lp-process__item {
    padding-right: 0;
  }

  .landing-page .lp-process__item-img {
    width: 100%;
    max-width: none;
  }

  .landing-page .lp-process__item-number {
    position: static;
    display: block;
    order: -1;
  }

  .landing-page .lp-appraisal__form {
    margin-top: 40px;
  }

  .landing-page .lp-store__map {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .landing-page .lp-types__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .landing-page .lp-why__card {
    width: 100%;
  }

  /* Background overlays — mobile only, matching the mobile background images.
     Each section is separate so colour and opacity can be tuned on its own. */

  .landing-page .lp-hero.lp-has-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.6;
    pointer-events: none;
  }

  .landing-page .lp-value.lp-has-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.6;
    pointer-events: none;
  }

  .landing-page .lp-why.lp-has-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.6;
    pointer-events: none;
  }

  .landing-page .lp-appraisal.lp-has-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.2;
    pointer-events: none;
  }
}

@media only screen and (max-width: 565px) {
  /* Narrower screen — the top bar wraps onto more lines, so it needs more room. */
  .landing-page .lp-hero {
    padding: 215px 0 50px 0;
  }

  body.lp-top-bar-closed .landing-page .lp-hero {
    padding-top: 120px;
  }

  .landing-page .lp-hero__title {
    font-size: 30px;
  }

  .landing-page .lp-hero__buttons {
    width: 100%;
  }

  .lp-popup {
    padding: 20px 14px;
  }

  .lp-popup__dialog {
    padding: 40px 22px 30px 22px;
  }

  .lp-popup__title {
    font-size: 26px;
  }

  .landing-page .lp-hero__desc p,
  .landing-page .lp-buy__intro p,
  .landing-page .lp-value__intro p,
  .landing-page .lp-bring__text p,
  .landing-page .lp-store__text p,
  .landing-page .lp-appraisal__desc p {
    font-size: 16px;
  }

  .landing-page .lp-btn,
  .landing-page .lp-hero__actions .lp-btn,
  .landing-page .lp-actions .lp-btn {
    width: 100%;
  }

  .landing-page .lp-types__grid {
    grid-template-columns: 1fr;
  }

  .landing-page .lp-types__item--tall,
  .landing-page .lp-types__item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .landing-page .lp-appraisal__form {
    padding: 35px 15px 40px 15px;
  }
}
