.services-page {
  padding-top: 80px;
  background: var(--c-bg);
  color: var(--c-dark);
  position: relative;
  z-index: 5;
}

.services-hero {
  padding: 3.5rem 1.5rem 2rem;
}

.services-heading {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.services-stack {
  display: flex;
  flex-direction: column;
}

.service-panel {
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-panel:first-child {
  border-top: none;
}

.service-panel:nth-child(2) {
  background: #ffffff;
}

.service-panel:nth-child(3) {
  background: #f7f7f9;
}

.service-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 640px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.service-copy {
  max-width: 760px;
}

.service-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.service-title {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.95;
  margin-top: 1rem;
}

.service-desc {
  margin-top: 1.5rem;
  max-width: 640px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f1f1f3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.service-image img.image-shift-up {
  object-position: 50% 65%;
}

<<<<<<< ours
.team-onsite {
  padding: 4.5rem 1.5rem 5rem;
  background: var(--c-bg);
  display: grid;
  gap: 1.75rem;
}

.team-onsite-header {
  display: grid;
  gap: 0.5rem;
  max-width: 720px;
}

.team-onsite-pill {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.team-carousel {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-bg);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.team-carousel:active {
  cursor: grabbing;
}

.team-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
}

.team-carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

=======
>>>>>>> theirs
.site-nav a.is-active {
  opacity: 1;
  position: relative;
}

.site-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.mobile-menu-link.is-active {
  opacity: 1;
}

@media (max-width: 1024px) {
  .services-page {
    padding-top: 70px;
  }

  .service-inner {
    grid-template-columns: 3fr 2fr;
  }

  .service-image {
    aspect-ratio: 9 / 16;
  }
}

@media (min-width: 768px) {
  .services-hero {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .service-panel {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (max-width: 640px) {
  .services-hero {
    padding: 3rem 6vw 1.5rem;
  }

  .service-panel {
    padding: 3.5rem 6vw;
  }

  .service-inner {
    grid-template-columns: 1fr;
  }

  .service-image {
    aspect-ratio: 16 / 9;
    max-width: none;
    margin: 2rem 0 0;
  }
}
