/* =========================
   CONTACT PAGE
========================= */

.contact-hero{
  max-width: 800px;
  margin: 25px auto 25px;
  text-align: center;
  padding: 0 25px;
}

.contact-hero .eyebrow{
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #c58d2d;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-hero h1{
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  margin-bottom: 20px;
}

.contact-hero p{
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.contact-grid{
  width: 100%;
  max-width: 850px;
  margin: 0 auto 80px;
  padding: 0 30px;
  display: block;
}

.contact-form{
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

.contact-form label{
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #222;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: .2s;
}

.contact-form input:not([type="radio"]):focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: #c58d2d;
  box-shadow: 0 0 0 3px rgba(197,141,45,.12);
}

.contact-form textarea{
  resize: vertical;
  min-height: 140px;
}

.radio-group{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.radio-group label{
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}

.radio-group input{
  width: auto;
}

#domain-field{
  margin-top: 15px;
}

.contact-form button{
  margin-top: 30px;
  width: 100%;
  border: none;
  background: #c58d2d;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: .25s;
}

.contact-form button:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(197,141,45,.25);
}

@media (max-width: 768px){

  .contact-hero{
    margin: 0 auto 10px;
    padding: 0 18px;
  }

  .contact-hero h1{
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 10px;
  }

  .contact-hero p{
    font-size: .95rem;
    line-height: 1.5;
  }

  .contact-grid{
    max-width: 100%;
    margin: 0 auto 50px;
    padding: 0 15px;
  }

  .contact-form{
    max-width: 100%;
    padding: 20px;
  }

  .radio-group{
    flex-direction: column;
    gap: 10px;
  }
}