.mh-contact {
  --mh-navy: #1f355e;
  --mh-navy-deep: #0b1f73;
  --mh-gold: #8a6a28;
  --mh-bg: #f7f8fa;
  --mh-line: #e6e8ee;
  --mh-text: #2a3340;
  --mh-muted: #6b7280;
  max-width: 920px;
  margin: 0 auto;
  color: var(--mh-text);
}

.mh-contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.mh-contact__card {
  background: #fff;
  border: 1px solid var(--mh-line);
  border-radius: 20px;
  padding: 28px;
}

.mh-contact__card--info {
  background: linear-gradient(165deg, #0b1f73 0%, #1f355e 100%);
  color: #fff;
  border: none;
}

.mh-contact__eyebrow {
  display: inline-block;
  color: var(--mh-gold);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.mh-contact__card--info .mh-contact__eyebrow {
  color: #e8c878;
}

.mh-contact h2,
.mh-contact h3 {
  margin: 0 0 12px;
  color: inherit;
  font-size: 1.45rem;
  line-height: 1.45;
}

.mh-contact__card--info p,
.mh-contact__lead {
  margin: 0 0 18px;
  line-height: 1.9;
  opacity: 0.92;
  font-size: 0.98rem;
}

.mh-contact__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.mh-contact__meta li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mh-contact__meta span {
  font-size: 12px;
  opacity: 0.7;
}

.mh-contact__meta a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.mh-contact__meta a:hover {
  color: #e8c878;
}

.mh-contact .mh-form__row {
  margin-bottom: 14px;
}

.mh-contact .mh-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mh-contact label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--mh-navy);
}

.mh-contact input,
.mh-contact textarea,
.mh-contact select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--mh-line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--mh-text);
  box-sizing: border-box;
}

.mh-contact input:focus,
.mh-contact textarea:focus,
.mh-contact select:focus {
  outline: 2px solid rgba(11, 31, 115, 0.25);
  border-color: var(--mh-navy);
}

.mh-contact .mh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 6px;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--mh-navy-deep);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.mh-contact .mh-btn:hover {
  background: var(--mh-navy);
}

.mh-contact .mh-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.mh-contact__msg {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.mh-contact__msg.is-ok {
  background: #eef8f0;
  color: #1f6b3a;
}

.mh-contact__msg.is-err {
  background: #fdeeee;
  color: #9b1c1c;
}

.mh-contact__hint {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--mh-muted);
  line-height: 1.8;
}

.mh-contact__hint a {
  color: var(--mh-gold);
  font-weight: 600;
}

@media (max-width: 781px) {
  .mh-contact__grid {
    grid-template-columns: 1fr;
  }
  .mh-contact .mh-form__row--2 {
    grid-template-columns: 1fr;
  }
}
