:root {
  --bg: #111215;
  --bg-2: #17181c;
  --bg-3: #22242a;
  --text: #f4f2ed;
  --muted: #94918a;
  --line: #2a2c31;
  --line-2: #3c3f46;
  --amber: #ff9f1c;
  --amber-ink: #111215;
  --busy: #3a3030;
  --busy-text: #c4a4a4;
  --ok: #9bb89a;
  --display: "Syne", "Arial Narrow", "Arial", sans-serif;
  --font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color-scheme: dark;
}

@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("/assets/fonts/syne-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("/assets/fonts/syne-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) var(--bg);
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--line-2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button {
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
a, button, .job {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.wrap {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.stage {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0a0b0d;
}
.stage-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0b0d url("/assets/img/theater-stage.jpg") center / cover no-repeat;
}
.stage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(.85) contrast(1.05);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.stage-video.is-off { display: none; }
.stage-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 11, 14, .55) 0%, rgba(10, 11, 14, .42) 40%, rgba(17, 18, 21, .78) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10, 11, 14, .55) 0%, rgba(10, 11, 14, .18) 55%, rgba(10, 11, 14, .45) 100%);
  pointer-events: none;
}
.stage > .top {
  position: relative;
  z-index: 20;
}
.stage > .hero {
  position: relative;
  z-index: 1;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 20;
  padding: calc(28px + env(safe-area-inset-top, 0px)) 0 0;
}
.nav-toggle {
  display: none;
  position: relative;
  z-index: 60;
  width: 44px;
  height: 44px;
  margin: -8px -8px -8px 0;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  position: relative;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle-bars::before {
  position: absolute;
  top: -7px;
}
.nav-toggle-bars::after {
  position: absolute;
  top: 7px;
}
.nav-open .nav-toggle-bars {
  background: transparent;
}
.nav-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}
.mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.02em;
  flex: 0 0 auto;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  color: var(--text);
  background-image: linear-gradient(var(--amber), var(--amber));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition:
    color .25s ease,
    background-size .4s cubic-bezier(.22, 1, .36, 1);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
}
.nav a {
  font-size: 14px;
  color: #c9c5bc;
  border-bottom: 1px solid transparent;
}
.nav a[aria-current="page"] {
  color: var(--text);
  border-color: var(--amber);
}
.nav-admin {
  color: var(--amber) !important;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 72px 0 96px;
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(52px, 13vw, 104px);
  line-height: .92;
  letter-spacing: -.035em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .45);
}
.who {
  margin: 28px 0 0;
  font-size: 16px;
  color: #c9c5bc;
}
.lead {
  max-width: 36em;
  margin: 24px 0 0;
  color: #c2beb5;
  font-size: 18px;
  line-height: 1.55;
}
.lead.tight { margin-top: 0; }

.hire {
  display: block;
  width: 100%;
  margin: 56px 0 0;
  padding: 26px 24px;
  color: var(--amber-ink);
  font-family: var(--display);
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -.03em;
  text-align: left;
  line-height: 1;
  background-color: var(--amber);
  background-image: linear-gradient(
    110deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, .38) 50%,
    transparent 62%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: 100% 0;
  box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
  transition:
    transform .35s cubic-bezier(.22, 1, .36, 1),
    background-color .25s ease,
    box-shadow .35s ease;
}
.hire:active {
  background-color: #ffb247;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 159, 28, .2);
  animation: none;
}
@keyframes hire-sweep {
  0% { background-position: 100% 0; }
  100% { background-position: 0% 0; }
}

.section {
  padding: 0 0 88px;
  border-top: 1px solid var(--line);
}

.skills {
  margin: 36px 0 0;
  max-width: 38em;
  color: var(--muted);
  font-size: 16px;
}

.tags-section {
  text-align: center;
  border-top: 0;
  padding-top: 28px;
}
.tags-label {
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 22px 0 8px;
  max-width: 52em;
  margin: 0 auto;
}
.tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line-2);
  color: #c9c5bc;
  font-size: 14px;
  letter-spacing: .01em;
  background: transparent;
  transition:
    color .25s ease,
    border-color .25s ease,
    background-color .25s ease,
    transform .3s cubic-bezier(.22, 1, .36, 1),
    box-shadow .3s ease;
}
.tags span:hover {
  color: var(--amber-ink);
  border-color: var(--amber);
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 159, 28, .18);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background: #0a0b0d;
}
.cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0b0d url("/assets/img/concert-crowd.jpg") center 45% / cover no-repeat;
}
.cta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  filter: saturate(.85) contrast(1.05);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cta-video.is-off { display: none; }
.cta-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 21, .72) 0%, rgba(17, 18, 21, .55) 45%, rgba(17, 18, 21, .78) 100%),
    linear-gradient(90deg, rgba(10, 11, 14, .45), transparent 50%, rgba(10, 11, 14, .4));
  pointer-events: none;
}
.cta-front {
  position: relative;
  z-index: 1;
}
.cta-tab {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(17, 18, 21, .55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  position: relative;
}
.cta-tab::before,
.cta-tab::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--amber);
  border-style: solid;
  pointer-events: none;
}
.cta-tab::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}
.cta-tab::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
}
.cta-label {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
}
.cta-heading {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.03em;
  line-height: 1.05;
}
.cta-text {
  margin: 14px 0 0;
  max-width: 42em;
  color: #c9c5bc;
  font-size: 16px;
  line-height: 1.55;
}
.cta-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid var(--amber);
  background: var(--amber);
  color: var(--amber-ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  white-space: nowrap;
  transition:
    background-color .25s ease,
    color .25s ease,
    transform .3s cubic-bezier(.22, 1, .36, 1),
    box-shadow .3s ease;
}
.cta-action-arrow {
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.site-foot {
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 40px 0 28px;
}
.foot-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.02em;
  flex: 0 0 auto;
}
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
}
.foot-nav a,
.foot-hire {
  padding: 0;
  font-size: 14px;
  color: var(--muted);
  text-align: left;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.foot-hire {
  color: var(--amber);
}
.foot-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding: 18px 0 calc(40px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.jobs {
  display: grid;
  padding-bottom: 0;
}
.job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 12px 28px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  box-sizing: border-box;
  transition:
    padding .35s cubic-bezier(.22, 1, .36, 1),
    background-color .35s ease,
    border-color .35s ease;
}
.job-text {
  min-width: 0;
  flex: 1;
  display: grid;
  gap: 8px;
}
.job h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  transition: color .25s ease;
}
.job p {
  margin: 0;
  max-width: 40em;
  color: var(--muted);
  line-height: 1.5;
  transition: color .25s ease;
}
.job-arrow {
  flex: 0 0 auto;
  font-size: 22px;
  color: var(--amber);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}
.job:hover {
  padding-left: 12px;
  border-color: rgba(255, 159, 28, .35);
  background: linear-gradient(90deg, rgba(255, 159, 28, .06), transparent 70%);
}
.job:hover h2 { color: var(--amber); }
.job:hover p { color: #c9c5bc; }
.job:hover .job-arrow {
  opacity: 1;
  transform: translateX(0);
}

.page { padding: 48px 0 96px; }
.back {
  display: inline-flex;
  align-items: center;
  margin: 0 0 28px;
  color: var(--amber);
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease, transform .25s ease;
}
.back:hover {
  color: var(--text);
  border-color: var(--text);
  transform: translateX(-3px);
}
.page .kicker {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}
.page .kicker a { color: var(--muted); border-bottom: 1px solid transparent; }
.page .kicker a:hover { color: var(--text); border-color: var(--text); }
.page-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 8vw, 72px);
  line-height: .95;
  letter-spacing: -.03em;
}
.page-copy {
  max-width: 38em;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.page-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  max-width: 36em;
}
.page-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
}
.page-list li:last-child { border-bottom: 1px solid var(--line); }
.page .hire { margin-top: 48px; }
.page a.hire { color: var(--amber-ink); }

.request-edit { padding-bottom: 4rem; }
.request-edit .page-title { margin-top: 8px; }
.request-panel {
  margin-top: 28px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.request-done {
  margin-top: 32px;
  padding: 32px 0 8px;
}
.request-done h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.request-done p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 24px;
}
.request-edit .cal { touch-action: none; }
.request-verify { max-width: 420px; }
.request-verify .send { margin-top: 4px; }
.request-edit .field input[readonly] {
  opacity: .85;
  cursor: default;
}

.site-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 36px 0 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.site-link-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.site-link strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.site-link-text span {
  color: var(--muted);
  font-size: 15px;
}
.site-link .job-arrow {
  opacity: 1;
  transform: none;
}

body.hire-open { overflow: hidden; }
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 14, .84);
  z-index: 40;
  display: none;
  padding: max(12px, env(safe-area-inset-top, 0px)) max(12px, env(safe-area-inset-right, 0px)) max(12px, env(safe-area-inset-bottom, 0px)) max(12px, env(safe-area-inset-left, 0px));
  overflow: hidden;
}
.overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel {
  width: min(960px, 100%);
  max-height: 100%;
  max-height: calc(100dvh - 24px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  min-height: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.panel-head {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.panel-head h2 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0;
}
.panel-head p { margin: 4px 0 0; color: var(--muted); font-size: 13px; max-width: 46ch; }
.panel-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.close {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line-2);
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.close::before,
.close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--text);
}
.close::before { transform: translate(-50%, -50%) rotate(45deg); }
.close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.close:hover { background: var(--bg-3); }

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}
.cal-col, .form-col { padding: 14px 16px; }
.form-col { border-left: 1px solid var(--line); }
.overlay .cal-nav { margin-bottom: 8px; }
.overlay .hint { margin: 0 0 8px; }
.overlay .cal { touch-action: none; }
.overlay .dow { padding: 2px 0 6px; }
.overlay .day {
  aspect-ratio: auto;
  height: 30px;
  font-size: 13px;
}
.overlay .hours { margin-top: 10px; }
.overlay .field { margin: 0 0 10px; gap: 4px; }
.overlay .field input,
.overlay .field select,
.overlay .field textarea { padding: 8px 10px; }
.overlay .field textarea { min-height: 64px; }
.overlay .send { padding: 12px; font-size: 16px; margin-top: 4px; }

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-nav h3 { margin: 0; font-size: 16px; font-weight: 500; }
.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-2);
}
.icon-btn:hover { background: var(--bg-3); }
.hint { font-size: 13px; color: var(--muted); margin: 0 0 14px; }

.cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  user-select: none;
  -webkit-user-select: none;
}
.dow {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  padding: 6px 0 10px;
}
.day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  position: relative;
}
.day:hover:not(:disabled):not(.empty) { border-color: var(--line-2); }
.day.empty { cursor: default; }
.day.selected { background: var(--amber); color: var(--amber-ink); }
.day.busy {
  color: var(--text);
  background: #5a3530;
  cursor: not-allowed;
}
.day.partial::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 5px;
  height: 5px;
  background: var(--amber);
}
.day.today { box-shadow: inset 0 0 0 1px var(--line-2); }
.day:disabled { opacity: .28; cursor: not-allowed; }

.hours { margin-top: 22px; }
.hours-row { display: flex; gap: 10px; align-items: end; }
.field { display: grid; gap: 6px; margin: 0 0 14px; }
.field span {
  font-size: 12px;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  background: var(--bg);
  border: 1px solid var(--line-2);
  padding: 11px 12px;
  outline: none;
  width: 100%;
  border-radius: 0;
}
.field textarea { min-height: 120px; resize: vertical; }
.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--amber);
}
.check {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 14px;
}
.picked { font-size: 13px; color: var(--muted); min-height: 1.4em; margin: 8px 0 0; }

.send {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: var(--amber);
  color: var(--amber-ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.send:hover { background: #ffb247; }
.send:disabled { opacity: .45; cursor: wait; }
.err { color: #d4a0a0; font-size: 13px; min-height: 1.3em; margin: 8px 0 0; }
.err.ok { color: var(--ok); }
.auth-forgot {
  margin: 14px 0 0;
}
.auth-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.auth-link:hover { color: var(--text); }
.okmsg { color: var(--ok); }

.done { display: none; padding: 56px 32px; }
.overlay.hire-success #hire-form-wrap { display: none; }
.overlay.hire-success #hire-done { display: block; }
.done h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.done p { color: var(--muted); max-width: 42ch; }
.done-close { margin-top: 20px; min-width: 140px; }

.auth-page, .tool-page { min-height: 100vh; min-height: 100dvh; }
.tool-page .wrap {
  width: min(1120px, calc(100% - 40px));
}
.auth-box {
  width: min(400px, calc(100% - 40px));
  margin: 18vh auto 0;
}
.auth-box h1 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.03em;
  margin: 0 0 8px;
}
.auth-box p { color: var(--muted); margin: 0 0 28px; }
.tool-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.tool-top h1 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -.02em;
}
.tool-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ghost {
  border: 1px solid var(--line-2);
  padding: 8px 12px;
  font-size: 13px;
  color: var(--muted);
}
.ghost:hover { color: var(--text); }

.password-card {
  margin: 0 auto;
  padding: 18px;
  width: min(420px, 100%);
  text-align: center;
}
.settings-body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 0 64px;
}
.password-card h2 {
  text-align: center;
}
.password-hint {
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  max-width: 36ch;
}
.password-form {
  display: grid;
  gap: 0;
  text-align: left;
}
.password-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}
.password-msg {
  margin: 0;
  font-size: 13px;
  color: #c4a4a4;
}
.password-msg.ok { color: var(--ok); }

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 16px;
  align-items: stretch;
  padding-bottom: 20px;
}
.admin-cal {
  min-width: 0;
  padding: 14px;
}
.tool-page .cal { touch-action: none; }
.tool-page .cal-nav { margin-bottom: 8px; }
.tool-page .dow { padding: 2px 0 6px; }
.tool-page .day {
  aspect-ratio: auto;
  height: 34px;
  font-size: 13px;
}
.cal-nav-side {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tool-page .day.busy { cursor: pointer; }
.day.selected,
.day.busy.selected,
.day.partial.selected {
  background: var(--amber);
  color: var(--amber-ink);
}
.day.inspect:not(.selected) {
  box-shadow: inset 0 0 0 2px var(--amber);
}
.busy-pane {
  display: flex;
  flex-direction: column;
  height: 0;
  min-height: 100%;
  overflow: hidden;
  padding: 14px;
}
.busy-pane-head {
  flex: 0 0 auto;
  margin-bottom: 10px;
}
.busy-pane-head h2,
.busy-pane h2 {
  margin: 0 0 8px;
  flex: 0 0 auto;
}
.busy-month-nav {
  margin: 0;
  gap: 6px;
}
.tool-page .busy-month-nav { margin-bottom: 0; }
.busy-month-nav .icon-btn {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}
.busy-month-nav select {
  flex: 1;
  min-width: 0;
  height: 32px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  padding: 0 8px;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
}
.busy-pane-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
}
.agenda-month {
  margin: 14px 0 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.agenda-month:first-child { margin-top: 0; }
.agenda-item.is-on {
  outline: 1px solid var(--amber);
  outline-offset: 2px;
}
.past-dates {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}
.past-dates summary {
  cursor: pointer;
  margin-bottom: 6px;
}
.stamp {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.stamp .picked {
  margin: 0 0 8px;
  min-height: 0;
}
.stamp-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 8px 10px;
}
.stamp-bar .check {
  margin: 0 0 8px;
  white-space: nowrap;
}
.stamp-bar .hours-row {
  margin: 0;
  gap: 8px;
}
.stamp-bar .field {
  margin: 0;
  min-width: 88px;
}
.stamp-bar .field input,
.stamp-bar .field select {
  padding: 8px 10px;
}
.stamp-note {
  flex: 1 1 140px;
  min-width: 120px;
}
.stamp-note .field-input {
  position: relative;
  display: block;
}
.field-tip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  z-index: 6;
  padding: 6px 10px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
  pointer-events: none;
}
.field-tip::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 100%;
  border: 6px solid transparent;
  border-top-color: var(--line-2);
}
.stamp-bar .need-value {
  border-color: var(--amber);
}
.stamp-bar .mark-busy-btn,
.stamp-bar .solid {
  margin: 0;
  height: 38px;
  padding: 0 12px;
}
.mark-busy-btn {
  background: var(--amber);
  color: var(--amber-ink);
  border-color: var(--amber) !important;
  font-weight: 600;
}
.mark-busy-btn:hover { background: #ffb247; }
.stamp-bar .danger {
  color: var(--busy-text);
}
.confirm-panel {
  width: min(400px, 100%);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 22px 24px;
}
.confirm-panel h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 8px;
}
.confirm-panel p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
}
.confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.confirm-actions .solid {
  height: 38px;
  padding: 0 14px;
}
.confirm-yes {
  background: #5a3530;
  border-color: #5a3530 !important;
  color: var(--text);
}
.confirm-yes:hover { background: #6c423c; }
.day-panel {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.day-panel h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
}
.month-agenda {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.month-agenda h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.agenda-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.agenda-jump {
  display: grid;
  gap: 2px;
  text-align: left;
  min-width: 0;
  color: var(--text);
}
.agenda-jump span {
  color: var(--muted);
  font-size: 12px;
}
.agenda-item > button[data-free] {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
}
.agenda-item > button[data-free]:hover { color: var(--text); }
.reqs-col {
  padding-bottom: 80px;
}
.reqs-col h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 500;
}
.reqs-scroll {
  max-height: calc(100dvh - 120px);
  overflow: auto;
  padding-right: 4px;
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 20px;
}
.card h2 { margin: 0 0 6px; font-size: 16px; font-weight: 500; }
.req {
  border: 1px solid var(--line);
  padding: 14px;
  margin: 0 0 10px;
  background: var(--bg);
}
.req h3 { margin: 0 0 6px; font-size: 16px; font-weight: 500; }
.req .meta { color: var(--muted); font-size: 13px; }
.req p { white-space: pre-wrap; font-size: 14px; color: #d0d3d8; }
.badge {
  font-size: 11px;
  border: 1px solid var(--line-2);
  padding: 2px 6px;
  color: var(--muted);
}
.badge.new { color: var(--amber); }
.badge.accepted { color: var(--ok); }
.badge.declined { color: var(--busy-text); }
.row-btns { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.row-btns button, .solid {
  border: 1px solid var(--line-2);
  padding: 7px 10px;
  font-size: 12px;
}
.row-btns button:hover, .solid:hover { background: var(--bg-3); }
.busy-list { margin-top: 8px; display: grid; gap: 0; }
.busy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #d0d3d8;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.busy-item button {
  color: var(--muted);
  font-size: 12px;
}
.busy-item button:hover { color: var(--text); }

@media (max-width: 860px) {
  .grid-2, .admin-grid, .admin-layout { grid-template-columns: 1fr; }
  .jobs {
    grid-template-rows: none;
  }
  .job {
    gap: 16px;
    padding: 24px 0;
  }
  .job h2 { font-size: 24px; }
  .job p {
    font-size: 15px;
  }
  .form-col { border-left: 0; border-top: 1px solid var(--line); }
  .top {
    gap: 12px;
    padding-top: calc(18px + env(safe-area-inset-top, 0px));
  }
  .hero {
    padding: 36px 0 56px;
    min-width: 0;
  }
  .hero h1 {
    font-size: clamp(32px, 11vw, 48px);
    letter-spacing: -.04em;
  }
  .who {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.45;
  }
  .lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
  }
  .hire {
    margin-top: 32px;
    padding: 18px 16px;
    font-size: clamp(22px, 7.5vw, 32px);
  }
  .section { padding-bottom: 56px; }
  .tags-section { padding-top: 24px; }
  .tags {
    gap: 8px;
    padding: 18px 0 4px;
  }
  .tags span {
    padding: 8px 12px;
    font-size: 13px;
  }
  .page { padding: 28px 0 64px; }
  .page-title {
    font-size: clamp(32px, 10vw, 52px);
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .page-copy { font-size: 16px; }
  .stage {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .foot-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 0 20px;
    gap: 16px;
  }
  .foot-nav {
    justify-content: flex-start;
    gap: 12px 16px;
  }
  .foot-base {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 0 calc(28px + env(safe-area-inset-bottom, 0px));
    font-size: 13px;
  }
  .cta-tab {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 20px;
  }
  .cta-copy h2 {
    font-size: clamp(26px, 8vw, 40px);
  }
  .cta-action {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
  }
  .reqs-scroll {
    max-height: none;
  }
  .busy-pane {
    height: auto;
    min-height: 0;
    max-height: 280px;
    position: static;
  }
  .cal-nav-side .ghost { padding: 6px 8px; font-size: 12px; }
  .nav-toggle { display: flex; }
  .mark { z-index: 60; }
  .nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    inset: 0;
    z-index: 50;
    padding: calc(88px + env(safe-area-inset-top, 0px)) 28px 40px;
    background: rgba(11, 12, 15, .94);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .nav-open .nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    width: 100%;
    padding: 16px 0;
    font-family: var(--display);
    font-size: clamp(24px, 7vw, 28px);
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--text);
    border-bottom: 1px solid var(--line);
  }
  .nav a[aria-current="page"] {
    color: var(--amber);
    border-color: var(--amber);
  }
}
@media (max-height: 720px) {
  .overlay .hint { display: none; }
  .overlay .day { height: 26px; }
  .panel-head p { margin-top: 2px; }
}
@media (hover: hover) and (pointer: fine) {
  .hire:hover {
    background-color: #ffb247;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 159, 28, .28);
    animation: hire-sweep .85s ease-out;
  }
  .cta-action:hover {
    background: transparent;
    color: var(--amber);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 159, 28, .16);
  }
  .cta-action:hover .cta-action-arrow {
    transform: translateX(4px);
  }
  .mark:hover {
    color: var(--amber);
    background-size: 100% 2px;
  }
  .nav a:hover {
    color: var(--text);
    border-color: var(--amber);
  }
  .foot-mark:hover { color: var(--amber); }
  .foot-nav a:hover {
    color: var(--text);
    border-color: var(--text);
  }
  .foot-hire:hover {
    color: var(--text);
    border-color: var(--amber);
  }
  .site-link:hover strong { color: var(--amber); }
  .site-link:hover .job-arrow { transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .mark {
    transition: none;
  }
  .hire:hover,
  .hire:active {
    transform: none;
  }
  .job,
  .job-arrow,
  .job h2,
  .job p,
  .tags span {
    transition: none;
  }
  .tags span:hover {
    transform: none;
  }
  .cta-action,
  .cta-action-arrow {
    transition: none;
  }
  .cta-action:hover {
    transform: none;
  }
  .stage-video,
  .cta-video {
    display: none;
  }
  .stage-media,
  .cta {
    background: #0a0b0d;
  }
}
