.contacts-page {
  padding: 60px 0 110px;
  background: #fffdf8;
}

.contacts-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
}

.contacts-hero__label,
.contacts-form__label {
  display: inline-flex;
  padding: 10px 22px;
  border-radius: 40px;
  background: #fff1ef;
  color: #e42313;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.contacts-hero h1 {
  font-size: 62px;
  line-height: 1.08;
  color: #222;
  margin-bottom: 28px;
  font-weight: 800;
}

.contacts-hero p {
  font-size: 20px;
  line-height: 1.9;
  color: #555;
}

.contacts-hero__image img {
  width: 100%;
  border-radius: 36px;
  display: block;
  object-fit: cover;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contacts-card {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  gap: 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.contacts-card__icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 50%;
  background: #fff3f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-card__content h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 12px;
}

.contacts-card__content a {
  text-decoration: none;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  transition: 0.3s ease;
}

.contacts-card__content a:hover {
  color: #e42313;
}

.contacts-form-wrapper {
  background: #fff;
  border-radius: 38px;
  padding: 50px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.07);
}

.contacts-form-head h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #222;
}

.contacts-form-head p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 34px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #ececec;
  background: #fafafa;
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 16px;
  color: #222;
  outline: none;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #e42313;
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.contacts-submit {
  width: 100%;
  min-height: 64px;
  border: none;
  border-radius: 60px;
  background: #e42313;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.contacts-submit:hover {
  background: #c81d10;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .contacts-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacts-hero h1 {
    font-size: 44px;
  }

  .contacts-form-wrapper {
    padding: 36px;
  }
}

@media (max-width: 767px) {
  .contacts-page {
    padding: 30px 0 70px;
  }

  .contacts-hero {
    margin-bottom: 60px;
  }

  .contacts-hero h1 {
    font-size: 34px;
  }

  .contacts-hero p,
  .contacts-form-head p {
    font-size: 16px;
    line-height: 1.8;
  }

  .contacts-form-wrapper {
    padding: 24px;
    border-radius: 26px;
  }

  .contacts-form-head h2 {
    font-size: 30px;
  }

  .contacts-card {
    padding: 22px;
    border-radius: 24px;
  }
}
