:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --st-hero-shift: 0px;
  --st-band-shift: 0px;
  --strip-delay: 0ms;
  --slide-delay: 0ms;
  --eyebrow-accent: var(--accent);
}

body.home-landing .hero {
  position: relative;
  z-index: 1;
  min-height: min(92vh, 920px);
  overflow: hidden;
  margin-bottom: 0;
  background: transparent;
  display: flex;
  align-items: stretch;
}

body.home-landing .hero-mobile-banner {
  display: none;
}

/* ---- Hero: split original banner into 4 panels ---- */

body.home-landing .hero-panels {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  transform: translate3d(0, var(--st-hero-shift, 0px), 0);
  will-change: transform;
}

body.home-landing .hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  opacity: 0;
  will-change: transform, opacity;
}

body.home-landing .hero-panel--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

body.home-landing .hero-panel--left.hero-panel--photo {
  transform: translateX(-105%);
  animation: homeHeroFromLeft 0.95s var(--ease-out) 0.08s forwards;
}

body.home-landing .hero-panel--top.hero-panel--photo {
  transform: translateY(-105%);
  animation: homeHeroFromTop 0.95s var(--ease-out) 0.32s forwards;
}

body.home-landing .hero-panel--bottom.hero-panel--photo {
  transform: translateY(105%);
  animation: homeHeroFromBottom 0.95s var(--ease-out) 0.2s forwards;
}

body.home-landing .hero-panel--right.hero-panel--photo {
  transform: translateX(105%);
  animation: homeHeroFromRight 0.95s var(--ease-out) 0.44s forwards;
}

body.home-landing .hero-cutout-wrap {
  position: absolute;
  right: -2%;
  bottom: 0;
  z-index: 2;
  height: min(96%, 920px);
  width: min(46vw, 560px);
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, var(--st-hero-shift, 0px), 0);
  will-change: transform;
}

body.home-landing .hero-cutout {
  display: block;
  width: 112%;
  height: 100%;
  margin-left: auto;
  object-fit: cover;
  object-position: left bottom;
  opacity: 0;
  transform: translate3d(16%, 0, 0);
}

body.home-landing .hero.hero-panels-ready .hero-cutout {
  animation: heroCutoutEnter 0.95s var(--ease-out) 0.5s forwards;
}

@keyframes heroCutoutEnter {
  from {
    opacity: 0;
    transform: translate3d(16%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes homeHeroFromLeft {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes homeHeroFromBottom {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes homeHeroFromTop {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes homeHeroFromRight {
  to { opacity: 1; transform: translateX(0); }
}

body.home-landing .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(0, var(--st-hero-shift, 0px), 0);
  will-change: transform;
  /* Lighter on the right so the banner subject stays visible */
  background: linear-gradient(
    90deg,
    rgba(6, 13, 8, 0.48) 0%,
    rgba(6, 13, 8, 0.28) 42%,
    rgba(6, 13, 8, 0.14) 72%,
    rgba(6, 13, 8, 0.06) 100%
  );
}

body.home-landing .hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: inherit;
}

body.home-landing .hero-inner {
  z-index: 2;
  grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
  align-items: start;
  gap: 44px;
  padding: 80px 0 100px;
}

body.home-landing .hero-card {
  width: 100%;
  max-width: 390px;
  background: rgba(10, 16, 10, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.home-landing .hero-card .form-group input,
body.home-landing .hero-card .form-group select,
body.home-landing .hero-card .form-group textarea {
  background: rgba(10, 16, 10, 0.42);
  border-color: rgba(255, 255, 255, 0.14);
}

body.home-landing .hero-card .form-group input:focus,
body.home-landing .hero-card .form-group select:focus,
body.home-landing .hero-card .form-group textarea:focus {
  background: rgba(10, 16, 10, 0.55);
  border-color: var(--accent);
}

body.home-landing .hero-copy {
  max-width: 520px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

body.home-landing .hero-copy h1 {
  max-width: none;
  margin-bottom: 16px;
  line-height: 1.02;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.75));
}

body.home-landing .hero-copy h1 .h1-keyword {
  display: block;
  margin-bottom: 0.35em;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eyebrow-accent);
  -webkit-text-fill-color: var(--eyebrow-accent);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

body.home-landing .hero-copy h1 .h1-brand {
  display: block;
  font-size: clamp(2.7rem, 5.4vw, 4.35rem);
  line-height: 0.98;
  background: linear-gradient(165deg, #ffffff 0%, #e8ffb8 38%, #a0cc00 72%, #c9ff1f 100%);
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: none;
}

body.home-landing .hero-copy .hero-sub {
  color: #edf5e0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

body.home-landing .hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

body.home-landing .hero-card .card-eyebrow {
  opacity: 1;
  transform: none;
}

body.home-landing .hero-copy .trust-row {
  margin-top: 4px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(10, 16, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.home-landing .hero-social {
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(10, 16, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.home-landing .hero-card .card-note {
  color: #d8e8c8;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

body.home-landing .hero-card .form-group label {
  color: #e5f0d8;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

body.home-landing .hero-card .form-note {
  color: #c8dcc0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

body.home-landing .hero-card .form-note a {
  color: #d4ff66;
}

body.home-landing .hero-copy .trust-item span {
  color: #c5d8b8;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

body.home-landing .hero-copy .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(10, 16, 10, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body.home-landing .hero-copy .btn-ghost:hover,
body.home-landing .hero-copy .btn-ghost:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(201, 255, 31, 0.14);
}

body.home-landing .hero-social-label {
  color: #e0f5c8;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

body.home-landing .hero-social .social-icon {
  background: rgba(201, 255, 31, 0.14);
  border-color: rgba(201, 255, 31, 0.42);
  color: var(--accent);
}

body.home-landing .hero-social .social-icon:hover {
  background: rgba(255, 225, 74, 0.18);
  border-color: var(--eyebrow-accent);
  color: var(--eyebrow-accent);
  transform: translateY(-2px);
}

/* ---- Trust strip ---- */
body.home-landing .trust-strip {
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, #0a1008 0%, #0d140a 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

body.home-landing .trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(6px, 1.5vw, 16px);
  padding: clamp(14px, 2.5vw, 22px) 0;
}

body.home-landing .trust-strip div {
  text-align: center;
  min-width: 0;
  padding: clamp(6px, 1.5vw, 10px) clamp(4px, 1vw, 14px);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

body.home-landing .trust-strip span {
  display: block;
  font-size: clamp(0.62rem, 1.8vw, 0.78rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: clamp(0.03em, 0.2vw, 0.1em);
  color: var(--muted);
  margin-bottom: clamp(3px, 0.8vw, 6px);
  line-height: 1.2;
}

body.home-landing .trust-strip strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(0.62rem, 2.4vw, 1.05rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: clamp(0.01em, 0.15vw, 0.04em);
  color: var(--accent);
  line-height: 1.15;
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* ---- Service cards with photo headers ---- */
body.home-landing .service-card--media {
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

body.home-landing .service-card-media {
  position: relative;
  height: clamp(156px, 18vw, 188px);
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s var(--ease-out);
}

/* Promo art (st-*.webp) is taller — show full width, crop from bottom only */
body.home-landing .service-card-media--promo {
  height: clamp(176px, 22vw, 220px);
  background-size: 100% auto;
  background-position: center top;
}

body.home-landing .service-card--media:hover .service-card-media {
  transform: scale(1.04);
}

body.home-landing .service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 13, 8, 0.05) 0%,
    rgba(6, 13, 8, 0.55) 58%,
    rgba(10, 16, 10, 0.95) 100%
  );
}

body.home-landing .service-card-body {
  position: relative;
  z-index: 1;
  margin-top: -36px;
  padding: 0 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

body.home-landing .service-card--media .service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}

body.home-landing .service-card--media h3 {
  margin-bottom: 8px;
}

body.home-landing .service-card--media p {
  margin-top: auto;
}

body.home-landing .work-teaser-cta {
  text-align: center;
  margin-top: 2rem;
}
/* ---- Scroll reveals ---- */
body.home-landing .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

body.home-landing .reveal.visible,
body.home-landing .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.home-landing .reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

body.home-landing .reveal-left.visible,
body.home-landing .reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

body.home-landing .reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

body.home-landing .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

body.home-landing .reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

body.home-landing .reveal-scale.visible,
body.home-landing .reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

body.home-landing .reveal-photo {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

body.home-landing .reveal-photo.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---- Directional slide-enter (far offsets) ---- */
body.home-landing .slide-enter {
  opacity: 0;
  transition:
    opacity 0.86s var(--ease-out),
    transform 0.86s var(--ease-out);
  transition-delay: var(--slide-delay, 0ms);
  will-change: opacity, transform;
}

body.home-landing .slide-enter--left {
  transform: translate3d(calc(-1 * min(48vw, 160px)), 0, 0);
}

body.home-landing .slide-enter--right {
  transform: translate3d(min(48vw, 160px), 0, 0);
}

body.home-landing .slide-enter--top {
  transform: translate3d(0, calc(-1 * min(18vh, 88px)), 0);
}

body.home-landing .slide-enter--bottom {
  transform: translate3d(0, min(18vh, 88px), 0);
}

body.home-landing .slide-enter.visible,
body.home-landing .slide-enter.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Section eyebrows + h2 slide from left */
body.home-landing .section-heading .eyebrow.reveal-left,
body.home-landing .section-heading h2.reveal-left {
  transform: translate3d(calc(-1 * min(42vw, 140px)), 0, 0);
}

body.home-landing .section-heading .eyebrow.reveal-left.visible,
body.home-landing .section-heading h2.reveal-left.visible,
body.home-landing .section-heading .eyebrow.reveal-left.is-visible,
body.home-landing .section-heading h2.reveal-left.is-visible {
  transform: translate3d(0, 0, 0);
}

body.home-landing .stagger-1 { transition-delay: 0.08s; }
body.home-landing .stagger-2 { transition-delay: 0.16s; }
body.home-landing .stagger-3 { transition-delay: 0.24s; }
body.home-landing .stagger-4 { transition-delay: 0.32s; }

/* Hero content ? choreographed entrance (after panels) */
body.home-landing .hero-enter {
  opacity: 0;
}

body.home-landing .hero.hero-panels-ready .hero-enter--from-left {
  animation: heroContentFromLeft 0.9s var(--ease-out) forwards;
}

body.home-landing .hero.hero-panels-ready .hero-enter--from-right {
  animation: heroContentFromRight 0.9s var(--ease-out) forwards;
}

body.home-landing .hero.hero-panels-ready .hero-enter--from-bottom {
  animation: heroContentFromBottom 0.9s var(--ease-out) forwards;
}

body.home-landing .hero-enter--d0  { animation-delay: 0s; }
body.home-landing .hero-enter--d1  { animation-delay: 1s; }
body.home-landing .hero-enter--d14 { animation-delay: 1.4s; }
body.home-landing .hero-enter--d17 { animation-delay: 1.7s; }

@keyframes heroContentFromLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroContentFromRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroContentFromBottom {
  from {
    opacity: 0;
    transform: translateY(56px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1060px) {
  body.home-landing .hero-inner {
    grid-template-columns: 1fr;
    max-width: none;
    justify-items: center;
    gap: 28px;
    padding: 56px 0 72px;
  }

  body.home-landing .hero-copy {
    order: 1;
    width: 100%;
    max-width: min(400px, 100%);
  }

  body.home-landing .hero-card {
    order: 2;
    width: 100%;
    max-width: min(360px, 100%);
  }

  body.home-landing .hero-copy h1 {
    font-size: clamp(2.25rem, 7vw, 3.35rem);
    max-width: 10ch;
  }

  body.home-landing .hero {
    min-height: auto;
  }

  body.home-landing .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(6, 13, 8, 0.5) 0%,
      rgba(6, 13, 8, 0.32) 55%,
      rgba(6, 13, 8, 0.18) 100%
    );
  }

}

/* Tablet portrait ? keep portrait subject visible above copy */
@media (max-width: 1060px) and (min-width: 769px) {
  body.home-landing .hero-panels {
    display: block;
    grid-template-columns: none;
    grid-template-rows: none;
    background-image: url("../images/jns-construction-services-hero-mobile.webp");
    background-size: cover;
    background-position: center 16%;
    background-repeat: no-repeat;
  }

  body.home-landing .hero-panel {
    display: none !important;
    animation: none !important;
  }

  body.home-landing .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(6, 13, 8, 0.1) 0%,
      rgba(6, 13, 8, 0.08) 40%,
      rgba(6, 13, 8, 0.5) 65%,
      rgba(6, 13, 8, 0.85) 100%
    );
  }

  body.home-landing .hero-inner {
    padding-top: clamp(16px, 4vw, 24px);
  }

  body.home-landing .hero-copy .hero-actions {
    margin-top: max(12px, calc(min(34vh, 300px) - clamp(16px, 4vw, 24px)));
  }
}

/* =============================================
   HOMEPAGE MOBILE (768px and below)
   ============================================= */
@media (max-width: 768px) {
  body.home-landing .hero-mobile-banner {
    display: block;
    position: relative;
    width: 100%;
    flex: 0 0 auto;
    height: clamp(220px, 44vw, 320px);
    overflow: hidden;
    background: #0a100a;
  }

  body.home-landing .hero-mobile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 14%;
    display: block;
  }

  body.home-landing .hero-mobile-banner__scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(6, 13, 8, 0.08) 0%,
      rgba(6, 13, 8, 0.02) 42%,
      rgba(6, 13, 8, 0.55) 78%,
      rgba(6, 13, 8, 0.92) 100%
    );
  }

  /* Hero — portrait banner on top, copy + form below */
  body.home-landing .hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    background: #060d08;
  }

  body.home-landing .hero-panels,
  body.home-landing .hero-cutout-wrap {
    display: none !important;
  }

  body.home-landing .hero-overlay {
    display: none;
  }

  body.home-landing .hero-content {
    position: relative;
    align-items: stretch;
    width: 100%;
    background: linear-gradient(180deg, #0a100a 0%, #060d08 100%);
  }

  body.home-landing .hero-inner {
    gap: 16px;
    padding: 20px 0 36px;
    justify-items: stretch;
  }

  body.home-landing .hero-enter {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* Copy — below banner, no overlap hacks */
  body.home-landing .hero-copy {
    order: 1;
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    text-align: center;
  }

  body.home-landing .hero-copy .eyebrow {
    font-size: calc(0.6rem + 2px);
    letter-spacing: 0.06em;
    line-height: 1.45;
    margin-bottom: 10px;
    max-width: 34ch;
    margin-inline: auto;
  }

  body.home-landing .hero-copy h1 {
    max-width: none;
    margin-inline: auto;
    margin-top: 0;
    margin-bottom: 8px;
  }

  body.home-landing .hero-copy h1 .h1-brand {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
  }

  body.home-landing .hero-copy h1 .h1-keyword {
    font-size: clamp(0.72rem, 3.2vw, 0.95rem);
  }

  body.home-landing .hero-copy .hero-sub {
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 32ch;
    margin-inline: auto;
    margin-bottom: 16px;
  }

  body.home-landing .hero-copy .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  body.home-landing .hero-copy .hero-actions .btn {
    width: 100%;
    min-height: 46px;
  }

  body.home-landing .hero-copy .trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    justify-items: center;
    text-align: center;
    padding: 10px 10px;
    width: 100%;
    margin-top: 0;
  }

  body.home-landing .hero-copy .trust-divider {
    display: none;
  }

  body.home-landing .hero-copy .trust-item strong {
    font-size: 1rem;
  }

  body.home-landing .hero-copy .trust-item span {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  /* Social lives in footer on mobile ? keeps hero uncluttered */
  body.home-landing .hero-copy .hero-social {
    display: none;
  }

  /* Quote form - full width below headline block */
  body.home-landing .hero-card {
    order: 2;
    width: 100%;
    max-width: 100%;
  }
}

.st-intent-strip {
  position: relative;
  z-index: 3;
  padding: 0 0 8px;
  background: linear-gradient(180deg, #0d140a 0%, var(--bg) 100%);
  overflow: hidden;
}

.st-intent-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.st-intent-strip a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.st-intent-strip a:hover,
.st-intent-strip a:focus-visible {
  border-color: var(--border-accent);
  background: rgba(201, 255, 31, 0.08);
  transform: translateY(-2px);
}

.st-intent-strip strong {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1.3;
}

.st-intent-strip span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

/* =============================================
   PROCESS BAND — parallax background
   ============================================= */
.st-process-band {
  padding: 88px 0;
}

.st-process-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(6, 13, 8, 0.92) 0%,
    rgba(10, 16, 10, 0.88) 45%,
    rgba(201, 255, 31, 0.14) 100%
  );
}

.st-process-band .container {
  position: relative;
  z-index: 2;
}

.st-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.st-process-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(10, 16, 10, 0.72);
  border: 1px solid rgba(201, 255, 31, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.st-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #101010;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.st-process-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 10px;
}

.st-process-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.72;
}

/* =============================================
   ROUTE BAND — CTA cards
   ============================================= */
.st-route-band {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0a1008 100%);
}

.st-route-band--parallax {
  position: relative;
  z-index: 2;
  background: transparent;
}

.st-route-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 10, 0.9) 0%,
    rgba(10, 16, 10, 0.78) 50%,
    rgba(10, 16, 10, 0.92) 100%
  );
  pointer-events: none;
}

.st-route-band--parallax .container {
  position: relative;
  z-index: 2;
}

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

.st-route-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.st-route-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}

.st-route-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 10px;
}

.st-route-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}

.st-route-card span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.st-process-band,
.st-route-band--parallax {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
}

.st-process-band__bg,
.st-route-band__bg {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  transform: translate3d(0, var(--st-band-shift, 0px), 0);
  will-change: transform;
}

.st-process-band__bg {
  top: 0;
  height: 108%;
}

.st-route-band__bg {
  top: -28%;
  height: 156%;
}

.st-process-band__bg img,
.st-route-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.st-process-band__bg img {
  object-position: center 62%;
}

@media (max-width: 900px) {
  .st-process-grid,
  .st-route-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta-number,
  .header-cta-icon,
  .brand::before {
    animation: none !important;
  }

  body.home-landing .hero-copy h1 {
    animation: none;
    background-size: 100% 100%;
  }

  body.home-landing .hero-panels,
  body.home-landing .hero-cutout-wrap,
  body.home-landing .hero-overlay,
  body.home-landing .hero-cutout,
  .work-teaser__bg,
  .st-process-band__bg,
  .st-route-band__bg,
  .contact-section--parallax::before {
    transform: none !important;
  }

  [data-reveal],
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-photo,
  .slide-enter,
  .strip-slide,
  .eyebrow,
  .card-eyebrow {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body.home-landing .reveal,
  body.home-landing .reveal-left,
  body.home-landing .reveal-right,
  body.home-landing .reveal-scale,
  body.home-landing .reveal-photo,
  body.home-landing .slide-enter,
  body.home-landing .hero-panel {
    opacity: 1 !important;
    transform: none !important;
  }

  body.home-landing .hero-cutout {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  body.home-landing .st-review-carousel-track {
    transition: none !important;
    transform: none !important;
  }

  @media (max-width: 768px) {
    .sp-hero--panels .hero-panel {
      opacity: 1 !important;
      transform: none !important;
      animation: none !important;
    }

    body.home-landing .hero-enter {
      opacity: 1 !important;
      transform: none !important;
      animation: none !important;
    }
  }
}
