.contact {
  padding: 6.5rem 2rem;
  background: #f1e9d8;
}

.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-style: italic;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #6b5c4c;
  margin-bottom: 2.2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: #2a1f16;
}

.contact-details i {
  color: #b5502e;
  width: 18px;
}

.contact-social {
  display: flex;
  gap: 0.9rem;
}

.contact-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9972f;
  border-radius: 50%;
  color: #b5502e;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-social a:hover {
  background: #b5502e;
  color: #fffdf9;
}

.contact-form {
  background: #fffdf9;
  padding: 2.6rem;
  border-radius: 4px;
  border: 1px solid #e7dcc8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  margin-bottom: 1.3rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  color: #2a1f16;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid #e7dcc8;
  border-radius: 2px;
  background: #faf5ec;
  font-size: 0.92rem;
  color: #2a1f16;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b5502e;
}

@media (max-width: 980px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 560px) {
  .contact {
    padding: 5rem 1.4rem;
  }
  .contact-form {
    padding: 1.8rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
