.contact-form-page {
  background: #000;
  color: #E8E6E3;
}

.contact-form-section {
  min-height: calc(100vh - 104px);
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: start;
}

.contact-form-section .contact-form {
  width: 100%;
}

.contact-form-section .contact-section__intro {
  position: static;
  width: 100%;
  max-width: none;
}

.contact-form-section h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 98px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.contact-form-section h1 em {
  color: #a56f63;
  font-style: normal;
}

.contact-form-section__back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 58px;
  border-bottom: 1px solid rgba(217, 155, 127, 0.55);
  padding-bottom: 7px;
  color: #d99b7f;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.contact-form-section__back span {
  font-size: 17px;
}

.contact-form__field--wide,
.contact-form__choice-group--wide {
  grid-column: 1 / -1;
}

.contact-form__choice-group {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.contact-form__choice-group legend {
  margin-bottom: 10px;
  color: #E8E6E3;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form__choice-group label {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 230, 227, 0.25);
  padding: 10px;
  color: rgba(232, 230, 227, 0.7);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.contact-form__choice-group input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form__choice-group label:has(input:checked) {
  border-color: #d99b7f;
  background: rgba(217, 155, 127, 0.16);
  color: #E8E6E3;
}

.contact-form__choice-group label:has(input:focus-visible) {
  outline: 2px solid #d99b7f;
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .contact-form-page .site-header {
    height: 82px;
  }

  .contact-form-page .navigation {
    display: none;
  }

  .contact-form-page .brand {
    top: 23px;
    left: 18px;
    font-size: 31px;
  }

  .contact-form-page .explore {
    top: 18px;
    right: 18px;
    width: 140px;
    height: 42px;
    font-size: 14px;
  }

  .contact-form-section {
    display: block;
    min-height: 0;
    padding: 74px 18px 90px;
  }

  .contact-form-section h1 {
    margin-top: 82px;
    font-size: clamp(51px, 15vw, 82px);
  }

  .contact-form-section .contact-section__description {
    max-width: none;
    margin-top: 34px;
  }

  .contact-form-section__back {
    margin-top: 36px;
  }

  .contact-form-section .contact-form {
    margin-top: 74px;
  }

  .contact-form__choice-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form__choice-group label:last-child {
    grid-column: 1 / -1;
  }

}
