.contact-main {
  width: min(92%, 900px);
  margin-inline: auto;
}

.contact-hero {
  padding-block: clamp(54px, 8vw, 96px) clamp(24px, 5vw, 44px);
}

.contact-hero h1 {
  margin: 0 0 18px;
  color: var(--site-ink);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-hero p,
.contact-form p,
.contact-message p {
  color: var(--site-muted);
  line-height: 1.72;
}

.contact-form {
  display: grid;
  gap: 22px;
  margin-bottom: clamp(70px, 9vw, 112px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-soft);
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field label {
  color: var(--site-ink);
  font-weight: 720;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--site-ink);
  font: inherit;
  line-height: 1.5;
  padding: 0.86rem 0.96rem;
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-help {
  margin: 0;
  font-size: 0.94rem;
}

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

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-turnstile {
  min-height: 65px;
}

.contact-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--site-teal);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 740;
  line-height: 1;
  padding: 0.82rem 1.24rem;
  box-shadow: 0 12px 26px rgba(15, 159, 154, 0.2);
}

.contact-button:hover {
  background: var(--site-teal-dark);
}

.contact-message {
  margin-bottom: clamp(70px, 9vw, 112px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-soft);
}

.contact-message h1 {
  margin: 0 0 16px;
  color: var(--site-ink);
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.contact-language {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: var(--site-muted);
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .contact-actions,
  .contact-button {
    width: 100%;
  }
}
