.contactus-page {
  color: #1d3915;
  background: #5f933a;
  overflow-x: clip;
}

.contactus-hero {
  margin-bottom: 1rem;
  border-radius: 20px;
  background: #eff3e4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.contactus-hero__copy {
  background: #ecefe3;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 34px 34px 34px;
}

.contactus-hero h1 {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -1.15px;
  color: #1f251f;
  font-weight: 600;
}

.contactus-hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
}

.contactus-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}

.contactus-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.contactus-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contactus-form__label {
  color: #202420;
  font-family: 'Geist Mono', 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contactus-form input,
.contactus-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cfd3c7;
  background: transparent;
  border-radius: 0;
  color: #1f251f;
  font-family: Inter, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  padding: 2px 0 14px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contactus-form textarea {
  resize: none;
  min-height: 62px;
  overflow: hidden;
}

.contactus-form input:focus,
.contactus-form textarea:focus {
  border-bottom-color: #5f933a;
  box-shadow: none;
}

.contactus-form input::placeholder,
.contactus-form textarea::placeholder {
  color: #7c8277;
}

.contactus-form__alert {
  margin: 0;
  border-radius: 12px;
  padding: 0.72rem 0.9rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.contactus-form__alert--error {
  color: #8b1f1f;
  background: #ffe9e9;
  border: 1px solid #f8caca;
}

.contactus-form__alert--success {
  color: #1d3915;
  background: #e8f4de;
  border: 1px solid #c7dfb4;
}

.contactus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: 100%;
  padding: 0 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.contactus-btn--primary {
  background: #1f4c18;
  color: #fff;
}

.contactus-btn--primary:hover {
  background: #255d1c;
}

.contactus-hero__media {
  overflow: hidden;
  background: #45f022;
}

.contactus-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 300ms ease;
}



@media (max-width: 767px) {
  .contactus-hero {
    margin-bottom: 2rem;
  }

  .contactus-hero__copy {
    padding: 1.5rem 1rem 2rem;
    order: 1;
  }

  .contactus-hero__media {
    order: 2;
    height: 300px;
    background: #5f933a;
  }

  .contactus-hero h1 {
    font-size: 2.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .contactus-form {
    margin-top: 1.5rem;
    gap: 1.25rem;
  }

  .contactus-form__grid {
    gap: 1.25rem;
  }

  .contactus-form input,
  .contactus-form textarea {
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 4px 0 14px;
  }

  .contactus-page .ln2-cta-btn-group--figma {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .contactus-page .ln2-cta-btn--dark,
  .contactus-page .ln2-cta-btn--light {
    width: 100%;
    max-width: 100%;
    height: 56px;
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1123px) {
  .contactus-hero {
    margin-bottom: 2rem;
  }

  .contactus-hero__copy {
    padding: 2.5rem;
    order: 1;
  }

  .contactus-hero__media {
    order: 2;
    height: 400px;
  }

  .contactus-hero h1 {
    font-size: 2.75rem;
    line-height: 1.1;
  }

  .contactus-form {
    margin-top: 2rem;
    gap: 1.5rem;
  }

  .contactus-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .contactus-form input,
  .contactus-form textarea {
    font-size: 1.25rem;
  }


}

@media (min-width: 1124px) {


  .contactus-hero {
    grid-template-columns: minmax(28rem, 44%) minmax(0, 1fr);
    align-items: stretch;
    min-height: 619px;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .contactus-form__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .contactus-hero__copy {
    width: 100%;
    max-width: min(40rem, 100%);
    min-height: 100%;
    gap: 0;
    padding: clamp(1.75rem, 2.5vw, 2.125rem);
  }

  .contactus-hero h1 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .contactus-form input {
    min-height: 45px;
  }

  .contactus-form textarea {
    min-height: 62px;
  }

  .contactus-hero__actions {
    margin-top: 12px;
  }

  .contactus-hero__media {
    min-height: 100%;
  }
}

@media (min-width: 1400px) {
  .contactus-hero__copy {
    max-width: min(42rem, 100%);
    padding: clamp(2rem, 2.2vw, 2.25rem);
  }
}
