.contact-page {
  background: #fff;
  color: #111;
}

.contact-hero {
  padding: 160px 0 80px;
}

.contact-hero__inner {
  max-width: 760px;
}

.contact-hero h1 {
  margin: 0 0 24px;
  color: #8a652f;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.95;
  font-weight: 700;
}

.contact-hero__desc {
  max-width: 620px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 18px;
  line-height: 1.7;
}

.contact-main {
  padding: 40px 0 110px;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.contact-info h2 {
  margin: 0 0 48px;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
  color: #111;
}

.contact-info__items {
  display: grid;
  gap: 34px;
}

.contact-info__item span {
  display: block;
  margin-bottom: 8px;
  color: #b8874f;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-info__item a,
.contact-info__item p {
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: 18px;
  line-height: 1.6;
  text-decoration: none;
}

.contact-info__item a:hover {
  color: #b8874f;
}

.contact-info__details {
  margin-top: 48px;
  max-width: 520px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 15px;
  line-height: 1.8;
}

.contact-form {
  width: 100%;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: transparent;
  color: #111;
  padding: 16px 0;
  font-size: 16px;
  outline: none;
  box-shadow: none;
}

.contact-form textarea {
  min-height: 130px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 18px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #8a652f;
}

.contact-form input[type="submit"],
.contact-form button[type="submit"] {
  width: auto;
  min-width: 150px;
  margin-top: 18px;
  padding: 13px 28px;
  border: 0;
  border-radius: 999px;
  background: #8a652f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  background: #b8874f;
  transform: translateY(-2px);
}

.contact-content {
  padding: 0;
}

.contact-content__wysiwyg {
  max-width: 100%;
  color: rgba(0, 0, 0, 0.72);
  font-size: 18px;
  line-height: 0;
}
.contact-content__wysiwyg p {
  line-height: 0;
  margin:0;
}

.contact-content__wysiwyg h1,
.contact-content__wysiwyg h2,
.contact-content__wysiwyg h3,
.contact-content__wysiwyg h4,
.contact-content__wysiwyg h5,
.contact-content__wysiwyg h6 {
  color: #111;
}

@media (max-width: 991px) {
  .contact-hero {
    padding: 130px 0 60px;
  }

  .contact-main {
    padding: 30px 0 80px;
  }

  .contact-main__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 575px) {
  .contact-hero {
    padding: 110px 0 48px;
  }

  .contact-info__items {
    gap: 28px;
  }

  .contact-content {
    padding-bottom: 80px;
  }
}
