/* Careers page — builds on the booking page (book.css) */
.careers-intro h1 { font-size: clamp(2.4rem, 4.8vw, 4.1rem); }
.careers-intro p + p { margin-top: 14px; }
.careers-video-brief { margin-top: 36px; padding: 18px 20px; border-left: 3px solid #C8541E; background: rgba(125,139,111,.14); }
.careers-video-brief .label { color: #C8541E; }
.careers-video-brief p { margin-top: 8px; font-size: .95rem; }

#careersForm { display: grid; gap: 30px; }
.careers-step { border: 0; margin: 0; padding: 0; display: grid; gap: 18px; }
.careers-step + .careers-step { padding-top: 28px; background: linear-gradient(#2B2620, #2B2620) top / 100% 1px no-repeat; }
.careers-step legend { float: left; width: 100%; display: flex; align-items: baseline; gap: 12px; padding: 0; margin: 0; font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; }
.careers-step legend span { font-family: var(--font-mono); font-size: .7rem; font-weight: 600; letter-spacing: .12em; color: #C8541E; }
.careers-prompt { margin: -6px 0 0; font-size: 1.05rem; font-weight: 600; }

/* File pickers */
.careers-file { position: relative; display: grid; gap: 4px; padding: 16px 18px; border: 1px dashed rgba(43,38,32,.55); cursor: pointer; transition: border-color .2s var(--ease), background .2s var(--ease); min-width: 0; }
.careers-file input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.careers-file-kind { font-family: var(--font-mono); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.careers-file-name { font-size: 1rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.careers-file-name::before { content: '+ '; color: #C8541E; }
.careers-file-hint { font-size: .8rem; color: rgba(43,38,32,.62); }
.careers-file.has-file { border-style: solid; border-color: #2B2620; background: rgba(125,139,111,.16); }
.careers-file.has-file .careers-file-name::before { content: '✓ '; }
.careers-file.is-invalid { border-color: #C8541E; background: rgba(200,84,30,.06); }
.careers-file:focus-within { outline: 2px solid #C8541E; outline-offset: 2px; }
@media (hover: hover) { .careers-file:hover { border-color: #2B2620; } }

/* Video: record or upload */
.careers-tabs { display: flex; border: 1px solid #2B2620; width: fit-content; }
.careers-tabs button { font: inherit; font-size: .9rem; font-weight: 600; padding: 9px 16px; background: transparent; color: #2B2620; border: 0; cursor: pointer; }
.careers-tabs button + button { border-left: 1px solid #2B2620; }
.careers-tabs button[aria-selected="true"] { background: #2B2620; color: #F6EFE0; }
.careers-tabs button:focus-visible { outline: 2px solid #C8541E; outline-offset: 2px; }

.careers-rec[hidden], .careers-upload[hidden], .careers-progress[hidden], .careers-timer[hidden], .careers-stage-empty[hidden] { display: none; }
.careers-stage { position: relative; aspect-ratio: 16 / 9; background: #2B2620; overflow: hidden; }
.careers-stage video { width: 100%; height: 100%; object-fit: cover; display: block; }
.careers-stage video.is-live { transform: scaleX(-1); }
.careers-stage-empty { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 10px; color: rgba(246,239,224,.7); font-size: .9rem; text-align: center; padding: 16px; }
.careers-timer { position: absolute; top: 12px; left: 12px; display: flex; align-items: center; gap: 8px; padding: 6px 10px; background: rgba(43,38,32,.82); color: #F6EFE0; font-family: var(--font-mono); font-size: .8rem; }
.careers-timer i { width: 8px; height: 8px; border-radius: 50%; background: #C8541E; animation: pulse-dot 1.4s var(--ease) infinite; }
.careers-timer.is-ending span { color: #F0A57E; }
.careers-rec-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 12px; }
.careers-btn { padding: 10px 16px !important; font-size: .92rem; }
.careers-btn[hidden] { display: none; }
.careers-rec-status { font-size: .88rem; color: rgba(43,38,32,.72); }
.careers-file-wide { padding: 26px 20px; }

.careers-consent { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; font-size: .92rem; line-height: 1.45; cursor: pointer; }
.careers-consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: #C8541E; }

.careers-progress { display: grid; gap: 8px; font-size: .9rem; }
.careers-progress-track { height: 8px; background: rgba(43,38,32,.14); }
.careers-progress-fill { height: 100%; width: 0; background: #C8541E; transition: width .3s var(--ease); }

@media (max-width: 600px) {
  .careers-stage { aspect-ratio: 3 / 4; }
  .careers-tabs { width: 100%; }
  .careers-tabs button { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .careers-file, .careers-progress-fill { transition: none; }
  .careers-timer i { animation: none; }
}
.careers-step .book-row { align-items: end; }
