/* ============ SERVICE HERO ============ */
.service-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.service-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.service-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.service-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--side-padding) clamp(64px, 10vh, 120px);
  width: 100%;
}
.service-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6.5vw, 96px);
  text-transform: uppercase;
  line-height: var(--leading-tight);
  color: var(--white);
  max-width: 1200px;
}

.service-hero__media--mobile {
  display: none;
}

@media (max-width: 700px) {
  .service-hero__media--video {
    display: none;
  }
  .service-hero__media--mobile {
    display: block;
  }
}

/* ============ FULL-BLEED VIDEO (with mobile still fallback) ============ */
.full-bleed__bg--mobile {
  display: none;
}

@media (max-width: 700px) {
  .full-bleed__bg--video {
    display: none;
  }
  .full-bleed__bg--mobile {
    display: block;
  }
}

/* ============ ABOUT THE SERVICE ============ */
.service-about {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}


/* ============ TEXT MARQUEE ============ */
.text-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}
.text-marquee__track {
  display: flex;
  gap: clamp(48px, 6vw, 96px);
  width: max-content;
  animation: text-marquee-scroll 28s linear infinite;
  align-items: center;
}
.text-marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  text-transform: uppercase;
  color: var(--light);
  white-space: nowrap;
}
@keyframes text-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
