:root {
  --vetrix-green: #76b947;
  --vetrix-lime: #8fd14f;
  --vetrix-ink: #0c0e0b;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f3f4ee;
  color: #161814;
  opacity: 0;
  animation: page-in 0.7s var(--ease-out) forwards;
}

main > section:not(.is-flush) {
  padding-block: 5.5rem;
}

@media (min-width: 1024px) {
  main > section:not(.is-flush) {
    padding-block: 7.5rem;
  }
}

main > section.cta-band {
  padding-block: 4.25rem;
}

@media (min-width: 1024px) {
  main > section.cta-band {
    padding-block: 5.25rem;
  }
}

@keyframes page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

::selection {
  background: #76b947;
  color: #0c0e0b;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  height: 3px;
  width: 0;
  background: #76b947;
  transform-origin: left;
  pointer-events: none;
}

.grain::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: var(--grain);
  mix-blend-mode: overlay;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-down,
.reveal-zoom,
.reveal-flip {
  opacity: 0;
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}

.reveal { transform: translateY(16px); }
.reveal-left { transform: translateX(-20px); }
.reveal-right { transform: translateX(20px); }
.reveal-down { transform: translateY(-16px); }
.reveal-zoom { transform: translateY(16px); }
.reveal-flip { transform: translateY(16px); }

.reveal.is-in,
.reveal-left.is-in,
.reveal-right.is-in,
.reveal-down.is-in,
.reveal-zoom.is-in,
.reveal-flip.is-in {
  opacity: 1;
  transform: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.kicker::before {
  content: "";
  width: 1.7rem;
  height: 3px;
  flex: none;
  background: #76b947;
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.55s var(--ease-out) 0.2s;
}

h2.kicker::before {
  width: 2.25rem;
  height: 4px;
}

.vx-icon {
  width: 1.15em;
  color: #76b947;
  text-align: center;
}

.vx-icon-lg {
  font-size: 1.65rem;
}

.v-card-copy {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 72%;
  padding: 0.75rem 0.5rem 0.7rem 0.75rem;
}

@media (min-width: 768px) {
  .v-card-copy {
    width: 70%;
    padding: 0.9rem 0.55rem 0.8rem 0.95rem;
  }
}

.v-card-step {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #8fd14f;
}

.v-card-copy h2 {
  max-width: 9ch;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .v-card-copy h2 {
    font-size: 1rem;
  }
}

.about-photo {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  background: #0c0e0b;
}

@media (min-width: 1024px) {
  .about-photo {
    min-height: 100%;
    height: 100%;
  }
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
}

.about-visual {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  background: transparent;
}

@media (min-width: 1024px) {
  .about-visual {
    min-height: 100%;
    height: 100%;
  }
}

.about-vans-track {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: translateX(var(--lorry-shift, 0%));
  will-change: transform;
}

.about-vans,
.about-worker-wrap {
  opacity: 0;
}

.about-vans {
  position: absolute;
  left: 4%;
  bottom: 2%;
  width: 108%;
  max-height: 94%;
  object-fit: contain;
}

.about-worker-wrap {
  position: absolute;
  left: 4%;
  bottom: 1.25rem;
  z-index: 3;
  width: 54%;
  max-width: 320px;
}

@media (min-width: 1024px) {
  .about-worker-wrap {
    left: 2%;
    width: 48%;
    max-width: 360px;
  }
}

.about-worker {
  display: block;
  width: 100%;
  height: auto;
}

.about-visual.is-playing .about-vans {
  animation: slide-from-right 0.95s var(--ease-out) forwards;
}

.about-visual.is-playing .about-worker-wrap {
  animation: slide-from-left 0.95s var(--ease-out) forwards;
}

@keyframes slide-from-right {
  from { opacity: 0; transform: translateX(32%); }
  to { opacity: 1; transform: none; }
}

@keyframes slide-from-left {
  from { opacity: 0; transform: translateX(-32%); }
  to { opacity: 1; transform: none; }
}

@keyframes worker-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.reveal.kicker::before,
.reveal-left.kicker::before,
.reveal-right.kicker::before,
.hero-enter.kicker::before {
  transform: scaleX(0);
}

.reveal.kicker.is-in::before,
.reveal-left.kicker.is-in::before,
.reveal-right.kicker.is-in::before {
  transform: scaleX(1);
  transition: transform 0.55s var(--ease-out) 0.2s;
}

.hero-enter.kicker::before {
  animation: mark-draw 0.55s var(--ease-out) 0.35s forwards;
}

@keyframes mark-draw {
  to { transform: scaleX(1); }
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

[data-stagger] > .is-in,
[data-stagger] > *.is-in {
  transition-delay: var(--stagger, 0s);
}

.hero-enter {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-rise 0.95s var(--ease-out) forwards;
}

.hero-enter-delay-1 { animation-delay: 0.12s; }
.hero-enter-delay-2 { animation-delay: 0.24s; }
.hero-enter-delay-3 { animation-delay: 0.38s; }

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-zoom {
  transform: scale(1.12);
  animation: ken-burns 22s ease-out forwards;
}

@keyframes ken-burns {
  from { transform: scale(1.18) translateY(0); }
  to { transform: scale(1.04) translateY(-2%); }
}

.site-header {
  background: transparent;
  color: #fff;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(12, 14, 11, 0.9);
  backdrop-filter: blur(14px);
}

.site-header nav a {
  letter-spacing: 0.02em;
}

.rotator {
  display: grid;
  width: max-content;
  line-height: inherit;
}

.rotator span {
  grid-area: 1 / 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.rotator span.is-active {
  opacity: 1;
  transform: none;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-slow {
  animation: none;
}

.nav-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.nav-panel.is-open {
  max-height: 640px;
}

.faq-section {
  background: #f3f4ee;
}

.faq-visual {
  display: flex;
  justify-content: center;
}

.faq-visual img {
  display: block;
  width: min(100%, 26rem);
  height: auto;
  transform: scaleX(-1);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(12, 14, 11, 0.08);
  border-radius: 2px;
  background: #fff;
}

.faq-item > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #0c0e0b;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}

.faq-body p {
  padding: 0 1.15rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5f6558;
}

.faq-item.is-open {
  background: #fff;
  border-color: #0c0e0b;
}

.faq-item.is-open > button {
  color: #0c0e0b;
}

.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-body p {
  color: #5f6558;
}

.faq-icon {
  position: relative;
  flex: none;
  align-self: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 2px;
  background: #0c0e0b;
  color: #fff;
  transition: transform 0.3s var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 0.7rem;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 0.7rem;
}

.faq-item.is-open .faq-icon {
  background: #0c0e0b;
  color: #fff;
  transform: rotate(45deg);
}

.service-card,
.lift-card {
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.service-card:hover,
.lift-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(12, 14, 11, 0.16);
}

.service-card img,
.media-frame img,
.zoom-img {
  transition: transform 0.9s var(--ease-out);
}

.service-card:hover img,
.media-frame:hover img,
.zoom-img:hover {
  transform: scale(1.07);
}

.svc-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.25rem;
  }
}

.svc-wrap {
  filter: none;
}

.svc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #0c0e0b;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 10%, 88% 100%, 0 100%);
}

.svc-card img {
  height: 14rem;
  width: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.svc-wrap:hover .svc-card img {
  transform: scale(1.07);
}

.svc-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.6rem 18% 1.7rem 1.5rem;
}

.svc-body h3 {
  margin-top: 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.svc-body p {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.svc-body .btn {
  margin-top: 1.25rem;
}

.size-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .size-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.size-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 16rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  background: transparent;
  padding: 1.75rem 1.5rem;
  color: inherit;
  text-decoration: none;
}

.size-tile:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.size-tile span {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fd14f;
}

.size-tile .size-num {
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: 4.5rem;
  line-height: 0.85;
  color: #fff;
}

.size-tile .size-unit {
  margin-top: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.size-tile p {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

.quote-viewport {
  overflow: hidden;
  width: 100%;
}

.quote-track {
  display: flex;
  align-items: stretch;
  width: 100%;
  will-change: transform;
}

.quote-track > blockquote {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid rgba(12, 14, 11, 0.08);
  border-radius: 2px;
  background: #fff;
  padding: 1.75rem 1.6rem;
}

.quote-track > blockquote > p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.65;
  letter-spacing: -0.02em;
  color: #161814;
}

.quote-track footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.quote-track footer img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  object-fit: cover;
}

.quote-track footer p:first-child {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0c0e0b;
}

.quote-track footer p:last-child {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #5f6558;
}

.quote-controls {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}

.quote-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quote-dots button {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #76b947;
  opacity: 0.3;
  cursor: pointer;
  transition: width 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.quote-dots button.is-active {
  width: 1.35rem;
  opacity: 1;
}

.blog-slider {
  margin-top: 3rem;
}

.blog-viewport {
  overflow: hidden;
  width: 100%;
  container-type: inline-size;
}

.blog-track {
  display: flex;
  align-items: stretch;
  gap: 1.75rem;
  will-change: transform;
}

.blog-slide {
  display: flex;
  flex: 0 0 100cqi;
  min-width: 0;
}

.blog-slide .svc-wrap {
  display: flex;
  width: 100%;
  height: 100%;
  filter: none;
}

.blog-slide .svc-card {
  width: 100%;
  min-height: 24.5rem;
}

.blog-slide .svc-body {
  flex: 1;
}

.blog-slide .svc-body h3 {
  display: -webkit-box;
  min-height: 3.6em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-slide .svc-body .btn {
  margin-top: auto;
}

@media (min-width: 768px) {
  .blog-slide {
    flex-basis: calc((100cqi - 1.75rem) / 2);
  }
}

@media (min-width: 1024px) {
  .blog-slide {
    flex-basis: calc((100cqi - 3.5rem) / 3);
  }
}

:root {
  --steps-h: 10.25rem;
}

@media (min-width: 768px) {
  :root { --steps-h: 12.25rem; }
}

@media (min-width: 1100px) {
  :root { --steps-h: 13.25rem; }
}

.steps-section {
  position: relative;
  z-index: 20;
  background: transparent;
  margin-top: calc(var(--steps-h) * -0.48);
  margin-bottom: calc(var(--steps-h) * -0.32);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 60rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 768px) {
  .steps-grid { gap: 2rem; padding-inline: 1.5rem; }
}

@media (min-width: 1024px) {
  .steps-grid { max-width: 64rem; gap: 2.25rem; }
}

.hero-copy {
  padding-bottom: calc(var(--steps-h) * 0.48 + 3.5rem);
}

.hero-booker {
  display: grid;
  gap: 0.85rem;
  width: 100%;
  max-width: 44rem;
  margin-top: 2.25rem;
  padding: 1rem 1.1rem;
  border-radius: 2px;
  background: #f3f4ee;
  color: #0c0e0b;
}

@media (min-width: 768px) {
  .hero-booker {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: end;
    gap: 0;
    padding: 0.7rem 0.7rem 0.7rem 1.15rem;
  }
}

.hero-booker label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
  padding-right: 1rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5f6558;
}

@media (min-width: 768px) {
  .hero-booker label:not(:last-of-type) {
    border-right: 1px solid rgba(12, 14, 11, 0.1);
    margin-right: 1rem;
  }
}

.hero-booker select,
.hero-booker input {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0c0e0b;
  padding: 0.2rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color-scheme: light;
}

.hero-booker select:focus,
.hero-booker input:focus {
  outline: none;
}

.hero-booker select option {
  color: #0c0e0b;
}

.hero-booker .btn {
  width: 100%;
  min-height: 3rem;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .hero-booker .btn {
    width: auto;
    white-space: nowrap;
    padding-inline: 1.4rem;
  }
}

.trust-strip {
  border-block: 0;
  background: #dfe8d4;
  padding-block: 1.15rem;
}

.trust-strip p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0;
  margin: 0;
  padding-inline: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5f6558;
}

.trust-strip span {
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  margin-inline: 0.85rem;
  background: rgba(12, 14, 11, 0.18);
}

.product-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  color: #0c0e0b;
  text-decoration: none;
  border: 1px solid rgba(12, 14, 11, 0.08);
}

.product-card img {
  height: 15.5rem;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: filter 0.45s var(--ease-out);
}

.product-card:hover img,
.product-card:focus-visible img {
  filter: saturate(1);
}

.product-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem 1.4rem 1.6rem;
}

.product-card div > p:first-child {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #76b947;
}

.product-card h3 {
  margin: 0.7rem 0 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-card div > p:last-of-type {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5f6558;
}

.product-card span {
  margin-top: 1.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0c0e0b;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(12, 14, 11, 0.2);
}

.product-card:hover span {
  text-decoration-color: #76b947;
}

.hero-steps-title {
  position: relative;
  z-index: 30;
}

main > section.about-after-steps {
  padding-top: calc(var(--steps-h) * 0.5 + 5rem);
  padding-bottom: 5.5rem;
}

@media (min-width: 1024px) {
  main > section.about-after-steps {
    padding-top: calc(var(--steps-h) * 0.5 + 6rem);
    padding-bottom: 7.5rem;
  }
}

.v-card-wrap {
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.22));
}

.v-card {
  position: relative;
  isolation: isolate;
  height: var(--steps-h);
  width: 100%;
  color: #fff;
  cursor: pointer;
  clip-path: url(#vetrix-v);
}

.v-card-media,
.v-card-shade,
.v-card-panel {
  position: absolute;
  inset: 0;
}

.v-card-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25);
  transform: scale(1.04);
  transition: transform 0.7s var(--ease-out);
}

.v-card:hover .v-card-media,
.v-card:focus-visible .v-card-media {
  transform: scale(1.1);
}

.v-card-shade {
  background: linear-gradient(180deg, rgba(12, 14, 11, 0.25) 0%, rgba(12, 14, 11, 0.72) 100%);
}

.v-card-panel {
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  background: #f3f4ee;
  color: #161814;
  text-align: left;
  padding: 0.7rem 22% 0.7rem 0.75rem;
  transform: translateY(102%);
  transition: transform 0.55s var(--ease-out);
}

.v-card-panel .v-card-step {
  color: #76b947;
}

.v-card-panel h2 {
  margin: 0;
  max-width: 12ch;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0c0e0b;
}

.v-card-panel p {
  width: 100%;
  margin: 0;
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.35;
  color: #3d4338;
}

@media (min-width: 768px) {
  .v-card-panel {
    gap: 0.4rem;
    padding: 0.8rem 24% 0.8rem 0.95rem;
  }

  .v-card-panel h2 {
    font-size: 0.8rem;
  }

  .v-card-panel p {
    font-size: 0.72rem;
  }
}

.v-card:hover .v-card-panel,
.v-card:focus-visible .v-card-panel,
.v-card.is-open .v-card-panel {
  transform: translateY(0);
}

.v-card:focus-visible {
  outline: none;
}

.article-body {
  color: #5f6558;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body p + p {
  margin-top: 1.15rem;
}

.article-body h2 {
  margin: 2.25rem 0 0.85rem;
  color: #0c0e0b;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.article-body ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.article-body li {
  position: relative;
  margin-top: 0.55rem;
  padding-left: 1.15rem;
}

.article-body li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 0.4rem;
  height: 1px;
  background: #76b947;
}

.vx-form {
  border: 1px solid rgba(12, 14, 11, 0.08);
  background: #fff;
  padding: 2rem;
}

@media (min-width: 768px) {
  .vx-form {
    padding: 2.5rem;
  }
}

.vx-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5f6558;
}

.vx-form input,
.vx-form select,
.vx-form textarea {
  width: 100%;
  border: 1px solid rgba(12, 14, 11, 0.12);
  border-radius: 2px;
  background: #f3f4ee;
  color: #0c0e0b;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.vx-form textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.vx-form input:focus,
.vx-form select:focus,
.vx-form textarea:focus {
  border-color: #76b947;
  outline-offset: 2px;
}

.vx-form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.vx-form-status.is-error {
  background: #f8ecec;
  color: #7a1f1f;
}

.vx-form-status.is-ok {
  background: #eef6e6;
  color: #1d3a12;
}

.vx-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cta-band {
  background:
    linear-gradient(180deg, rgba(12, 14, 11, 0.2), rgba(12, 14, 11, 0.55)),
    #161814;
}

.cta-band.grain::after {
  opacity: 0.22;
}

.btn,
.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  overflow: hidden;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0.85rem 1.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    color 0.2s var(--ease-out);
}

.btn {
  background: #76b947;
  color: #0c0e0b;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.btn:hover {
  background: #689f3d;
  color: #0c0e0b;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
}

.btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

.btn-shine {
  /* alias kept for older markup */
}

.site-footer {
  background: #0c0e0b;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer a {
  transition: color 0.2s var(--ease-out);
}

.site-footer a:hover {
  color: #8fd14f;
}

.cta-close {
  isolation: isolate;
}

.cta-close::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset-inline: 0;
  bottom: 0;
  height: 5.5rem;
  background: linear-gradient(180deg, transparent, #0c0e0b);
  pointer-events: none;
}

.cta-close > .relative {
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 80;
  background: #76b947;
  color: #0c0e0b;
  padding: 0.6rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid #76b947;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { animation: none; opacity: 1; }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-down,
  .reveal-zoom,
  .reveal-flip,
  .rotator span,
  .service-card,
  .svc-wrap,
  .lift-card,
  .service-card img,
  .svc-card img,
  .media-frame img,
  .nav-panel,
  .faq-body,
  .hero-enter {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .float-slow,
  .hero-zoom { animation: none; }
  .site-header.is-hidden { transform: none; }
  .v-card-panel,
  .v-card-media,
  .btn,
  .btn-ghost { transition: none !important; transform: none !important; }
  .kicker::before {
    transform: scaleX(1) !important;
    animation: none !important;
  }
  .about-vans,
  .about-worker-wrap {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  .about-vans-track { transform: none; }
  .about-worker { animation: none !important; }
  .quote-track,
  .blog-track { transition: none !important; }
}
