/* ===== contact.css ===== */

/* ===== contact.css ===== */

/* ============================================================
   CONTACT.CSS — Секция контактов и формы (#contact)
   ============================================================ */

#contact {
  background: var(--white);
  padding: 80px 60px;
}

/* ── Двухколоночная компоновка ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  margin-top: 56px;
}

/* ── Левая колонка: описание + реквизиты ── */
.contact-desc {
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 56px;
}

.contact-list {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:first-child {
  border-top: 1px solid var(--line);
}

.c-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.c-info h4 {
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.c-info p {
  font-size: 16px;
  color: var(--black);
}

/* ── Правая колонка: форма ── */
.form-header {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 36px;
}

/* Поле формы */
.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--off);
  border: 1px solid transparent;
  color: var(--black);
  font-family: 'DM Sans', system-ui, -apple-system, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color .25s, background .25s;
  resize: none;
  appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.field select option {
  background: var(--white);
}

/* Ряд из двух полей */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Кнопка отправки */
.form-submit {
  width: 100%;
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', system-ui, -apple-system, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  cursor: none;
  margin-top: 6px;
  transition: background .3s;
}

.form-submit:hover {
  background: var(--gold);
}
