#wz-contact-root {
  width: 100%;
}

.wz-contact {
  width: 100%;
  margin: 8px auto 30px;
}

.wz-contact-grid {
  display: grid;
  grid-template-columns:
    minmax(260px, 0.82fr)
    minmax(0, 1.18fr);
  overflow: hidden;
  border:
    1px solid
    rgba(var(--v-theme-on-surface), 0.12);
  border-radius: 18px;
  background:
    rgb(var(--v-theme-surface));
  box-shadow:
    0 10px 30px
    rgba(0, 0, 0, 0.07);
}

.wz-contact-intro {
  padding: 42px 38px;
  background:
    linear-gradient(
      145deg,
      rgba(var(--v-theme-primary), 0.14),
      rgba(var(--v-theme-primary), 0.04)
    );
}

.wz-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 15px;
  background:
    rgb(var(--v-theme-primary));
}

.wz-contact-icon svg {
  width: 27px;
  height: 27px;
  fill:
    rgb(var(--v-theme-on-primary));
}

.wz-contact-kicker {
  margin: 0 0 9px;
  color:
    rgb(var(--v-theme-primary));
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.wz-contact-intro h2 {
  margin: 0 0 16px;
  color:
    rgb(var(--v-theme-on-surface));
  font-size:
    clamp(1.55rem, 3vw, 2rem);
  line-height: 1.2;
}

.wz-contact-copy {
  margin: 0;
  color:
    rgba(
      var(--v-theme-on-surface),
      0.76
    );
  font-size: 0.98rem;
  line-height: 1.72;
}

.wz-contact-email {
  margin-top: 30px;
  padding-top: 24px;
  border-top:
    1px solid
    rgba(
      var(--v-theme-on-surface),
      0.12
    );
}

.wz-contact-email span {
  display: block;
  margin-bottom: 5px;
  color:
    rgba(
      var(--v-theme-on-surface),
      0.62
    );
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wz-contact-email a {
  color:
    rgb(var(--v-theme-primary));
  font-weight: 700;
  text-decoration: none;
}

.wz-contact-email a:hover {
  text-decoration: underline;
}

.wz-contact-note {
  margin: 26px 0 0;
  color:
    rgba(
      var(--v-theme-on-surface),
      0.55
    );
  font-size: 0.78rem;
  line-height: 1.55;
}

.wz-contact-card {
  padding: 42px;
}

.wz-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.wz-contact-field {
  margin-bottom: 20px;
}

.wz-contact-field label {
  display: inline-block;
  margin-bottom: 8px;
  color:
    rgb(var(--v-theme-on-surface));
  font-size: 0.9rem;
  font-weight: 700;
}

.wz-contact-label-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.wz-contact-count {
  margin-bottom: 8px;
  color:
    rgba(
      var(--v-theme-on-surface),
      0.52
    );
  font-size: 0.76rem;
}

.wz-contact-field input,
.wz-contact-field textarea {
  box-sizing: border-box;
  width: 100%;
  border:
    1px solid
    rgba(
      var(--v-theme-on-surface),
      0.23
    );
  border-radius: 10px;
  outline: none;
  background:
    rgb(var(--v-theme-surface));
  color:
    rgb(var(--v-theme-on-surface));
  font: inherit;
}

.wz-contact-field input {
  min-height: 48px;
  padding: 10px 13px;
}

.wz-contact-field textarea {
  min-height: 170px;
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.55;
}

.wz-contact-field input:focus,
.wz-contact-field textarea:focus {
  border-color:
    rgb(var(--v-theme-primary));
  box-shadow:
    0 0 0 3px
    rgba(var(--v-theme-primary), 0.13);
}

.wz-contact-field
.wz-contact-invalid {
  border-color:
    rgb(var(--v-theme-error));
}

.wz-contact-error {
  min-height: 17px;
  margin-top: 5px;
  color:
    rgb(var(--v-theme-error));
  font-size: 0.76rem;
}

.wz-contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.wz-contact-status {
  display: none;
  margin: 2px 0 18px;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.wz-contact-status-success {
  display: block;
  border:
    1px solid
    rgba(var(--v-theme-success), 0.3);
  background:
    rgba(var(--v-theme-success), 0.1);
  color:
    rgb(var(--v-theme-success));
}

.wz-contact-status-error {
  display: block;
  border:
    1px solid
    rgba(var(--v-theme-error), 0.3);
  background:
    rgba(var(--v-theme-error), 0.09);
  color:
    rgb(var(--v-theme-error));
}

.wz-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 46px;
  padding: 10px 22px;
  border: 0;
  border-radius: 9px;
  background:
    rgb(var(--v-theme-primary));
  color:
    rgb(var(--v-theme-on-primary));
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.wz-contact-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.wz-contact-spinner {
  display: none;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border:
    2px solid
    rgba(
      var(--v-theme-on-primary),
      0.4
    );
  border-top-color:
    rgb(var(--v-theme-on-primary));
  border-radius: 50%;
  animation:
    wz-contact-spin
    0.8s linear infinite;
}

.wz-contact-sending
.wz-contact-spinner {
  display: inline-block;
}

@keyframes wz-contact-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  .wz-contact-grid {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .wz-contact-intro {
    padding: 30px 24px;
  }

  .wz-contact-card {
    padding: 28px 22px 30px;
  }

  .wz-contact-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wz-contact-submit {
    width: 100%;
  }
}
