/* ==========================================================================
   APPLY NOW — public application form
   Matches the warm cream/gold palette already used in Casting Calls
   and Quick Actions so it reads as part of the same site.
   ========================================================================== */

.apply-section {
  position: relative;
  background:
    radial-gradient(circle at left top, rgba(210, 180, 140, 0.1), transparent 30%),
    radial-gradient(circle at right bottom, rgba(139, 94, 60, 0.08), transparent 30%),
    #fdfbf8;
  padding: 110px 20px 90px;
  min-height: 100vh;
  overflow: hidden;
}

.apply-wrap {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.apply-head {
  text-align: center;
  margin-bottom: 34px;
}

.apply-head .subtext {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #8b5e3c;
  margin-bottom: 12px;
}

.apply-head h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  color: #1f1f1f;
  margin: 0 0 14px;
}

.apply-head p {
  max-width: 480px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #5e5e5e;
}

.apply-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(139, 94, 60, 0.12);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 34px rgba(45, 30, 20, 0.06);
}

.apply-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.apply-group {
  margin-bottom: 18px;
}

.apply-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 6px;
}

.apply-group input[type="text"],
.apply-group input[type="email"],
.apply-group input[type="tel"],
.apply-group input[type="number"],
.apply-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(139, 94, 60, 0.2);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: #1f1f1f;
  background: #fffefc;
}

.apply-group input:focus,
.apply-group textarea:focus {
  outline: none;
  border-color: #8b5e3c;
}

.apply-group textarea {
  min-height: 110px;
  resize: vertical;
}

.apply-category {
  display: flex;
  gap: 12px;
}

.apply-category label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(139, 94, 60, 0.2);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #5e5e5e;
}

.apply-category input {
  accent-color: #8b5e3c;
}

.apply-category input:checked + span {
  color: #8b5e3c;
}

.apply-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.apply-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 14px;
  background: #1f1f1f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.apply-submit:hover {
  background: #8b5e3c;
}

.apply-alert {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

.apply-alert-error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5c6c2;
}

.apply-alert-success {
  background: #eaf6ec;
  color: #1e7a34;
  border: 1px solid #c3e6cb;
  text-align: center;
  padding: 32px 24px;
}

.apply-alert-success h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

@media (max-width: 600px) {
  .apply-section {
    padding: 120px 14px 60px;
  }

  .apply-card {
    padding: 22px;
    border-radius: 20px;
  }

  .apply-row,
  .apply-category {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}
