.apply-page {
  padding: 8rem 2rem 6rem;
  max-width: 880px;
  margin: 0 auto;
}

.apply-page__head { margin-bottom: 3.5rem; }
.apply-page__heading {
  font-family: var(--font-display);
  font-size: var(--fs-section);
  letter-spacing: var(--tracking-display);
  line-height: 0.95;
}
.apply-page__subhead {
  font-family: var(--font-editorial);
  font-size: clamp(1.125rem, 1.6vw, 1.4rem);
  color: var(--cream-dim);
  margin-top: 1rem;
  max-width: 56ch;
  line-height: 1.55;
}

/* ===== Form layout ===== */
.apply-form { display: flex; flex-direction: column; gap: 3rem; }

.apply-form__section { display: flex; flex-direction: column; gap: 1.5rem; }
.apply-form__section-title {
  font-family: var(--font-mono);
  font-size: var(--fs-meta);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--ember);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--smoke);
}

.apply-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.apply-form__bio { min-height: 10rem; }

.apply-form__helper {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  margin-top: 0.25rem;
}

.apply-form__counter {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  text-align: right;
  margin-top: 0.25rem;
}
.apply-form__counter.is-warn { color: var(--ember); }

.apply-form__error {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--ember);
  min-height: 0.9rem;
}
.apply-form__error:empty { display: none; }

.apply-form__submit { margin-top: 1rem; align-self: flex-start; }

.apply-form__progress {
  height: 2px;
  background: var(--smoke);
  position: relative;
  overflow: hidden;
}
.apply-form__progress[hidden] { display: none; }
.apply-form__progress-bar {
  position: absolute; inset: 0;
  width: 0%;
  background: var(--ember);
  transition: width 200ms var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .apply-form__progress-bar { transition: none; }
}

.apply-form__status { padding: 1rem; border: 1px solid var(--smoke); display: none; }
.apply-form__status.is-error { display: block; border-color: var(--ember); color: var(--ember); }

/* ===== Dropzone ===== */
.dropzone {
  position: relative;
  border: 1px dashed var(--cream-dim);
  background: var(--ash);
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  cursor: pointer;
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out);
}
.dropzone:hover { border-color: var(--cream); }
.dropzone.is-dragover { border-color: var(--ember); background: rgba(232, 114, 44, 0.06); }
.dropzone.is-filled { border-style: solid; border-color: var(--cream); }
.dropzone.has-error { border-color: var(--ember); }

.dropzone__input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
}
.dropzone__hint {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: var(--tracking-mono);
  color: var(--cream-dim);
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
}
.dropzone.is-filled .dropzone__hint { display: none; }

.dropzone__filled {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
}
.dropzone__filled[hidden] { display: none; }
.dropzone__filename {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cream);
  word-break: break-all;
}
.dropzone__remove {
  position: relative; z-index: 2;
  background: transparent;
  border: 1px solid var(--cream-dim);
  color: var(--cream-dim);
  padding: 0.4rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.dropzone__remove:hover { color: var(--ember); border-color: var(--ember); }

/* ===== Success card ===== */
.apply-success {
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid var(--smoke);
  background: var(--ash);
  position: relative;
  overflow: hidden;
}
.apply-success[hidden] { display: none; }
.apply-success::before {
  content: '';
  position: absolute;
  inset: -50% -50% auto auto;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(232, 114, 44, 0.18), transparent 70%);
  pointer-events: none;
}
.apply-success__mark {
  font-size: 3rem;
  color: var(--ember);
  margin-bottom: 1rem;
  line-height: 1;
}
.apply-success__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: var(--tracking-display);
  margin-bottom: 1rem;
}
.apply-success__body {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--cream-dim);
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Roster page CTA (used on /roster) ===== */
.apply-cta {
  margin-top: 6rem;
  padding: 4rem 2rem;
  border-top: 1px solid var(--smoke);
  border-bottom: 1px solid var(--smoke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.apply-cta__text { display: flex; flex-direction: column; gap: 0.5rem; }
.apply-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: var(--tracking-display);
  line-height: 1;
}
.apply-cta__body {
  font-family: var(--font-editorial);
  color: var(--cream-dim);
  font-size: 1.1rem;
}

/* ===== Booking page secondary CTA ===== */
.booking-apply-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--smoke);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
}
.booking-apply-cta a {
  color: var(--cream-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.booking-apply-cta a:hover { color: var(--ember); border-bottom-color: var(--ember); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .apply-page { padding: 5.5rem 1.25rem 4rem; }
  .apply-form__row { grid-template-columns: 1fr; }
  .apply-cta { flex-direction: column; align-items: flex-start; padding: 3rem 1.5rem; }
}
