:root {
  --red: #c1121f;
  --red-dark: #8f0d17;
  --black: #111113;
  --ink: #25262a;
  --gray-900: #191a1d;
  --gray-700: #4b4d53;
  --gray-200: #e8e9ec;
  --gray-100: #f5f6f8;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(17, 17, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

::selection {
  color: var(--white);
  background: var(--red);
}

a {
  color: inherit;
  text-decoration: none;
}

.faith-mark {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 30;
  padding: 9px 12px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(193, 18, 31, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(17, 17, 19, 0.14);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 8px 7vw;
  color: var(--black);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 17, 19, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  max-width: min(210px, 48vw);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  display: block;
  width: auto;
  max-width: 152px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
}

.nav-links {
  gap: clamp(16px, 3vw, 34px);
  color: var(--gray-900);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--red);
}

.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(193, 18, 31, 0.22);
  line-height: 1;
  text-align: center;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: var(--white);
  background: var(--red-dark);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
  gap: clamp(34px, 5vw, 76px);
  min-height: min(760px, 82vh);
  align-items: center;
  overflow: hidden;
  padding: 108px 7vw 92px;
  color: var(--white);
  background: var(--black);
}

.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background:
    linear-gradient(90deg, rgba(17, 17, 19, 0.92) 0%, rgba(17, 17, 19, 0.68) 42%, rgba(17, 17, 19, 0.1) 100%),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.36) 0 8%, transparent 9%),
    linear-gradient(135deg, rgba(193, 18, 31, 0.85), transparent 28%),
    linear-gradient(24deg, #24272c 0 16%, #73787e 16% 17%, #2e3237 17% 36%, #a9adb3 36% 37%, #4d5359 37% 59%, #d9dce0 59% 60%, #30343a 60% 100%);
  background-size: cover;
  animation: heroDrift 16s ease-in-out infinite alternate;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(0deg, rgba(17, 17, 19, 0.18), rgba(17, 17, 19, 0.18)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  animation: riseIn 700ms ease both;
}

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  animation: panelFloat 4.8s ease-in-out infinite;
}

.panel-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  margin-bottom: 10px;
}

.panel-logo img {
  width: min(230px, 78%);
  height: auto;
}

.panel-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 14px;
  padding: 18px 4px;
  border-top: 1px solid var(--gray-200);
}

.panel-row span {
  grid-row: span 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.panel-row strong {
  color: var(--black);
}

.panel-row small {
  color: var(--gray-700);
  line-height: 1.35;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff5864;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--red);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(193, 18, 31, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 18px 34px rgba(193, 18, 31, 0.34);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: clamp(74px, 9vw, 126px) 7vw;
}

.section-muted {
  background: var(--gray-100);
}

.split-section,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.section-lead {
  margin: 0;
  color: var(--gray-700);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(193, 18, 31, 0.1), transparent 28%),
    var(--gray-100);
}

.coverage-copy {
  max-width: 650px;
}

.coverage-copy p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: var(--gray-700);
  font-size: 1.08rem;
}

.coverage-states {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-states span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--red);
  border-radius: 999px;
  color: var(--gray-900);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 17, 19, 0.06);
  font-size: 0.92rem;
  font-weight: 900;
}

.coverage-map-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 19, 0.08);
  border-radius: 10px;
  background: #8f0d17;
  box-shadow: var(--shadow);
}

.coverage-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(180deg, transparent 62%, rgba(17, 17, 19, 0.22));
  pointer-events: none;
}

.coverage-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.96) contrast(1.04);
  opacity: 1;
}

.state-point {
  position: absolute;
  z-index: 3;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 5px 14px rgba(17, 17, 19, 0.32);
}

.state-point::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(193, 18, 31, 0.72);
  border-radius: inherit;
  animation: statePointPulse 2.8s ease-out infinite;
}

.point-ma { top: 22%; left: 90%; }
.point-pa { top: 30%; left: 82%; }
.point-ct { top: 25%; left: 88%; }
.point-ri { top: 24%; left: 89%; }
.point-ny { top: 23%; left: 85%; }
.point-nj { top: 29%; left: 86%; }
.point-va { top: 45%; left: 81%; }
.point-ga { top: 62%; left: 74%; }
.point-nh { top: 18%; left: 89%; }
.point-me { top: 14%; left: 91%; }

.point-ct::before,
.point-va::before,
.point-me::before {
  animation-delay: -0.7s;
}

.point-ri::before,
.point-ny::before,
.point-ga::before {
  animation-delay: -1.4s;
}

.point-nj::before,
.point-pa::before,
.point-nh::before {
  animation-delay: -2.1s;
}

.map-coverage-summary {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: calc(100% - 44px);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(17, 17, 19, 0.2);
  backdrop-filter: blur(10px);
  animation: labelFloat 4s ease-in-out infinite;
}

.map-coverage-summary strong,
.map-coverage-summary span {
  display: block;
}

.map-coverage-summary strong {
  color: var(--red);
  font-size: 1rem;
}

.map-coverage-summary span {
  margin-top: 3px;
  color: var(--gray-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(17, 17, 19, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(193, 18, 31, 0.28);
  box-shadow: 0 24px 54px rgba(17, 17, 19, 0.12);
  transform: translateY(-6px);
}

.service-card p {
  margin-bottom: 0;
  color: var(--gray-700);
}

.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  color: var(--red);
  background: #fff0f2;
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.photo-carousel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-left: 6px solid var(--red);
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.carousel-track,
.carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 420ms ease, transform 420ms ease;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide figcaption {
  position: absolute;
  right: 18px;
  bottom: 48px;
  z-index: 2;
  padding: 10px 14px;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(17, 17, 19, 0.2);
  font-weight: 900;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 17, 19, 0.58);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
  transform: translateY(-50%);
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.06);
}

.carousel-prev {
  left: 18px;
}

.carousel-next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, width 160ms ease;
}

.carousel-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--red);
}

.image-band-content {
  max-width: 760px;
}

.pill-grid,
.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.pill-grid span,
.problem-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 6px;
  color: var(--gray-900);
  background: var(--gray-100);
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.pill-grid span:hover,
.problem-grid span:hover {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}

.problem-grid span {
  border-left: 4px solid var(--red);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 17, 19, 0.06);
}

.why-section {
  color: var(--white);
  background: var(--black);
}

.why-section h2 {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.why-grid div {
  min-height: 180px;
  padding: 26px;
  background: #191a1d;
  transition: background 180ms ease, transform 180ms ease;
}

.why-grid div:hover {
  background: #202126;
  transform: translateY(-5px);
}

.why-grid strong,
.why-grid span {
  display: block;
}

.why-grid strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.04rem;
}

.why-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.hiring-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(193, 18, 31, 0.06), transparent 42%),
    var(--white);
}

.hiring-copy {
  max-width: 620px;
}

.hiring-copy p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: var(--gray-700);
  font-size: 1.08rem;
}

.hiring-image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hiring-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-left: 6px solid var(--red);
  background: linear-gradient(90deg, rgba(17, 17, 19, 0.18), transparent 45%);
  pointer-events: none;
}

.hiring-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  padding: clamp(66px, 7vw, 96px) 7vw;
  background: var(--gray-100);
}

.contact-copy {
  max-width: 620px;
}

.contact-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--gray-700);
  font-size: 1.08rem;
}

.contact-highlight {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 5px solid var(--red);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--gray-900));
  box-shadow: 0 18px 42px rgba(193, 18, 31, 0.16);
}

.contact-highlight strong,
.contact-highlight span,
.contact-highlight small {
  display: block;
}

.contact-highlight strong {
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.contact-highlight span {
  color: rgba(255, 255, 255, 0.82);
}

.contact-highlight small {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-details div {
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 17, 19, 0.06);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.contact-details div:hover {
  box-shadow: 0 20px 44px rgba(17, 17, 19, 0.1);
  transform: translateY(-4px);
}

.contact-details strong,
.contact-details span,
.contact-details a {
  display: block;
}

.contact-details strong {
  margin-bottom: 4px;
  color: var(--black);
}

.contact-details span,
.contact-details a {
  color: var(--gray-700);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hidden-field {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  color: var(--black);
  background: var(--white);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(193, 18, 31, 0.55);
  outline: 3px solid rgba(193, 18, 31, 0.12);
  transform: translateY(-1px);
}

.form-wide {
  grid-column: 1 / -1;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(46px, 6vw, 72px) 7vw 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.footer-brand img {
  display: block;
  width: 130px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34));
}

.footer-brand p {
  max-width: 420px;
  margin-bottom: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.footer-column a {
  width: fit-content;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
  transform: translateX(2px);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

.careers-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(86px, 10vw, 132px) 7vw;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 17, 19, 0.94), rgba(17, 17, 19, 0.74)),
    radial-gradient(circle at 78% 24%, rgba(193, 18, 31, 0.38), transparent 24%),
    linear-gradient(135deg, var(--gray-900), var(--black));
}

.careers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

.careers-hero-copy,
.careers-hero-card {
  position: relative;
  z-index: 1;
}

.careers-hero h1 {
  max-width: 760px;
}

.careers-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
}

.careers-hero-card {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.careers-hero-card strong,
.careers-hero-card span {
  display: block;
}

.careers-hero-card strong {
  margin-bottom: 10px;
  color: var(--black);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}

.careers-hero-card span {
  color: var(--gray-700);
  font-size: 1.02rem;
}

.careers-list-section .section-heading {
  margin-bottom: 34px;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.job-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(17, 17, 19, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.job-card:hover {
  border-color: rgba(193, 18, 31, 0.28);
  box-shadow: 0 24px 54px rgba(17, 17, 19, 0.12);
  transform: translateY(-6px);
}

.job-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.job-card-header p,
.job-card-header span {
  margin: 0;
}

.job-location {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-card-header span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gray-900);
  background: var(--gray-100);
  font-size: 0.78rem;
  font-weight: 900;
}

.job-card p:not(.job-location) {
  margin-bottom: 24px;
  color: var(--gray-700);
}

.job-role-list {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.job-role-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.job-role-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.job-role-list h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.job-role-list p {
  margin-bottom: 0;
  color: var(--gray-700);
  font-size: 0.94rem;
  line-height: 1.42;
}

.job-card .btn {
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
}

.careers-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(58px, 7vw, 86px) 7vw;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--gray-900));
}

.careers-cta h2 {
  color: var(--white);
}

.careers-cta p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.careers-cta .btn-primary {
  color: var(--red);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(17, 17, 19, 0.18);
}

.careers-cta .btn-primary:hover,
.careers-cta .btn-primary:focus-visible {
  color: var(--white);
  background: var(--black);
}

.thank-you-section {
  display: grid;
  min-height: calc(100vh - 72px);
  padding: clamp(70px, 10vw, 120px) 7vw;
  place-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(193, 18, 31, 0.12), transparent 28%),
    var(--gray-100);
}

.thank-you-card {
  max-width: 820px;
  padding: clamp(34px, 6vw, 62px);
  border: 1px solid var(--gray-200);
  border-left: 6px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  color: var(--black);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--gray-700);
  font-size: 1.12rem;
}

.btn-secondary.dark {
  color: var(--black);
  border-color: rgba(17, 17, 19, 0.32);
  background: var(--white);
}

.btn-secondary.dark:hover,
.btn-secondary.dark:focus-visible {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.reveal-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.06) translateX(-18px);
  }
}

@keyframes labelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes statePointPulse {
  0% {
    opacity: 0.85;
    transform: scale(0.65);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    align-self: start;
    max-width: 620px;
  }

  .card-grid,
  .why-grid,
  .job-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-band,
  .coverage-section {
    grid-template-columns: 1fr;
  }

  .coverage-map-card {
    min-height: 360px;
  }

  .photo-carousel {
    min-height: 340px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .careers-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .faith-mark {
    right: 14px;
    bottom: 14px;
    padding: 8px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 18px 6vw;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.88rem;
  }

  .nav-links .nav-cta {
    width: 100%;
  }

  .brand img {
    height: 54px;
    max-width: 132px;
  }

  .hero {
    min-height: 680px;
    padding: 76px 6vw 70px;
  }

  .hero-panel {
    padding: 16px;
  }

  .panel-logo {
    min-height: 96px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.75rem);
  }

  .section {
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .split-section,
  .two-column,
  .card-grid,
  .why-grid,
  .coverage-section,
  .hiring-section,
  .job-grid {
    grid-template-columns: 1fr;
  }

  .careers-hero {
    min-height: auto;
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .careers-cta {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .careers-cta .btn {
    width: 100%;
  }

  .coverage-map-card {
    min-height: 300px;
  }

  .map-coverage-summary {
    left: 14px;
    bottom: 14px;
    padding: 10px 12px;
  }

  .state-point {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }

  .state-point::before {
    inset: -4px;
  }

  .service-card {
    min-height: 190px;
  }

  .hiring-image,
  .hiring-image img {
    min-height: 280px;
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .contact-section {
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 720px;
  }

  .pill-grid span,
  .problem-grid span,
  .coverage-states span {
    width: 100%;
  }

  .coverage-map-card {
    min-height: 260px;
  }

  .map-coverage-summary span {
    font-size: 0.68rem;
  }
}
