/* =========================================
   CONTACT PAGE
   ========================================= */

.lh-contact-shell{
  padding-top: 16px;
  padding-bottom: 28px;
}

.lh-contact-page{
  display: grid;
  gap: 18px;
}

.lh-contact-hero{
  padding: 0;
  overflow: hidden;
}

.lh-contact-hero__inner{
  padding: 28px;
}

.lh-contact-eyebrow{
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

.lh-contact-title{
  margin: 0 0 10px;
  font-size: 2.2rem;
  line-height: 1.08;
  font-weight: 900;
  color: var(--text);
}

.lh-contact-lead{
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.65;
}

.lh-contact-grid{
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.lh-contact-side{
  display: grid;
  gap: 18px;
}

.lh-contact-card{
  display: grid;
  gap: 12px;
}

.lh-contact-card--soft{
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(247,250,252,1));
}

.lh-contact-card h2,
.lh-contact-form-card h2{
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.lh-contact-social-text{
  margin: 0;
}

.lh-contact-socials{
  display: grid;
  gap: 10px;
}

.lh-contact-social{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

.lh-contact-social:hover{
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.12);
  background: #fff;
}

.lh-contact-social svg{
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
  opacity: .8;
}

.lh-contact-social span{
  font-weight: 700;
  line-height: 1.2;
}

.lh-contact-form-card{
  display: grid;
  gap: 16px;
}

.lh-contact-form-head{
  display: grid;
  gap: 8px;
}

.lh-contact-form-head p{
  margin: 0;
}

.lh-contact-form-wrap{
  min-width: 0;
}

/* Contact Form 7 */
.lh-contact-form-wrap .wpcf7{
  width: 100%;
}

.lh-contact-form-wrap .wpcf7 form{
  display: grid;
  gap: 14px;
}

.lh-contact-form-wrap .wpcf7 p{
  margin: 0;
}

.lh-contact-form-wrap .wpcf7 label{
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: var(--text);
}

.lh-contact-form-wrap .wpcf7-form-control-wrap{
  display: block;
}

.lh-contact-form-wrap input[type="text"],
.lh-contact-form-wrap input[type="email"],
.lh-contact-form-wrap input[type="tel"],
.lh-contact-form-wrap input[type="url"],
.lh-contact-form-wrap select,
.lh-contact-form-wrap textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
  line-height: 1.4;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.lh-contact-form-wrap textarea{
  min-height: 180px;
  resize: vertical;
}

.lh-contact-form-wrap input:focus,
.lh-contact-form-wrap select:focus,
.lh-contact-form-wrap textarea:focus{
  outline: none;
  border-color: rgba(16,185,129,.55);
  box-shadow: 0 0 0 4px rgba(16,185,129,.12);
  background: #fff;
}

.lh-contact-form-wrap input::placeholder,
.lh-contact-form-wrap textarea::placeholder{
  color: var(--muted);
}

.lh-contact-form-wrap input[type="submit"],
.lh-contact-form-wrap button[type="submit"],
.lh-contact-form-wrap .wpcf7-submit{
  appearance: none;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.lh-contact-form-wrap input[type="submit"]:hover,
.lh-contact-form-wrap button[type="submit"]:hover,
.lh-contact-form-wrap .wpcf7-submit:hover{
  background: var(--accent-600);
  border-color: var(--accent-600);
  transform: translateY(-1px);
}

.lh-contact-form-wrap .wpcf7-spinner{
  margin: 0 0 0 10px;
}

.lh-contact-form-wrap .wpcf7-not-valid-tip{
  margin-top: 6px;
  font-size: .92rem;
}

.lh-contact-form-wrap .wpcf7-response-output{
  margin: 10px 0 0 !important;
  padding: 10px 12px !important;
  border-radius: 12px;
}

@media (max-width: 980px){
  .lh-contact-grid{
    grid-template-columns: 1fr;
  }

  .lh-contact-side{
    order: 2;
  }

  .lh-contact-form-card{
    order: 1;
  }
}

@media (max-width: 640px){
  .lh-contact-shell{
    padding-top: 12px;
    padding-bottom: 22px;
  }

  .lh-contact-hero__inner{
    padding: 18px;
  }

  .lh-contact-title{
    font-size: 1.8rem;
  }

  .lh-contact-grid{
    gap: 14px;
  }

  .lh-contact-social{
    padding: 11px 12px;
  }

  .lh-contact-form-wrap input[type="text"],
  .lh-contact-form-wrap input[type="email"],
  .lh-contact-form-wrap input[type="tel"],
  .lh-contact-form-wrap input[type="url"],
  .lh-contact-form-wrap select,
  .lh-contact-form-wrap textarea{
    padding: 11px 12px;
  }
}