/*! (c) 2026 Stripe It Up, LLC. Site by ATXNEXUS. */
:root {

  --paper:        #ffffff;
  --card:         #ffffff;
  --band:         #f5f5f4;
  --band-3:       #d6d3d1;
  --asphalt:      #292524;
  --graphite:     #362f2d;
  --graphite-2:   #44403c;

  --ink:          #292524;
  --ink-muted:    #57534e;
  --ink-on-dark:  #ffffff;
  --ink-on-dark-muted: #d0cbc7;

  --brand:          #f2cb13;
  --brand-2:        #ffd042;
  --brand-ink:      #5a5600;
  --brand-edge:     #8a8600;
  --brand-on-dark:  #f2cb13;
  --brand-tint:     #fdfce2;

  --r:            10px;
  --r-sm:         6px;
  --hairline:     #e7e5e4;
  --hairline-dark: #57504c;
  --shadow-1:     0 1px 2px rgba(41,37,36,.06), 0 2px 8px rgba(41,37,36,.05);
  --shadow-2:     0 2px 4px rgba(41,37,36,.07), 0 12px 28px rgba(41,37,36,.12);
  --ring:         0 0 0 3px rgba(90,86,0,.85);

  --f-xs:   clamp(11.5px, 0.30vw + 10.7px, 12.5px);
  --f-sm:   clamp(13px,   0.34vw + 12.1px, 14px);
  --f-base: clamp(15.5px, 0.42vw + 14.4px, 17px);
  --f-lg:   clamp(16.5px, 0.72vw + 14.1px, 21px);
  --f-xl:   clamp(21px,   1.05vw + 18.3px, 26px);
  --f-2xl:  clamp(23px,   1.75vw + 18.6px, 36px);
  --f-3xl:  clamp(27px,   2.30vw + 21.0px, 48px);
  --f-4xl:  clamp(27px,   2.55vw + 20.6px, 54px);

  --sans: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --cond: "Archivo Narrow", "Archivo", system-ui, sans-serif;

  --wrap:   1240px;
  --gutter: clamp(18px, 4vw, 40px);
  --ease:   cubic-bezier(.2,.7,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--f-base);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3 {
  margin: 0 0 .5em;
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
  letter-spacing: -.022em;
}
h1 { font-size: var(--f-4xl); letter-spacing: -.032em; }
h2 { font-size: var(--f-2xl); letter-spacing: -.026em; }
h3 { font-size: var(--f-lg);  letter-spacing: -.012em; font-weight: 700; }
p  { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

:focus-visible {
  outline: 2px solid var(--brand-ink);
  outline-offset: 2px;
  border-radius: 4px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .022;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--brand); color: var(--ink);
  padding: 10px 16px; border-radius: 0 0 var(--r-sm) 0; font-weight: 700;
}
.skip:focus { left: 0; }

.preview-bar {
  background: var(--graphite); color: var(--brand-on-dark);
  font-size: var(--f-sm); font-weight: 700; text-align: center;
  padding: 7px var(--gutter); letter-spacing: .01em;
}

.wrap { width: min(var(--wrap), 100%); margin-inline: auto; padding-inline: var(--gutter); }
.wrap.narrow { width: min(760px, 100%); }
.band { padding-block: clamp(44px, 6vw, 84px); }
.band-alt { background: var(--band); }
.band-3 { background: var(--band-3); }
.band-dark { background: var(--asphalt); color: var(--ink-on-dark); }
.band-dark h2, .band-dark h3 { color: var(--ink-on-dark); }
.band-dark .sect-lede, .band-dark .muted { color: var(--ink-on-dark-muted); }
.band-brand { background: var(--brand); color: var(--ink); }
.sect-lede { color: var(--ink-muted); font-size: var(--f-lg); max-width: 65ch; margin-bottom: 1.6em; }

.sect-more { margin-top: 2em; }
.muted { color: var(--ink-muted); font-size: var(--f-sm); }

.plain { list-style: none; padding: 0; margin-block: 0; }

.grid { display: grid; gap: clamp(14px, 2vw, 22px); }

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid-2, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.two-col { display: grid; gap: clamp(26px, 4vw, 52px); grid-template-columns: 1fr; }
@media (min-width: 900px) { .two-col { grid-template-columns: minmax(0,1.7fr) minmax(0,1fr); } }

.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.7em; }
.prose h2:first-child { margin-top: 0; }
.prose li { margin-bottom: .35em; }

.btn {
  --btn-bg: var(--card);
  --btn-ink: var(--ink);
  --btn-edge: var(--hairline);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 11px 20px; min-height: 44px;

  border: 2px solid var(--btn-edge);
  border-radius: 6px;
  background: var(--btn-bg);
  color: var(--btn-ink);
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: .4px;
  font-weight: 700; font-size: var(--f-sm); line-height: 1.2;
  text-decoration: none; cursor: pointer;
  transition: transform .12s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn-lg { padding: 14px 26px; min-height: 52px; font-size: var(--f-base); }
.btn:active { transform: translateY(1px); border-bottom-width: 1px; margin-bottom: 2px; }
@media (hover: hover) { .btn:hover { box-shadow: var(--shadow-1); } }

.btn-brand {
  --btn-bg: var(--brand);
  --btn-ink: var(--ink);
  --btn-edge: #cfce00;
}
.btn-dark {
  --btn-bg: var(--asphalt);
  --btn-ink: var(--ink-on-dark);
  --btn-edge: #000;
}

.btn-cta {
  --btn-bg: var(--asphalt);
  --btn-ink: var(--brand-on-dark);
  --btn-edge: #000;
}
.btn-ghost {
  --btn-bg: transparent;
  --btn-ink: var(--ink);

  --btn-edge: #8f8a85;
}

.hero .btn-ghost,
.band-brand .btn-ghost { --btn-edge: rgba(26,24,16,.55); }
.band-dark .btn-ghost,
.film-band .btn-ghost {
  --btn-ink: var(--ink-on-dark);
  --btn-edge: rgba(255,255,255,.5);
}
@media (hover: hover) {
  .band-dark .btn-ghost:hover,
  .film-band .btn-ghost:hover { --btn-bg: rgba(255,255,255,.12); --btn-edge: #fff; }
}

#top-sentinel { position: absolute; top: 0; height: 1px; width: 1px; }

.hdr { position: sticky; top: 0; z-index: 60; }
.hdr.is-stuck { box-shadow: var(--shadow-2); }

.hdr-top {
  background: var(--brand);
  padding-top: env(safe-area-inset-top, 0px);
}
.hdr-top-in { display: flex; align-items: center; gap: 12px; min-height: 62px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; margin-right: auto; }
.wordmark { width: clamp(118px, 31vw, 215px); height: auto; display: block; }
.ftr .wordmark { filter: none; }
.hdr-tel {
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(15px, 3.6vw, 20px);
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.hdr-quote {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px clamp(10px, 2.6vw, 18px);
  background: var(--card);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 3px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(11px, 2.8vw, 14px);
  text-transform: uppercase;
  letter-spacing: .03em;
  text-decoration: none;
  white-space: nowrap;
}
@media (hover: hover) { .hdr-quote:hover { background: var(--ink); color: var(--brand); } }

.hdr-navwrap { background: var(--brand); padding: 8px var(--gutter) 10px; }
.hdr-nav { position: relative; padding: 0; }
.nav-in {
  display: flex; align-items: stretch;
  background: var(--asphalt);
  border-radius: 7px;
  overflow: hidden;
}

.nav-in a {
  flex: 1 1 auto;
  display: flex; align-items: center; justify-content: center;
  min-height: 46px;
  padding: 8px 6px;
  color: var(--ink-on-dark);
  text-decoration: none;
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(10.5px, 2.85vw, 15px);
  text-transform: uppercase;
  letter-spacing: .02em;
  white-space: nowrap;
  border-left: 1px solid var(--hairline-dark);
  border-bottom: 3px solid transparent;
}
.nav-in a:first-child { border-left: 0; }
.nav-svc { flex: 1 1 auto; display: flex; align-items: stretch; border-left: 1px solid var(--hairline-dark); }
.nav-svc a { flex: 1 1 auto; border-left: 0; padding-right: 2px; }
.nav-in a[aria-current] { color: var(--brand-on-dark); border-bottom-color: var(--card); }
.nav-in a:first-child { border-top-left-radius: 7px; border-bottom-left-radius: 7px; }
.nav-in a:last-child { border-top-right-radius: 7px; border-bottom-right-radius: 7px; }
@media (hover: hover) { .nav-in a:hover { color: var(--brand-on-dark); } }

.nav-more {
  flex: none; width: clamp(22px, 6vw, 34px); min-height: 46px;
  background: none; border: 0;
  color: var(--ink-on-dark); cursor: pointer; font-size: 13px;
}
.nav-more[aria-expanded="true"] { color: var(--brand-on-dark); background: var(--graphite); }

.svc-menu {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 50;
  background: #fff; color: #334155;
  border-radius: 6px; padding: 8px;
  box-shadow: 0 10px 30px rgba(41,37,36,.28), 0 2px 6px rgba(41,37,36,.12);
}
.svc-menu ul { display: grid; gap: 0; padding: 0; margin: 0; }
@media (min-width: 720px) { .svc-menu ul { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-menu ul { grid-template-columns: repeat(3, 1fr); } }
.svc-menu a {

  display: flex; align-items: center; justify-content: flex-start; text-align: left; gap: 12px;
  padding: 10px 10px; min-height: 44px; border-radius: 4px;
  color: #334155; text-decoration: none;
  font-family: var(--cond);
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .4px;
}
.svc-ico { flex: 0 0 auto; width: 22px; height: 22px; color: #475569; }
.svc-menu li { min-width: 0; }

.svc-menu a { min-width: 0; }
.svc-menu a > span { min-width: 0; overflow-wrap: break-word; }
@media (hover: hover) { .svc-menu a:hover { background: var(--band); color: var(--ink); } }

.nav-staff { grid-column: 1 / -1; margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--hairline); }
.nav-staff a { color: #64748b; font-weight: 700; }
.nav-staff .svc-ico { color: #7e8fa6; }
@media (hover: hover) { .nav-staff a:hover { background: var(--band); color: var(--ink); } }

.hdr-promo {
  margin: 0;
  background: var(--band);
  border-bottom: 1px solid var(--hairline);
  padding: 9px var(--gutter);
  text-align: center;
  font-family: var(--cond);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(11px, 2.85vw, 15px);
  color: var(--ink);
  line-height: 1.35;
}
.hdr-promo span { display: block; }
@media (min-width: 760px) {
  .hdr-promo span { display: inline; }
  .hdr-promo span + span::before { content: "\00a0\00b7\00a0"; }
}

@media (max-width: 759px) {

  .hdr-top-in { gap: 8px; min-height: 68px; }
  .nav-in a { padding-inline: 6px; }
  .hdr-tel { font-size: clamp(13px, 3.4vw, 18px); }
}
@media (max-width: 519px) {

  .nav-in a { padding-inline: 2px; }
  .nav-svc a { padding-right: 0; }
  .nav-more { width: clamp(17px, 4.6vw, 26px); font-size: 11px; }
}
@media (max-width: 359px) {

  .nav-in { overflow-x: auto; scrollbar-width: none; }
  .nav-in::-webkit-scrollbar { display: none; }
  .nav-in a, .nav-svc { flex: 0 0 auto; }
}

.hero { background: var(--paper); padding-block: clamp(34px, 5vw, 64px) clamp(40px, 6vw, 72px); }
.hero-in { max-width: 1160px; margin-inline: auto; text-align: center; }
.hero h1 { color: var(--ink); margin-bottom: .7em; }
.hero-photo {
  width: 100%; height: auto; border-radius: var(--r);
  margin: 0 0 clamp(22px, 3vw, 34px); background: var(--band);
}
.hero .lede { color: var(--ink); font-size: var(--f-lg); max-width: 62ch; margin-inline: auto; }
.hero .lede-2 { color: var(--ink); font-size: var(--f-base); }
.hero .lede-2 { margin-top: 1em; }
.hero-act { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.8em; justify-content: center; }

.crumb { font-size: var(--f-sm); color: var(--ink-muted); margin-bottom: .9em; }
.crumb a { color: var(--brand-ink); }

.hero .job-es-title { color: var(--brand-ink); margin-top: -.3em; }
.hero .draft-flag { background: var(--asphalt); color: var(--brand-on-dark); }

.card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  padding: clamp(18px, 2vw, 24px);
  box-shadow: var(--shadow-1);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.card-photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card-photo > :not(.card-img) { margin-inline: clamp(18px, 2vw, 24px); }
.card-photo > h3 { margin-top: clamp(16px, 2vw, 20px); }
.card-photo > :last-child { margin-bottom: clamp(18px, 2vw, 24px); }
.card-img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; background: var(--band); }
.card h3 { margin-bottom: .4em; }
.card h3 a { text-decoration: none; }
.card p { color: var(--ink-muted); font-size: var(--f-sm); }
@media (hover: hover) {
  .card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--brand-edge); }
}
.more {
  display: inline-block; margin-top: .9em; font-weight: 700; font-size: var(--f-sm);
  color: var(--brand-ink); text-decoration: none;
  border-bottom: 2px solid var(--brand); padding-bottom: 1px;
}
.flag {
  display: inline-block; background: var(--brand); color: var(--ink);
  font-size: var(--f-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 9px; border-radius: 999px; margin-bottom: .6em;
}

.grid.plain > li { list-style: none; }
.why li, .team li, .grid.plain > li {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r);
  padding: clamp(16px, 2vw, 22px); box-shadow: var(--shadow-1);
}
.band-dark .grid.plain > li { background: var(--graphite); border-color: var(--hairline-dark); }
.why li p, .team li p { color: var(--ink-muted); font-size: var(--f-sm); }
.team .role { font-weight: 700; color: var(--brand-ink); }
.team .nums { display: flex; flex-direction: column; gap: 2px; }
.team .nums a { color: var(--ink-muted); font-size: var(--f-sm); text-decoration: none; border-bottom: 1px solid var(--hairline); align-self: flex-start; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  background: var(--card); border: 1px solid var(--hairline); border-radius: 999px;
  padding: 6px 14px; font-size: var(--f-sm); font-weight: 600;
}
.band-dark .chips li { background: var(--graphite); border-color: var(--hairline-dark); }

.steps { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.steps-tight { grid-template-columns: 1fr; gap: 14px; }
.steps li { position: relative; padding-left: 52px; }
.step-n {
  position: absolute; left: 0; top: 0;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-content: center;
  background: var(--brand); color: var(--ink);
  font-weight: 800; font-size: var(--f-base);
}
.steps li p { color: var(--ink-muted); font-size: var(--f-sm); }
.band-dark .steps li p { color: var(--ink-on-dark-muted); }

.timeline { display: grid; gap: 4px; border-left: 3px solid var(--brand); padding-left: 0; }
.timeline li { padding: 14px 0 14px 22px; position: relative; }
.timeline li::before {
  content: ""; position: absolute; left: -8px; top: 22px;
  width: 13px; height: 13px; border-radius: 50%; background: var(--brand); border: 3px solid var(--paper);
}
.timeline .yr {
  display: block; font-family: var(--cond); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--brand-ink); font-size: var(--f-sm);
}
.timeline p { color: var(--ink-muted); margin: 0; }

.hire-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.hire-strip h2 { margin-bottom: .2em; }
.hire-strip p { max-width: 58ch; margin: 0; }

.cta-wrap { text-align: center; }
.cta-wrap p { margin-inline: auto; max-width: 70ch; }
.eoe { font-size: var(--f-sm); color: var(--ink-on-dark-muted); }

.job-es-title { font-family: var(--cond); font-size: var(--f-lg); color: var(--brand-on-dark); margin-top: -.4em; }
.draft-flag {
  display: inline-block; background: var(--graphite); color: var(--brand-on-dark);
  font-size: var(--f-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .09em;
  padding: 4px 10px; border-radius: 999px; margin-bottom: .7em;
}
.empty {
  background: var(--card); border: 1px dashed var(--hairline); border-radius: var(--r);
  padding: clamp(24px, 4vw, 44px); text-align: center;
}
.empty p { color: var(--ink-muted); max-width: 56ch; margin-inline: auto; }
.glance { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin: 0 0 1.4em; font-size: var(--f-sm); }
.glance dt { font-weight: 700; color: var(--ink-muted); }
.glance dd { margin: 0; }

.rail {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r);
  padding: clamp(18px, 2vw, 24px); box-shadow: var(--shadow-1); align-self: start;
}
.rail h2 { font-size: var(--f-lg); }
.rail h2 + * { margin-top: 0; }
.rail .btn { width: 100%; }

.form { max-width: 62ch; }
.f-row { margin-bottom: 16px; }
.f-two { display: grid; gap: 0 16px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .f-two { grid-template-columns: 1fr 1fr; } }
.form label { display: block; font-weight: 700; font-size: var(--f-sm); margin-bottom: 5px; }
.req { color: var(--brand-ink); }
.form input[type="text"], .form input[type="tel"], .form input[type="email"], .form select, .form textarea {
  width: 100%;
  font-size: 16px;
  padding: 11px 13px;
  background: #fafaf9;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  appearance: none;
}
.form textarea { resize: vertical; min-height: 96px; }
.form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235b564a' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--brand-ink); box-shadow: var(--ring);
}
.f-check { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.f-check label { display: flex; align-items: center; gap: 8px; font-weight: 600; margin: 0; }
.f-check input { accent-color: var(--brand-ink); width: 18px; height: 18px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: var(--f-sm); color: var(--ink-muted); margin-top: .9em; }
.form-status { font-weight: 700; margin-top: .8em; min-height: 1.4em; }
.form-status[data-state="err"] { color: #a3211c; }
.form-status[data-state="ok"] { color: #1d6b2f; }

.ftr { background: var(--asphalt); color: var(--ink-on-dark); padding-block: clamp(40px, 5vw, 64px) 0; }
.ftr-in { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.ftr h2 { font-family: var(--cond); font-size: var(--f-sm); letter-spacing: .1em; text-transform: uppercase; color: var(--brand-on-dark); }
.ftr .wordmark { width: 190px; height: auto; margin-bottom: 12px; }
.ftr-tag { font-weight: 700; }
.ftr-note, .ftr-list span { color: var(--ink-on-dark-muted); font-size: var(--f-sm); }
.ftr-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: var(--f-sm); }
.ftr-list a { color: var(--ink-on-dark-muted); text-decoration: none; }
@media (hover: hover) { .ftr-list a:hover { color: var(--brand-on-dark); } }
.ftr-list strong { display: block; color: var(--ink-on-dark); }

.ftr-social { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 14px; font-size: var(--f-sm); }
.ftr-social a {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--ink-on-dark-muted);

  min-height: 44px;
}
.soc-ico { flex: 0 0 auto; width: 19px; height: 19px; color: var(--brand-on-dark); }
@media (hover: hover) {
  .ftr-social a:hover { color: var(--ink-on-dark); }
  .ftr-social a:hover .soc-ico { color: var(--brand-on-dark); }
}
.ftr-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  border-top: 1px solid var(--hairline-dark); margin-top: 34px; padding-block: 18px;
  font-size: var(--f-xs); color: var(--ink-on-dark-muted);
  padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px) + 58px);
}
.ftr-base p { margin: 0; }
.ftr-tools { display: flex; gap: 14px; }
.ftr-tools a { color: inherit; text-decoration: none; }
@media (min-width: 900px) { .ftr-base { padding-bottom: 18px; } }

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -2px 14px rgba(26,24,16,.12);
}
.dock a {
  flex: 1; min-height: 54px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  color: var(--ink); text-decoration: none; font-weight: 700; font-size: var(--f-sm);
}
.dock .dock-cta { background: var(--brand); }
@media (min-width: 900px) { .dock { display: none; } }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
@media print { .reveal { opacity: 1 !important; transform: none !important; } }

.faq { border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 18px 40px 18px 0; position: relative;
  font-weight: 700; font-size: var(--f-lg); line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 26px; font-weight: 400; color: var(--brand-ink); line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq summary:focus-visible { outline: 2px solid var(--brand-ink); outline-offset: -2px; }
.faq-a { padding: 0 0 20px; color: var(--ink-muted); max-width: 70ch; }

.cta-center { justify-content: center; }
.cta-wrap .hero-act { justify-content: center; }

.band-flush { padding-block: 0 clamp(30px, 4vw, 48px); }
.band-flush .hero-photo { margin-bottom: 0; }

.new-flag {
  display: inline-block; max-width: 100%;
  background: var(--asphalt); color: var(--brand-on-dark);
  font-family: var(--cond); font-weight: 700; font-size: var(--f-xs);
  text-transform: uppercase; letter-spacing: .07em;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 1em;
}
.band-brand .new-flag { background: var(--asphalt); }

.apply-form fieldset { border: 0; padding: 0; margin: 0 0 4px; }
.apply-form .glegend {
  font-family: var(--cond); font-weight: 700; font-size: var(--f-xl);
  padding: 0; margin-bottom: .8em; color: var(--ink);
}
.apply-form[data-guided] .glegend { position: absolute; left: -9999px; }

.guide-bar { margin-bottom: 22px; }
.gsteps { display: flex; flex-wrap: wrap; gap: 6px; }
.gstep {
  flex: 1 1 auto; min-height: 42px; padding: 8px 12px;
  background: var(--band); color: var(--ink-muted);
  border: 1px solid var(--hairline); border-radius: var(--r-sm);
  font: inherit; font-size: var(--f-sm); font-weight: 700; cursor: pointer;
  white-space: nowrap;
}
.gstep[aria-current="step"] { background: var(--asphalt); color: var(--brand-on-dark); border-color: var(--asphalt); }
.gprogress { margin: 10px 0 0; font-size: var(--f-sm); font-weight: 700; color: var(--ink-muted); }

.guide-nav { display: flex; gap: 10px; margin-top: 20px; }
.guide-nav .btn { flex: 1 1 auto; }
.f-help { margin: 6px 0 0; font-size: var(--f-sm); color: var(--ink-muted); }
.draft-status { margin-top: 12px; font-size: var(--f-sm); color: var(--ink-muted); min-height: 1.3em; }

.review {
  display: grid; grid-template-columns: auto 1fr; gap: 8px 16px;
  background: var(--band); border-radius: var(--r);
  padding: clamp(16px, 2vw, 22px); margin: 0 0 1.4em;
  font-size: var(--f-sm);
}
.review dt { font-weight: 700; color: var(--ink-muted); }
.review dd { margin: 0; overflow-wrap: anywhere; }

.hero-video-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  margin: 0 0 clamp(22px, 3vw, 34px);
  background: var(--band);
}
.hero-video-wrap .hero-photo { margin: 0; border-radius: 0; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s var(--ease);
  background: var(--band);
}
.hero-video-wrap[data-playing] .hero-video { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }

@media (max-width: 899px) { .hero-video, .hero-video-wrap .video-controls { display: none; } }

.tour-shade {
  position: fixed; z-index: 9000;
  background: rgba(41, 37, 36, .62);
  pointer-events: auto;
}
.tour-card {
  position: fixed; z-index: 9001;
  width: min(320px, calc(100vw - 16px));
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  box-shadow: var(--shadow-2);
  padding: 16px 18px;
}
.tour-count {
  margin: 0 0 4px; font-family: var(--cond); font-weight: 700;
  font-size: var(--f-xs); letter-spacing: .09em; text-transform: uppercase;
  color: var(--brand-ink);
}
.tour-title { margin: 0 0 6px; font-weight: 800; font-size: var(--f-lg); line-height: 1.2; }
.tour-body { margin: 0 0 14px; font-size: var(--f-sm); color: var(--ink-muted); }
.tour-row { display: flex; gap: 8px; }
.tour-row .btn { flex: 1 1 auto; min-height: 40px; padding: 8px 14px; }
.tour-row .btn:disabled { opacity: .55; cursor: default; }

.tour-open {
  margin-top: 10px; min-height: 38px; padding: 7px 14px;
  background: none; border: 1px solid var(--hairline);
  border-radius: 999px; color: var(--brand-ink);
  font: inherit; font-size: var(--f-sm); font-weight: 700; cursor: pointer;
}
@media (hover: hover) { .tour-open:hover { border-color: var(--brand-edge); } }
@media (prefers-reduced-motion: reduce) { .tour-open { display: none; } }

.logo-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  justify-items: center;
  margin-top: clamp(26px, 3vw, 40px);
  opacity: .7;
}
@media (min-width: 620px) { .logo-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .logo-wall { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.logo-wall li { display: flex; align-items: center; justify-content: center; width: 100%; }
.logo-wall img {
  width: auto; height: auto;
  max-width: 100%; max-height: 46px;
  object-fit: contain;
}

.ftr-brand .wordmark { width: 190px; margin-bottom: 16px; }
.ftr-call { margin: 12px 0 8px; font-weight: 700; }
.ftr-call a { color: var(--brand-on-dark); text-decoration: none; }
.ftr-addr { font-style: normal; color: var(--ink-on-dark-muted); font-size: var(--f-sm); line-height: 1.6; }
.ftr-areas li { color: var(--ink-on-dark-muted); }
.ftr-base a { color: inherit; }

.team-intro { max-width: 72ch; margin-bottom: clamp(26px, 3vw, 40px); }
.team-intro a { color: var(--brand-ink); }
.person { text-align: left; }

.team { grid-template-columns: 1fr; }
.team > li { max-width: 20rem; width: 100%; }
@media (max-width: 767px) { .team > li { margin-inline: auto; } }
@media (min-width: 768px)  { .team { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .team { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .team { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.person .card-img { aspect-ratio: 16 / 9; object-fit: cover; object-position: center 22%; }
.person h3 { font-size: var(--f-xl); margin-bottom: .15em; }
.person .role { font-weight: 700; color: var(--brand-ink); margin-bottom: .8em; }
.person .nums { display: flex; flex-direction: column; gap: 4px; margin: 0; }
.person .nums a {
  color: var(--ink-muted); font-size: var(--f-sm); text-decoration: none;
  border-bottom: 1px solid var(--hairline); align-self: flex-start;
}

.about-cta { background: var(--band); }
.about-cta-in { display: grid; gap: clamp(20px, 3vw, 40px); align-items: start; }
.about-cta-img {
  width: 128px; height: 128px; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 10px; background: var(--band-3);
}
.about-cta-text > :last-child { margin-top: clamp(14px, 1.6vw, 20px); }
@media (min-width: 1024px) {
  .about-cta-in { grid-template-columns: 1fr 240px; }
  .about-cta-img { width: 240px; height: 240px; }
}

.logo-tx { height: 84px; width: auto; display: block; }
.logo-tx-header { height: clamp(48px, 11.5vw, 68px); }
.ftr .logo-tx, .ftr-brand .logo-tx { height: 84px; margin-bottom: 14px; filter: none; }

.hdr-navwrap { border-bottom: 2px solid #000; }

.band > .wrap > h2,
.band > .wrap > .sect-lede { text-align: center; }
.band > .wrap > .sect-lede { margin-inline: auto; }

.why li { text-align: center; }
.why li .card-img { margin-inline: auto; }

.team-intro { max-width: 42rem; margin-inline: auto; text-align: left; }

@media (min-width: 760px) {
  .hdr-promo { display: flex; justify-content: space-between; gap: 18px; text-align: left; }
  .hdr-promo span { display: block; }
  .hdr-promo span + span { text-align: right; }
  .hdr-promo span + span::before { content: none; }
}

.photo-band {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center;
  min-height: 28rem;
  color: #fff;
}
@media (min-width: 1024px) { .photo-band { min-height: 32rem; } }
.photo-band-img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  max-width: none;
}
.photo-band-scrim { position: absolute; inset: 0; z-index: -1; background: rgba(0,0,0,.5); pointer-events: none; }
.photo-band-in { position: relative; z-index: 1; width: 100%; max-width: 48rem; margin-inline: auto; text-align: center; }
.photo-band h2 { color: #fff; }
.photo-band p { color: rgba(255,255,255,.95); }
.photo-band-cta { margin-top: 1.4em; }

.flag-ghost {

  background: transparent;
  display: inline-block; border: 1px solid #fff; color: #fff;
  font-family: var(--cond); text-transform: uppercase; letter-spacing: .06em;
  font-size: var(--f-sm); padding: 4px 12px; border-radius: 999px; margin-bottom: 1em;
}

.btn-on-photo {
  background: rgba(0,0,0,.25); border: 2px solid #fff; color: #fff;
}
@media (hover: hover) { .btn-on-photo:hover { background: #fff; color: var(--ink); } }

.btn-block { width: 100%; margin-top: auto; }

.card { display: flex; flex-direction: column; }
.card-go {
  align-self: flex-end; margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--asphalt); color: rgba(255,255,255,.9);
  text-decoration: none; flex: 0 0 auto;
}
.card-go svg { width: 14px; height: 14px; }
.card > p { margin-bottom: 14px; }
@media (hover: hover) { .card-go:hover { background: #000; color: #fff; } }

.areas-photo { width: 100%; height: auto; border-radius: var(--r); margin-top: clamp(20px, 3vw, 32px); }

.shots { display: grid; gap: clamp(12px, 1.6vw, 20px); grid-template-columns: 1fr; margin: 0; }
@media (min-width: 620px) { .shots { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .shots { grid-template-columns: repeat(3, 1fr); } }
.shot-img { width: 100%; height: auto; border-radius: var(--r); display: block; }

.careers-hero { min-height: 30rem; }
@media (min-width: 1024px) { .careers-hero { min-height: 34rem; } }
.careers-hero-in { max-width: 56rem; }
.careers-mark { width: clamp(88px, 18vw, 132px); height: auto; margin: 0 auto 18px; display: block; }
.careers-hero .eyebrow { color: var(--brand-on-dark); }
.careers-hero h1 { color: #fff; }
.careers-hero .lede { color: rgba(255,255,255,.95); }
.careers-hero .lede-2 { color: rgba(255,255,255,.82); font-style: italic; }
.careers-hero .new-flag { background: rgba(0,0,0,.45); color: #fff; border: 1px solid rgba(255,255,255,.5); }
.careers-hero .hero-act { margin-top: 1.4em; }

.video-controls {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  display: flex; gap: 8px; align-items: center;
}
.video-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; min-height: 40px;
  border: 2px solid rgba(255,255,255,.85); border-radius: 999px;
  background: rgba(0,0,0,.55); color: #fff;
  font-family: var(--cond); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
  cursor: pointer; backdrop-filter: blur(3px);
}
@media (hover: hover) { .video-toggle:hover { background: rgba(0,0,0,.8); } }
.video-toggle:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
.spk { width: 17px; height: 17px; flex: 0 0 auto; }

.video-mute .spk-on { display: none; }
.video-mute[data-sound-on] .spk-off { display: none; }
.video-mute[data-sound-on] .spk-on { display: inline; }

@media (prefers-reduced-motion: reduce) { .video-controls { display: none; } }

.film-band { background: var(--asphalt); color: var(--ink-on-dark); }
.film-in { max-width: 920px; }
.film-head { text-align: center; margin-bottom: 20px; }
.film-band .eyebrow { color: var(--brand-on-dark); }
.film-band h2 { color: var(--ink-on-dark); }
.film-band .sect-lede { color: var(--ink-on-dark-muted); }
.film-frame {
  border-radius: 10px; overflow: hidden;
  border: 2px solid #000;
  box-shadow: 0 18px 44px rgba(0,0,0,.4);
  background: #000;

  aspect-ratio: 854 / 480;
}
.film-video { display: block; width: 100%; height: 100%; }
.film-foot {
  margin: 14px 0 0; text-align: center;
  font-size: var(--f-sm); color: var(--ink-on-dark-muted);
}
@media (prefers-reduced-motion: reduce) {

  .film-frame { box-shadow: none; }
}

.film-frame { position: relative; }

.film-sound {
  position: absolute; right: 10px; top: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 40px; padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .55); border-radius: 999px;
  background: rgba(12, 14, 16, .38); color: #fff;
  font: 700 var(--f-sm)/1 var(--cond, inherit);
  text-transform: uppercase; letter-spacing: .4px;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  backdrop-filter: blur(10px) saturate(1.2);

  text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
  transition: background .15s ease, border-color .15s ease;
}
.film-sound svg { width: 17px; height: 17px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.5)); }

.film-sound .spk-on { display: none; }
.film-sound[data-sound-on] .spk-on { display: inline; }
.film-sound[data-sound-on] .spk-off { display: none; }

.film-sound[data-sound-on] {
  background: var(--brand); color: var(--ink);
  border-color: rgba(0, 0, 0, .5); text-shadow: none;
}
.film-sound[data-sound-on] svg { filter: none; }
@media (hover: hover) {
  .film-sound:hover { background: rgba(12, 14, 16, .66); border-color: #fff; }
  .film-sound[data-sound-on]:hover { background: var(--brand-2); }
}

@media (max-width: 519px) {
  .film-sound { right: 8px; top: 8px; padding: 0; width: 40px; justify-content: center; gap: 0; }
  .film-sound [data-film-sound-label] { display: none; }
}

.serve { display: grid; gap: clamp(16px, 2vw, 24px); }
.serve-row {
  background: var(--band);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .serve-row { grid-template-columns: minmax(0, 46%) minmax(0, 1fr); } }
.serve-pic { margin: 0; }
.serve-img {
  display: block; width: 100%; height: 100%;
  aspect-ratio: 3 / 2; object-fit: cover;
  background: var(--card);
}
.serve-txt { padding: clamp(20px, 3vw, 34px); }
.serve-txt h3 { margin-bottom: .45em; }
.serve-txt p { color: var(--ink-muted); }
.serve-act { margin-top: 1.3em; margin-bottom: 0; }

@media (min-width: 900px) {
  .serve-flip .serve-pic { order: 2; }
  .serve-flip .serve-txt { order: 1; }
}

.grid.icon-cards > li {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: clamp(10px, 1.4vw, 16px) clamp(4px, 1vw, 12px);
}

.band-dark .grid.icon-cards > li { background: transparent; border: 0; }
.card-ico {
  display: block; margin: 0 auto .8em;
  width: clamp(38px, 4.4vw, 48px); height: clamp(38px, 4.4vw, 48px);
  color: var(--brand-ink);
}
.band-dark .card-ico { color: var(--brand-on-dark); }

.steps-big { gap: clamp(26px, 3.4vw, 42px); grid-template-columns: 1fr; text-align: center; }
@media (min-width: 760px) { .steps-big { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.steps-big li { padding-left: 0; }

.steps-big .step-n {
  position: static;
  width: clamp(54px, 7vw, 74px); height: clamp(54px, 7vw, 74px);
  border-radius: 50%;
  background: var(--asphalt); color: var(--brand-on-dark);
  display: grid; place-content: center;
  margin: 0 auto .5rem;
  font-family: var(--cond); font-weight: 800;
  font-size: clamp(26px, 3.4vw, 34px); line-height: 1;
}
.steps-big li p { margin-inline: auto; max-width: 46ch; }

.ready {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px;
}
.ready-q { font-weight: 700; font-size: var(--f-lg); }

.faq summary::after {
  content: "";
  width: .52em; height: .52em;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  border-radius: 1px;

  transform: translateY(-65%) rotate(45deg);
  color: var(--brand-ink);
  transition: transform .18s var(--ease);
  right: 10px;
}

.faq details[open] summary::after { content: ""; transform: translateY(-25%) rotate(225deg); }
@media (prefers-reduced-motion: reduce) { .faq summary::after { transition: none; } }

.svc-card { border-left: 5px solid var(--brand); }

.svc-card > .btn-block {
  width: auto; align-self: stretch; margin-top: auto;
  text-align: center; justify-content: center;
}

.svc-card > p { margin-bottom: clamp(14px, 1.6vw, 18px); }

.svc-card .card-go { display: none; }

.logo-wall {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 26px) clamp(8px, 1.6vw, 22px);
  margin-top: clamp(20px, 2.4vw, 30px);
  opacity: .78;
}

.logo-wall img { max-height: var(--logo-h); }

.logo-wall { --logo-h: clamp(17px, 2.4vw, 34px); }
.logo-wall img[data-logo="symbol"]   { max-height: calc(var(--logo-h) * 0.80); }
.logo-wall img[data-logo="lockup"]   { max-height: calc(var(--logo-h) * 1.18); }
.logo-wall img[data-logo="wide"]     { max-height: calc(var(--logo-h) * 0.62); max-width: 118%; }

@media (max-width: 619px) {
  .logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.logo-wall img {
  filter: grayscale(1);
  opacity: .82;
  transition: opacity .18s ease, filter .18s ease;
}
.logo-wall:hover img { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .logo-wall img { transition: none; } }

.cta-wrap .hero-act {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 1.6em;
}
.cta-wrap .hero-act .btn { flex: 1 1 15rem; max-width: 22rem; justify-content: center; }
.cta-wrap h2 { margin-bottom: .3em; }
.cta-wrap > p { margin-inline: auto; max-width: 46ch; }

.f-files input[type="file"] {
  display: block; width: 100%; max-width: 100%;
  font: inherit; font-size: var(--f-sm);
  padding: 12px; min-height: 52px;
  background: var(--card);
  border: 1px dashed var(--brand-edge); border-radius: var(--r);
  cursor: pointer;
}
.f-files input[type="file"]::file-selector-button {
  font: inherit; font-weight: 700; font-size: var(--f-sm);
  margin-right: 12px; padding: 9px 14px; min-height: 40px;
  background: var(--asphalt); color: var(--brand-on-dark);
  border: 0; border-radius: var(--r-sm, 8px); cursor: pointer;
}
.f-opt { font-weight: 400; color: var(--ink-muted); }

.f-req { font-weight: 800; color: #a3211c; }
.file-list { margin: 10px 0 0; display: grid; gap: 6px; }
.file-list li {
  display: flex; flex-wrap: wrap; gap: 4px 10px; align-items: baseline;
  font-size: var(--f-sm); font-weight: 600;
  background: var(--band); border-radius: var(--r-sm, 8px); padding: 8px 12px;

  overflow-wrap: anywhere;
}
.file-list li span { font-weight: 400; color: var(--ink-muted); }
.file-list .file-too-big { background: #fff1f0; color: #7a1f1b; }
.file-list .file-too-big span { color: #7a1f1b; font-weight: 700; }

.vh {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

.role svg, .job-hero svg, .job-body svg, .crumb svg, .share-job svg {
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

span[data-lang="es"] { display: none; }
.lang-ready.lang-en [data-lang="es"] { display: none !important; }
.lang-ready.lang-es [data-lang="en"] { display: none !important; }
.lang-ready.lang-es span[data-lang="es"] { display: inline; }
.lang-ready.lang-es .careers-hero .lede-2 { font-style: normal; color: rgba(255,255,255,.95); }

.lang-switch { display: none; }
.lang-ready .lang-switch {
  display: inline-flex; gap: 2px; padding: 3px;
  border: 2px solid currentColor; border-radius: 999px;
}
.lang-switch button {
  min-height: 40px; padding: 0 16px; border: 0; border-radius: 999px;
  background: transparent; color: inherit; cursor: pointer;
  font: 700 var(--f-xs)/1 var(--cond); text-transform: uppercase; letter-spacing: .5px;
}
.lang-switch button[aria-pressed="true"] { background: var(--brand); color: var(--ink); }
.lang-switch button:focus-visible { outline: none; box-shadow: var(--ring); }

#openings, #apply, #apply-form { scroll-margin-top: 190px; }

.careers-facts {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px;
  margin: 1.3em auto 0; font-size: var(--f-sm);
}
.careers-facts li {
  color: #fff; background: rgba(20,16,14,.42); border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; padding: 6px 13px;
}
.careers-facts strong { color: var(--brand-on-dark); font-variant-numeric: tabular-nums; }
.careers-act {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px; margin-top: 1.6em;
}
.careers-hero .lang-switch { color: #fff; }

@media (max-width: 619px) {
  .careers-hero { min-height: 0; }
  .careers-mark { display: none; }
}

.openings-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 6px 22px; margin-bottom: clamp(16px, 2vw, 24px);
}
.openings-head h2 { margin: 0; display: flex; align-items: center; gap: 12px; }
.openings-head .count {
  font: 700 var(--f-sm)/1 var(--cond); font-variant-numeric: tabular-nums;
  background: var(--asphalt); color: var(--brand-on-dark); border-radius: 999px; padding: 7px 12px;
}
.jobs-common { margin: 0; color: var(--ink-muted); font-size: var(--f-sm); }

.roles { display: grid; gap: clamp(14px, 2vw, 22px); grid-template-columns: 1fr; }
@media (min-width: 720px)  { .roles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .roles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.role {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r);
  box-shadow: var(--shadow-1);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
@media (hover: hover) {
  .role:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--band-3); }
  .role:hover .role-img { transform: scale(1.035); }
  .role:hover .role-go svg { transform: translateX(4px); }
}
.role:focus-within { box-shadow: var(--ring), var(--shadow-2); }
.role-pic { position: relative; aspect-ratio: 16 / 10; background: var(--band); overflow: hidden; }
.role-where {
  position: absolute; left: 12px; bottom: 12px; margin: 0; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px 6px 9px;
  background: rgba(24,20,18,.82); color: #fff; border-radius: 999px;
  font: 700 var(--f-xs)/1 var(--cond); text-transform: uppercase; letter-spacing: .5px;
}
.role-where svg { width: 14px; height: 14px; }

.role-where { pointer-events: none; }
.role-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s var(--ease); }
.role-body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: clamp(16px, 2vw, 22px); }
.role-kicker {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 4px 12px;
  margin: 0; color: var(--ink-muted);
  font: 700 var(--f-xs)/1.3 var(--cond); text-transform: uppercase; letter-spacing: .5px;
}
.role-kicker > span { display: inline-flex; align-items: center; gap: 5px; }
.role-kicker svg { width: 15px; height: 15px; }
.role-title { margin: 0; font-size: var(--f-xl); line-height: 1.15; text-wrap: balance; }
.role-link { color: var(--ink); text-decoration: none; }
.role-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.role-link:focus-visible { outline: none; }
.role-summary {
  margin: 0; color: var(--ink-muted); font-size: var(--f-sm);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.role-facts { display: grid; gap: 7px; margin: 2px 0 0; font-size: var(--f-sm); }
.role-facts li { display: flex; gap: 9px; align-items: flex-start; color: var(--ink); }
.role-facts svg { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 1px; color: var(--brand-ink); }
.role-pay { font-weight: 700; }
.role-go {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin: auto 0 0; padding-top: 14px; border-top: 1px solid var(--hairline); color: var(--ink);
  font: 700 var(--f-sm)/1 var(--cond); text-transform: uppercase; letter-spacing: .4px;
}
.role-go svg { width: 20px; height: 20px; flex: 0 0 20px; transition: transform .18s var(--ease); }

.any-role {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px;
  margin-top: clamp(18px, 2.4vw, 28px); padding: clamp(18px, 2.4vw, 26px);
  background: var(--card); border: 2px dashed var(--band-3); border-radius: var(--r);
}
.any-role h3 { margin: 0 0 4px; font-size: var(--f-lg); }
.any-role p { margin: 0; color: var(--ink-muted); font-size: var(--f-sm); max-width: 60ch; }

.why-row { display: grid; gap: 0; margin-top: clamp(14px, 2vw, 22px); grid-template-columns: 1fr; }
.why-row li { padding: 16px 0; border-top: 1px solid var(--hairline); }
.why-row h3 { margin: 0 0 6px; font-size: var(--f-lg); }
.why-row p { margin: 0; color: var(--ink-muted); font-size: var(--f-sm); max-width: 46ch; }
@media (min-width: 760px) {
  .why-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .why-row li { padding: 4px clamp(18px, 2.4vw, 32px) 4px; border-top: 0; border-left: 1px solid var(--hairline); }
  .why-row li:first-child { padding-left: 0; border-left: 0; }
}
.benefits { margin-top: clamp(22px, 3vw, 34px); }
.benefit-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 0; }
.benefit-list li { background: var(--band); border-radius: 999px; padding: 6px 13px; font-size: var(--f-sm); }

.needs-tyler {
  max-width: 80ch; margin: 0 0 clamp(16px, 2vw, 22px); padding: 12px 16px;
  background: var(--brand-tint); border: 2px dashed var(--brand-edge); border-radius: var(--r-sm);
  color: var(--ink); font-size: var(--f-sm);
}
.why-band .needs-tyler { margin-top: clamp(18px, 2.4vw, 26px); }

.yards { display: grid; gap: 14px; margin: 0; }
.yards li { display: grid; gap: 2px; font-size: var(--f-sm); }
.yards strong { color: var(--ink); }
.yards span { color: var(--ink-muted); }
.yards a { justify-self: start; color: var(--brand-ink); font-weight: 700; text-underline-offset: 3px; }

.job-hero { text-align: left; }
.job-hero-in { display: grid; gap: clamp(22px, 3vw, 44px); align-items: center; }
@media (min-width: 900px) { .job-hero-in { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); } }
.job-hero .crumb { margin-bottom: 1em; }
.job-hero .crumb a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; text-decoration: none; }
.job-hero .crumb svg { width: 18px; height: 18px; }
.job-hero .role-kicker { justify-content: flex-start; gap: 4px 18px; }
.job-hero h1 { margin: .25em 0 0; text-wrap: balance; }
.job-hero .job-es-title { margin: .2em 0 0; color: var(--brand-ink); font-size: var(--f-lg); }
.job-facts { display: grid; gap: 10px; margin: 1.2em 0 0; }
.job-facts li { display: flex; gap: 10px; align-items: flex-start; }
.job-facts svg { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px; color: var(--brand-ink); }
.job-act { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 1.5em; }
.job-act-center { justify-content: center; }
.job-hero .lang-switch { color: var(--ink); }
.job-hero-pic {
  margin: 0; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--band); border-radius: var(--r); box-shadow: var(--shadow-2);
}
@media (max-width: 899px) { .job-hero-pic { aspect-ratio: 16 / 9; } }
.job-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.job-body .prose h2 { font-size: var(--f-xl); }
.ticks { list-style: none; padding: 0; margin: .6em 0 0; display: grid; gap: 9px; }
.ticks li { position: relative; padding-left: 28px; }
.ticks li::before {
  content: ""; position: absolute; left: 3px; top: .38em; width: 13px; height: 7px;
  border-left: 2.5px solid var(--brand-ink); border-bottom: 2.5px solid var(--brand-ink);
  transform: rotate(-45deg);
}
.ticks-soft li::before {
  width: 8px; height: 8px; top: .5em; left: 5px; transform: none;
  border: 2px solid var(--ink-muted); border-radius: 50%;
}
.es-note { font-size: var(--f-sm); color: var(--ink-muted); font-style: italic; }
.where { display: flex; gap: 10px; align-items: flex-start; }
.where svg { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 3px; color: var(--brand-ink); }
.where a { color: var(--brand-ink); font-weight: 700; text-underline-offset: 3px; }
.next-steps { margin-top: .9em; }

@media (min-width: 900px) { .job-rail { position: sticky; top: 182px; align-self: start; } }
.job-rail .btn-block { width: 100%; justify-content: center; margin-top: 10px; }
.job-rail .btn-block + .btn-block { margin-top: 8px; }
.share-job { gap: 8px; }
.share-job svg { width: 18px; height: 18px; }
.job-rail h2 + .other-roles { margin-top: 0; }
.job-rail h2:not(:first-child) { margin-top: 1.4em; }
.other-roles { display: grid; gap: 11px; margin: 0; }
.other-roles li { display: grid; gap: 1px; font-size: var(--f-sm); }
.other-roles a {
  color: var(--ink); font-weight: 700;
  text-decoration: underline; text-decoration-color: var(--band-3); text-underline-offset: 3px;
}
@media (hover: hover) { .other-roles a:hover { text-decoration-color: var(--brand-ink); } }
.other-roles li > span { color: var(--ink-muted); font-size: var(--f-xs); }

@media (max-width: 619px) {
  .careers-hero .lede { font-size: var(--f-base); }
  .careers-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; margin-top: 1.1em; font-size: var(--f-xs); }

  .careers-facts li {
    display: flex; align-items: center; justify-content: center; gap: .3em;
    padding: 7px 8px; text-align: center; border-radius: var(--r-sm);
  }

  .careers-act { gap: 10px; margin-top: 1.2em; flex-wrap: wrap; }
  .careers-act .btn-lg { flex: 1 1 auto; justify-content: center; padding: 12px 16px; min-height: 46px; font-size: var(--f-sm); }
  .lang-switch button { padding: 0 11px; }
}

@media (max-width: 719px) {
  .role-summary { -webkit-line-clamp: 2; }
  .role-go { padding-top: 12px; }
}

.why-band h2 { text-align: left; }

@media (max-width: 619px) {
  .job-act .btn { flex: 1 1 100%; justify-content: center; }
}

.f-legend-req { margin: -4px 0 14px; font-size: var(--f-sm); color: var(--ink-muted); }
.f-err { margin: 6px 0 0; font-size: var(--f-sm); font-weight: 700; color: #a3211c; }
.apply-form [aria-invalid="true"] { border-color: #a3211c; box-shadow: 0 0 0 2px rgba(163, 33, 28, .18); }
.file-list li { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; }
.file-remove { margin-left: auto; min-height: 36px; padding: 4px 12px; border: 1px solid var(--hairline, #d8d2c8); border-radius: 8px; background: #fff; color: inherit; font: inherit; font-size: var(--f-sm); font-weight: 700; cursor: pointer; }
.file-remove:hover { border-color: currentColor; }
.review dd { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; }
.review dd > span { min-width: 0; overflow-wrap: anywhere; }
.review-edit { margin-left: auto; padding: 2px 0; border: 0; background: none; color: var(--brand-ink); font: inherit; font-size: var(--f-sm); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.apply-done { padding: clamp(20px, 4vw, 32px); border: 1px solid var(--hairline, #d8d2c8); border-radius: 14px; background: #fff; }
.apply-done:focus { outline: none; }
.apply-done:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
.apply-done-mark { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 0 12px; border-radius: 50%; background: #1f5a33; color: #fff; font-size: 1.5rem; font-weight: 800; }
.apply-done h3 { margin: 0 0 8px; }
.apply-done-next { margin: 16px 0; padding-left: 1.2em; display: grid; gap: 8px; }
.apply-done-act { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; }

.f-files input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.file-pick { display: inline-flex; align-items: center; min-height: 48px; margin-top: 8px; padding: 10px 18px; border: 2px dashed var(--ink-muted); border-radius: 10px; background: #fff; font-weight: 700; cursor: pointer; }
.file-pick:hover { border-style: solid; }
.f-files:focus-within .file-pick { outline: 3px solid var(--brand); outline-offset: 2px; }
.review dd { flex-wrap: nowrap; }
.review dd > span { flex: 1 1 auto; }
.review-edit { flex: none; }

.city-flow { max-width: none; }
.city-flow > p, .city-flow > ul, .city-flow > h2, .city-flow > h3 { max-width: 68ch; }
.city-flow > h2 { margin-top: 1.9em; }
.city-fig { margin: clamp(20px, 3vw, 32px) 0; }
.city-fig-img { width: 100%; height: auto; border-radius: var(--r); display: block; }
.city-cards { display: grid; gap: clamp(16px, 2vw, 24px); grid-template-columns: 1fr; margin: 1.4em 0 2em; }
@media (min-width: 700px) { .city-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .city-cards-3 { grid-template-columns: repeat(3, 1fr); } }
.city-card { display: flex; flex-direction: column; gap: 8px; }
.city-card h3 { margin: 10px 0 0; }
.city-card h3 a { color: inherit; text-decoration: none; }
.city-card h3 a:hover { text-decoration: underline; }
.city-card p { margin: 0; }
.city-card-img { width: 100%; height: auto; border-radius: var(--r); display: block; }
.menu-kicker { display: block; font-size: .72em; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .75; }
.sec-photo { margin: 12px 0 18px; }
.sec-badge { display: block; max-width: 220px; height: auto; margin: 10px 0 16px; }
.form-note { max-width: 62ch; margin-left: auto; margin-right: auto; }
.form-alt { margin-top: 2.2em; padding-top: 1.6em; border-top: 1px solid var(--hairline); }

@media (min-width: 1100px) {
  .hdr {
    display: flex; align-items: center; gap: clamp(16px, 1.6vw, 28px);
    background: var(--brand);
    padding: 10px clamp(20px, 3vw, 48px);
    border-bottom: 2px solid #000;
  }
  .hdr-top, .hdr-top-in { display: contents; }
  .hdr .brand { order: 1; margin-right: 0; flex: none; }
  .hdr-navwrap { order: 2; flex: 1 1 auto; min-width: 0; padding: 0; background: none; border-bottom: 0; }
  .hdr-nav.wrap { width: auto; max-width: none; margin: 0; padding: 0; }
  .hdr-tel { order: 3; }
  .hdr-quote { order: 4; }
}
