/* Modal styles */
#modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.4);
}
#modal .modal-content {
  background: #fff;
  margin: 10vh auto;
  padding: 2rem 2.5rem;
  border-radius: 8px;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  position: relative;
  text-align: left;
}
#closeModal {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
#contactForm label {
  display: block;
  margin: 1rem 0 0.3rem 0;
  font-weight: 600;
}
#contactForm input, #contactForm textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
#contactForm button[type="submit"] {
  background: #A25230;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
}
#formStatus {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  color: #A25230;
  min-height: 1.2em;
}
