.contact-layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.contact-form { min-width: 0; }
.contact-form > p:first-child { color: var(--text-muted); }
.contact-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.contact-field { margin-bottom: 24px; }
.contact-field label { display: block; margin-bottom: 8px; font-weight: 500; }
.contact-field input, .contact-field textarea { display: block; width: 100%; min-width: 0; min-height: 48px; padding: 12px 16px; font: inherit; color: var(--text-main); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--card-radius); }
.contact-field textarea { resize: vertical; }
.contact-privacy { margin-bottom: 24px; }
.contact-consent { display: flex; align-items: center; gap: 8px; min-height: 44px; cursor: pointer; }
.contact-check-target { display: flex; align-items: center; justify-content: center; flex: 0 0 44px; min-height: 44px; }
.contact-check-target input { width: 22px; height: 22px; margin: 0; accent-color: var(--cyan); cursor: pointer; }
.contact-privacy a { display: inline-flex; align-items: center; min-height: 44px; }
.contact-form button { cursor: pointer; }
.contact-status { margin: 24px 0 0; scroll-margin-top: calc(var(--header-height) + 24px); }
.contact-status:empty { margin: 0; }
.contact-note { padding: 24px; }
.contact-note h2 { font-size: 28px; }
.contact-note p { font-size: 16px; }
@media (max-width: 1199px) {
  .contact-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .contact-note h2 { font-size: 24px; }
}
@media (max-width: 767px) {
  .contact-fields { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .contact-note { display: block; }
  .contact-note .home-icon { margin-bottom: 16px; }
  .contact-note h2 { font-size: 22px; }
}
