.wrs-contact {
  padding-block: clamp(48px, 7vw, 88px);
}

.wrs-contact-head {
  text-align: center;
  margin-bottom: 40px;
}

.wrs-contact-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--wrs-surface);
  border: 1px solid var(--wrs-green);
  border-radius: var(--wrs-radius);
  padding: 32px;
}

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

.wrs-contact-form[hidden],
.wrs-contact-thanks[hidden] {
  display: none !important;
}

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

.wrs-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wrs-field-label {
  font-family: "Bungee", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--wrs-green);
}

.wrs-field input,
.wrs-field textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fff;
  padding: 14px 16px;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  transition:
    border-color 0.15s,
    background 0.15s;
  outline: none;
}

.wrs-field textarea {
  resize: vertical;
  min-height: 120px;
}

.wrs-field input:focus,
.wrs-field textarea:focus {
  border-color: var(--wrs-green);
  background: rgba(0, 0, 0, 0.5);
}

.wrs-contact-submit {
  align-self: flex-start;
  margin-top: 8px;
}

.wrs-contact-thanks {
  text-align: center;
  padding: 24px 0;
}

.wrs-contact-thanks h3 {
  font-size: 28px;
  color: var(--wrs-green);
  margin-bottom: 12px;
}

.wrs-contact-thanks p {
  font-family: "Syne", sans-serif;
  color: var(--wrs-text-muted);
  font-size: 16px;
}

@media (max-width: 600px) {
  .wrs-form-row {
    grid-template-columns: 1fr;
  }
  .wrs-contact-card {
    padding: 24px;
  }
  .wrs-contact-submit {
    width: 100%;
  }
}
