.contact-form__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-form__heading span {
  color: var(--ink);
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.contact-form__heading strong {
  max-width: 190px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  text-align: right;
}

.form-notice {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 28px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.form-notice--success {
  color: #124a39;
  background: #e7f6ef;
}

.form-notice--error {
  color: #7b183a;
  background: #fdeaf1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-field label {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.form-field label > span {
  color: var(--pink);
}

.form-field label small {
  margin-left: 6px;
  color: #6c728b;
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bbc0d2;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select {
  height: 50px;
}

.form-field textarea {
  min-height: 125px;
  padding: 12px 0;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--navy);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-width: 2px;
  border-color: var(--pink);
  background: #fbfbfe;
}

.form-field [aria-invalid="true"] {
  border-color: #b3264f;
}

.field-error {
  display: none;
  margin-top: 7px;
  color: #a81843;
  font-size: 11px;
  line-height: 1.45;
}

.field-error.is-visible {
  display: block;
}

.form-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 11px;
  color: #565c74;
  font-size: 11px;
  line-height: 1.55;
  cursor: pointer;
}

.form-consent input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--pink);
}

.field-error--consent {
  margin-top: -17px;
  margin-left: 33px;
}

.form-submit {
  align-self: flex-start;
  min-width: 245px;
  gap: 18px;
}

.form-submit svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.form-submit:hover svg {
  transform: translateX(4px);
}

.form-submit.is-loading {
  cursor: wait;
  opacity: 0.78;
}

.form-footnote {
  margin: -10px 0 0;
  color: #71778d;
  font-size: 10px;
}

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


.kk-contact-block { position:relative; }
@media(max-width:680px){.kk-contact-block .form-row--two{grid-template-columns:1fr}.kk-contact-block .contact-form__heading{align-items:flex-start;flex-direction:column}.kk-contact-block .contact-form__heading strong{text-align:left}.kk-contact-block .form-submit{width:100%;min-width:0}}
