.service-contact-card {
  text-align: left;
}

.service-contact-card .service-contact-copy {
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1.5;
}

.service-contact-card .service-contact-copy + .service-contact-copy {
  margin-top: 0.75rem;
}

.service-contact-card .service-contact-copy a,
.service-privacy-note a {
  color: var(--accent);
}

.service-contact-card .service-contact-copy a:hover {
  text-decoration: underline;
}

.service-contact-card a[href^="tel:"] {
  white-space: nowrap;
}

.service-form {
  margin-top: 1.5rem;
}

.service-form-message {
  min-height: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: var(--text-size-1);
  font-weight: 700;
}

.service-form-message.is-error,
.service-form-message.is-success {
  color: var(--accent);
}

.service-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-field {
  display: block;
}

.service-field:not(.service-field-half) {
  grid-column: 1 / -1;
}

.service-input {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(153, 138, 92, 0.14);
  color: var(--accent);
  font: inherit;
  font-weight: 600;
  padding: 1rem;
  outline: none;
}

.service-input::placeholder {
  color: var(--accent);
  opacity: 1;
}

.service-input:focus {
  color: var(--text);
}

.service-input:focus::placeholder {
  color: var(--text);
}

.service-textarea {
  min-height: 11rem;
  resize: vertical;
}

.service-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.sh-recaptcha-wrap {
  margin-top: 1rem;
}

.service-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.5rem;
  border: 0;
  border-radius: 0;
  background: rgba(153, 138, 92, 0.14);
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    padding 0.2s ease;
}

.service-submit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.875rem;
  height: 0.875rem;
  background-color: currentColor;
  opacity: 0;
  transform: translate(-0.35rem, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m9 6 6 6-6 6-1.4-1.4 4.6-4.6-4.6-4.6z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m9 6 6 6-6 6-1.4-1.4 4.6-4.6-4.6-4.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.service-submit:hover,
.service-submit:focus-visible {
  background: var(--accent);
  color: var(--white);
  padding-right: 2.125rem;
  padding-left: 1.25rem;
  outline: none;
}

.service-submit:hover::after,
.service-submit:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.service-privacy-note {
  margin: 0;
  margin-left: 0.25rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (max-width: 45rem) {
  .service-form-grid {
    grid-template-columns: 1fr;
  }
}
