/* Services page — inspired by trionn.com/services + vividmotion.co/services.
   Dark hero -> light sequential service rows (sticky number + title left,
   tagline/description/capabilities right) -> dark tools marquee -> CTA.
   Used with about.css tokens. */

/* ---- hero (dark, video cover with the site's green hue technique) ---- */
.sv-hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20vh 6vw 7vh;
  overflow: hidden;
  background: #020403;
}
.sv-hero-video { position: absolute; inset: 0; isolation: isolate; }
.sv-hero-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.sv-hero-hue { position: absolute; inset: 0; background: #35E07F; mix-blend-mode: hue; }
.sv-hero-dim { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); }
.sv-hero-video::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 30%;
  background: linear-gradient(rgba(2, 4, 3, 0.92), rgba(2, 4, 3, 0));
}
.sv-hero-video::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(rgba(2, 4, 3, 0), #050505 96%);
}
.sv-hero > *:not(.sv-hero-video) { position: relative; z-index: 2; }
/* the blanket rule above would force the wipe cover to position:relative
   (collapsing it to 0 height in flow) — restore absolute + lift it above */
.sv-hero .aw-cover { position: absolute; inset: 0; z-index: 6; }
.sv-title {
  font-size: clamp(52px, 8.8vw, 148px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-top: 2vh;
}
.sv-title em { font-style: normal; color: var(--af-green); }
.sv-title .px-ln { display: block; overflow: hidden; padding-bottom: 0.16em; margin-bottom: -0.16em; }
.sv-title .px-ch { display: inline-block; }
.sv-sub {
  margin-top: 3vh;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--af-soft-l);
  max-width: 52ch;
}
.sv-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 5vh;
  padding-top: 2.6vh;
  border-top: 1px solid var(--af-line-l);
  font-family: var(--af-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--af-soft-l);
}
.sv-meta b { color: var(--af-green); font-weight: 400; }

/* ---- service rows (light) ---- */


.sv-tag {
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ---- end cta ---- */

@media (max-width: 900px) {
  .sv-hero { padding: 16vh 7vw 6vh; }
    }
